Showing
4 changed files
with
6 additions
and
5 deletions
... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' | ... | @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' |
2 | 2 | ||
3 | ext { | 3 | ext { |
4 | PUBLISH_GROUP_ID = 'ly.warp' | 4 | PUBLISH_GROUP_ID = 'ly.warp' |
5 | - PUBLISH_VERSION = '4.5.4-cosbeta100' | 5 | + PUBLISH_VERSION = '4.5.4.6rc1' |
6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 6 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
7 | } | 7 | } |
8 | 8 | ... | ... |
... | @@ -268,6 +268,7 @@ public class ShopsActivity extends FragmentActivity implements View.OnClickListe | ... | @@ -268,6 +268,7 @@ public class ShopsActivity extends FragmentActivity implements View.OnClickListe |
268 | mAlertDialogNoShopsAvailable = new AlertDialog.Builder(this) | 268 | mAlertDialogNoShopsAvailable = new AlertDialog.Builder(this) |
269 | .setTitle(R.string.cos_dlg_no_shops_title) | 269 | .setTitle(R.string.cos_dlg_no_shops_title) |
270 | .setMessage(R.string.cos_dlg_no_shops) | 270 | .setMessage(R.string.cos_dlg_no_shops) |
271 | + .setCancelable(false) | ||
271 | .setPositiveButton(R.string.cos_dlg_no_shops_positive, (dialogPositive, whichPositive) -> { | 272 | .setPositiveButton(R.string.cos_dlg_no_shops_positive, (dialogPositive, whichPositive) -> { |
272 | dialogPositive.dismiss(); | 273 | dialogPositive.dismiss(); |
273 | openWebsite(); | 274 | openWebsite(); | ... | ... |
... | @@ -1240,7 +1240,7 @@ public class WarplyManagerHelper { | ... | @@ -1240,7 +1240,7 @@ public class WarplyManagerHelper { |
1240 | mDealsSum = sum; | 1240 | mDealsSum = sum; |
1241 | } | 1241 | } |
1242 | 1242 | ||
1243 | - public static boolean checkForLoyaltySDKNotification(Map<String, String> pushPayload) { | 1243 | + public static boolean checkForLoyaltySDKNotification(Context context, Map<String, String> pushPayload) { |
1244 | Bundle data = convertToBundle(pushPayload); | 1244 | Bundle data = convertToBundle(pushPayload); |
1245 | if (data == null || !data.containsKey("loyalty-action")) | 1245 | if (data == null || !data.containsKey("loyalty-action")) |
1246 | return false; | 1246 | return false; |
... | @@ -1248,9 +1248,9 @@ public class WarplyManagerHelper { | ... | @@ -1248,9 +1248,9 @@ public class WarplyManagerHelper { |
1248 | 1248 | ||
1249 | WarpUtils.log("Received push with action: " + pc.getAction()); | 1249 | WarpUtils.log("Received push with action: " + pc.getAction()); |
1250 | if (pc.getAction() == 0 && !pc.hasActions()) | 1250 | if (pc.getAction() == 0 && !pc.hasActions()) |
1251 | - FCMBaseMessagingService.showCampaignNotification(Warply.getWarplyContext(), pc); | 1251 | + FCMBaseMessagingService.showCampaignNotification(context, pc); |
1252 | else | 1252 | else |
1253 | - showDefaultNotification(Warply.getWarplyContext(), data); | 1253 | + showDefaultNotification(context, data); |
1254 | 1254 | ||
1255 | return true; | 1255 | return true; |
1256 | } | 1256 | } | ... | ... |
... | @@ -143,7 +143,7 @@ | ... | @@ -143,7 +143,7 @@ |
143 | <string name="cos_comma">,</string> | 143 | <string name="cos_comma">,</string> |
144 | <string name="cos_dlg_non_telco_title">Αδυναμία ενεργοποίησης</string> | 144 | <string name="cos_dlg_non_telco_title">Αδυναμία ενεργοποίησης</string> |
145 | <string name="cos_share_no_assets">Για την αποστολή του δώρου σου χρειάζεται να έχεις κινητό COSMOTE.</string> | 145 | <string name="cos_share_no_assets">Για την αποστολή του δώρου σου χρειάζεται να έχεις κινητό COSMOTE.</string> |
146 | - <string name="cos_dlg_coupon_depleted_title">H προσφορά δεν είναι πλέον διαθέσιμη</string> | 146 | + <string name="cos_dlg_coupon_depleted_title">Το κουπόνι εξαντλήθηκε</string> |
147 | <string name="cos_dlg_coupon_depleted_message">Μείνε συντονισμένος για νέες προσφορές και κουπόνια.</string> | 147 | <string name="cos_dlg_coupon_depleted_message">Μείνε συντονισμένος για νέες προσφορές και κουπόνια.</string> |
148 | <string name="cos_dlg_no_shops">Ο συνεργάτης διαθέτει μόνο ηλεκτρονικό κατάστημα για ηλεκτρονικές παραγγελίες.</string> | 148 | <string name="cos_dlg_no_shops">Ο συνεργάτης διαθέτει μόνο ηλεκτρονικό κατάστημα για ηλεκτρονικές παραγγελίες.</string> |
149 | <string name="cos_dlg_no_shops_title">Καταστήματα συνεργάτη</string> | 149 | <string name="cos_dlg_no_shops_title">Καταστήματα συνεργάτη</string> | ... | ... |
-
Please register or login to post a comment