Showing
2 changed files
with
17 additions
and
17 deletions
... | @@ -175,22 +175,22 @@ | ... | @@ -175,22 +175,22 @@ |
175 | android:exported="false" /> | 175 | android:exported="false" /> |
176 | 176 | ||
177 | <!-- FCM Service for push notifications --> | 177 | <!-- FCM Service for push notifications --> |
178 | - <service | 178 | +<!-- <service--> |
179 | - android:name="ly.warp.sdk.services.FCMBaseMessagingService" | 179 | +<!-- android:name="ly.warp.sdk.services.FCMBaseMessagingService"--> |
180 | - android:exported="false"> | 180 | +<!-- android:exported="false">--> |
181 | - <intent-filter> | 181 | +<!-- <intent-filter>--> |
182 | - <action android:name="com.google.firebase.MESSAGING_EVENT" /> | 182 | +<!-- <action android:name="com.google.firebase.MESSAGING_EVENT" />--> |
183 | - </intent-filter> | 183 | +<!-- </intent-filter>--> |
184 | - </service> | 184 | +<!-- </service>--> |
185 | 185 | ||
186 | <!-- Service used for handling Huawei Push Notifications, comment if we are in Google build --> | 186 | <!-- Service used for handling Huawei Push Notifications, comment if we are in Google build --> |
187 | - <service | 187 | +<!-- <service--> |
188 | - android:name="ly.warp.sdk.services.HMSBaseMessagingService" | 188 | +<!-- android:name="ly.warp.sdk.services.HMSBaseMessagingService"--> |
189 | - android:exported="false"> | 189 | +<!-- android:exported="false">--> |
190 | - <intent-filter> | 190 | +<!-- <intent-filter>--> |
191 | - <action android:name="com.huawei.push.action.MESSAGING_EVENT" /> | 191 | +<!-- <action android:name="com.huawei.push.action.MESSAGING_EVENT" />--> |
192 | - </intent-filter> | 192 | +<!-- </intent-filter>--> |
193 | - </service> | 193 | +<!-- </service>--> |
194 | 194 | ||
195 | <receiver | 195 | <receiver |
196 | android:name="ly.warp.sdk.receivers.LocationChangedReceiver" | 196 | android:name="ly.warp.sdk.receivers.LocationChangedReceiver" | ... | ... |
... | @@ -1490,10 +1490,10 @@ public enum Warply { | ... | @@ -1490,10 +1490,10 @@ public enum Warply { |
1490 | registerWarply(); | 1490 | registerWarply(); |
1491 | return; | 1491 | return; |
1492 | } | 1492 | } |
1493 | - if (WarpUtils.getIsAPPDATAENABLED(mContext.get())) | ||
1494 | - postApplicationData(true); | ||
1495 | if (WarpUtils.getIsDEVICEINFOENABLED(mContext.get())) | 1493 | if (WarpUtils.getIsDEVICEINFOENABLED(mContext.get())) |
1496 | postDeviceInfoData(); | 1494 | postDeviceInfoData(); |
1495 | + if (WarpUtils.getIsAPPDATAENABLED(mContext.get())) | ||
1496 | + postApplicationData(true); | ||
1497 | tryWakingSendingTaskInternal(WarplyDBHelper.getInstance(mContext.get()) | 1497 | tryWakingSendingTaskInternal(WarplyDBHelper.getInstance(mContext.get()) |
1498 | .getRequestsInQueueCount()); | 1498 | .getRequestsInQueueCount()); |
1499 | } | 1499 | } |
... | @@ -2103,8 +2103,8 @@ public enum Warply { | ... | @@ -2103,8 +2103,8 @@ public enum Warply { |
2103 | WarpUtils.log("******************************************************"); | 2103 | WarpUtils.log("******************************************************"); |
2104 | if (mRegistrationListener != null) | 2104 | if (mRegistrationListener != null) |
2105 | mRegistrationListener.onSuccess(ServiceRegistrationCallback.REGISTERED_WARPLY); | 2105 | mRegistrationListener.onSuccess(ServiceRegistrationCallback.REGISTERED_WARPLY); |
2106 | - postApplicationData(true); | ||
2107 | postDeviceInfoData(); | 2106 | postDeviceInfoData(); |
2107 | + postApplicationData(true); | ||
2108 | } | 2108 | } |
2109 | releaseRegisterLock(); | 2109 | releaseRegisterLock(); |
2110 | } | 2110 | } | ... | ... |
-
Please register or login to post a comment