Panagiotis Triantafyllou

minor additions

...@@ -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-cosbeta4' 5 + PUBLISH_VERSION = '4.5.4-cosbeta5'
6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
7 } 7 }
8 8
......
...@@ -76,6 +76,26 @@ public class WarplyManagerHelper { ...@@ -76,6 +76,26 @@ public class WarplyManagerHelper {
76 // return mergedList; 76 // return mergedList;
77 // } 77 // }
78 78
79 + public static String getUserTag() {
80 + return "traveller"; //TODO: change in production with actual code
81 + }
82 +
83 + public static void setDFYCouponPurchase(String couponcode, String merchantid) {
84 +
85 + }
86 +
87 + public static void setActiveDFYCoupons(ArrayList<String> codes) {
88 +
89 + }
90 +
91 + public static ArrayList<String> getActiveDFYCoupons() {
92 + return new ArrayList<>();
93 + }
94 +
95 + public static void setCCMSLoyaltyCampaigns(ArrayList<LoyaltyContextualOfferModel> list) {
96 +
97 + }
98 +
79 public static Consumer getConsumer() { 99 public static Consumer getConsumer() {
80 return mConsumer; 100 return mConsumer;
81 } 101 }
......