... | @@ -25,9 +25,6 @@ | ... | @@ -25,9 +25,6 @@ |
25 | android:roundIcon="@mipmap/ic_launcher_round" | 25 | android:roundIcon="@mipmap/ic_launcher_round" |
26 | android:requestLegacyExternalStorage="true" | 26 | android:requestLegacyExternalStorage="true" |
27 | android:theme="@style/AppTheme"> | 27 | android:theme="@style/AppTheme"> |
28 | - <meta-data | ||
29 | - android:name="com.google.android.geo.API_KEY" | ||
30 | - android:value="@string/google_maps_key" /> | ||
31 | 28 | ||
32 | <activity | 29 | <activity |
33 | android:name="warp.ly.android_sdk.activities.SplashActivity" | 30 | android:name="warp.ly.android_sdk.activities.SplashActivity" | ... | ... |
... | @@ -52,20 +52,15 @@ dependencies { | ... | @@ -52,20 +52,15 @@ dependencies { |
52 | //------------------------------ Support -----------------------------// | 52 | //------------------------------ Support -----------------------------// |
53 | implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' | 53 | implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' |
54 | implementation 'androidx.appcompat:appcompat:1.4.1' | 54 | implementation 'androidx.appcompat:appcompat:1.4.1' |
55 | - implementation 'androidx.recyclerview:recyclerview:1.2.1' | ||
56 | implementation 'androidx.cardview:cardview:1.0.0' | 55 | implementation 'androidx.cardview:cardview:1.0.0' |
57 | api "androidx.security:security-crypto:1.1.0-alpha03" | 56 | api "androidx.security:security-crypto:1.1.0-alpha03" |
58 | // For minSDK 23 use 1.0.0, for minSDK 21 use 1.1.0 that is currently in alpha | 57 | // For minSDK 23 use 1.0.0, for minSDK 21 use 1.1.0 that is currently in alpha |
59 | api 'org.altbeacon:android-beacon-library:2.19.3' | 58 | api 'org.altbeacon:android-beacon-library:2.19.3' |
60 | - api 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2' | ||
61 | - implementation 'de.hdodenhof:circleimageview:3.1.0' | ||
62 | api group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.21' | 59 | api group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.21' |
63 | implementation 'com.google.android.material:material:1.5.0' | 60 | implementation 'com.google.android.material:material:1.5.0' |
64 | api group: 'com.google.zxing', name: 'core', version: '3.4.1' | 61 | api group: 'com.google.zxing', name: 'core', version: '3.4.1' |
65 | api group: 'com.google.zxing', name: 'javase', version: '3.4.1' | 62 | api group: 'com.google.zxing', name: 'javase', version: '3.4.1' |
66 | - api 'com.github.siyamed:android-shape-imageview:0.9.3' | ||
67 | implementation 'org.greenrobot:eventbus:3.3.1' | 63 | implementation 'org.greenrobot:eventbus:3.3.1' |
68 | - api 'org.apmem.tools:layouts:1.10' | ||
69 | api 'com.google.guava:guava:30.1-android' | 64 | api 'com.google.guava:guava:30.1-android' |
70 | 65 | ||
71 | //------------------------------ Firebase -----------------------------// | 66 | //------------------------------ Firebase -----------------------------// |
... | @@ -78,7 +73,6 @@ dependencies { | ... | @@ -78,7 +73,6 @@ dependencies { |
78 | api 'com.google.android.gms:play-services-base:18.1.0' | 73 | api 'com.google.android.gms:play-services-base:18.1.0' |
79 | implementation 'com.google.android.gms:play-services-location:19.0.1' | 74 | implementation 'com.google.android.gms:play-services-location:19.0.1' |
80 | implementation 'com.google.android.gms:play-services-maps:18.0.2' | 75 | implementation 'com.google.android.gms:play-services-maps:18.0.2' |
81 | - api 'com.google.maps.android:android-maps-utils:0.5' | ||
82 | 76 | ||
83 | //------------------------------ Work Manager -----------------------------// | 77 | //------------------------------ Work Manager -----------------------------// |
84 | api 'androidx.work:work-runtime:2.7.1' | 78 | api 'androidx.work:work-runtime:2.7.1' | ... | ... |
... | @@ -23,8 +23,6 @@ import ly.warp.sdk.R; | ... | @@ -23,8 +23,6 @@ import ly.warp.sdk.R; |
23 | import ly.warp.sdk.db.WarplyDBHelper; | 23 | import ly.warp.sdk.db.WarplyDBHelper; |
24 | import ly.warp.sdk.io.callbacks.CallbackReceiver; | 24 | import ly.warp.sdk.io.callbacks.CallbackReceiver; |
25 | import ly.warp.sdk.io.models.Campaign; | 25 | import ly.warp.sdk.io.models.Campaign; |
26 | -import ly.warp.sdk.utils.WarpJSONParser; | ||
27 | -import ly.warp.sdk.utils.WarplyManagerHelper; | ||
28 | import ly.warp.sdk.utils.managers.WarplyManager; | 26 | import ly.warp.sdk.utils.managers.WarplyManager; |
29 | 27 | ||
30 | public class HomeFragment extends Fragment implements View.OnClickListener, SwipeRefreshLayout.OnRefreshListener { | 28 | public class HomeFragment extends Fragment implements View.OnClickListener, SwipeRefreshLayout.OnRefreshListener { | ... | ... |
... | @@ -29,7 +29,6 @@ import android.os.Parcel; | ... | @@ -29,7 +29,6 @@ import android.os.Parcel; |
29 | import android.os.Parcelable; | 29 | import android.os.Parcelable; |
30 | 30 | ||
31 | import com.google.android.gms.maps.model.LatLng; | 31 | import com.google.android.gms.maps.model.LatLng; |
32 | -import com.google.maps.android.clustering.ClusterItem; | ||
33 | 32 | ||
34 | import org.json.JSONArray; | 33 | import org.json.JSONArray; |
35 | import org.json.JSONException; | 34 | import org.json.JSONException; |
... | @@ -45,7 +44,7 @@ import ly.warp.sdk.utils.constants.WarpConstants; | ... | @@ -45,7 +44,7 @@ import ly.warp.sdk.utils.constants.WarpConstants; |
45 | * Created by Panagiotis Triantafyllou on 07-Dec-21. | 44 | * Created by Panagiotis Triantafyllou on 07-Dec-21. |
46 | */ | 45 | */ |
47 | 46 | ||
48 | -public class Merchant implements Parcelable, Serializable, ClusterItem { | 47 | +public class Merchant implements Parcelable, Serializable { |
49 | 48 | ||
50 | private static final long serialVersionUID = -4754964462459705285L; | 49 | private static final long serialVersionUID = -4754964462459705285L; |
51 | 50 | ||
... | @@ -820,19 +819,4 @@ public class Merchant implements Parcelable, Serializable, ClusterItem { | ... | @@ -820,19 +819,4 @@ public class Merchant implements Parcelable, Serializable, ClusterItem { |
820 | 819 | ||
821 | return listData; | 820 | return listData; |
822 | } | 821 | } |
823 | - | ||
824 | - @Override | ||
825 | - public LatLng getPosition() { | ||
826 | - return coordinates; | ||
827 | - } | ||
828 | - | ||
829 | - @Override | ||
830 | - public String getTitle() { | ||
831 | - return null; | ||
832 | - } | ||
833 | - | ||
834 | - @Override | ||
835 | - public String getSnippet() { | ||
836 | - return null; | ||
837 | - } | ||
838 | } | 822 | } | ... | ... |

4.49 KB

284 KB

99.3 KB

8.73 KB

3.78 KB

33.6 KB

554 Bytes

16.3 KB

3.82 KB

1.93 KB

3.97 KB

19.4 KB

6.31 KB

353 Bytes

267 Bytes

1.29 KB

384 Bytes

16.7 KB

1.02 KB

1.89 KB

950 Bytes

53.7 KB

4.32 KB

1.36 KB

14.6 KB

15.1 KB

1.18 KB

1.73 KB

643 Bytes

486 Bytes

13.6 KB

18.9 KB

3.4 KB

2.58 KB

3.83 KB

5 KB

5.56 KB

24.1 KB

38.7 KB

32.4 KB

5.72 KB

1.88 KB

5.38 KB

15.3 KB

4.75 KB

789 Bytes

558 Bytes

772 Bytes

3.44 KB

6.67 KB

1.28 KB

26.8 KB

635 Bytes

5.11 KB

17.7 KB

3.73 KB

25.2 KB

15.1 KB

770 Bytes

7.34 KB

4.32 KB

1.78 KB

1.81 KB

6.11 KB

6.88 KB

1.28 KB

443 Bytes

8.04 KB

20.9 KB

5.84 KB

53.6 KB

3.51 KB

6.61 KB

6.71 KB

27.6 KB

1.18 KB

3.65 KB

997 Bytes

757 Bytes

657 Bytes

1.58 KB

386 Bytes

2.26 KB

791 Bytes

5.54 KB

3.34 KB

488 Bytes

21.6 KB

4.33 KB

3.98 KB

2.09 KB

2.17 KB

979 Bytes

3.51 KB

869 Bytes

744 Bytes

627 Bytes

533 Bytes

4.01 KB

2.36 KB

122 KB

4.29 KB

3.47 KB

3.49 KB

9.84 KB

5.24 KB

171 KB

9.26 KB

4.25 KB

1.66 KB

5.67 KB
-
Please register or login to post a comment