Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2022-09-23 14:33:01 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0184697c64ee5980ff8f1b2f9e959b48d3a4736b
0184697c
1 parent
dec97373
minor changes
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
warply_android_sdk/src/main/AndroidManifest.xml
warply_android_sdk/src/main/java/ly/warp/sdk/Warply.java
warply_android_sdk/src/main/AndroidManifest.xml
View file @
0184697
...
...
@@ -175,22 +175,22 @@
android:exported=
"false"
/>
<!-- FCM Service for push notifications -->
<service
android:name=
"ly.warp.sdk.services.FCMBaseMessagingService"
android:exported=
"false"
>
<intent-filter
>
<action
android:name=
"com.google.firebase.MESSAGING_EVENT"
/
>
</intent-filter
>
</service
>
<!-- <service-->
<!-- android:name="ly.warp.sdk.services.FCMBaseMessagingService"-->
<!-- android:exported="false">--
>
<!-- <intent-filter>--
>
<!-- <action android:name="com.google.firebase.MESSAGING_EVENT" />--
>
<!-- </intent-filter>--
>
<!-- </service>--
>
<!-- Service used for handling Huawei Push Notifications, comment if we are in Google build -->
<service
android:name=
"ly.warp.sdk.services.HMSBaseMessagingService"
android:exported=
"false"
>
<intent-filter
>
<action
android:name=
"com.huawei.push.action.MESSAGING_EVENT"
/
>
</intent-filter
>
</service
>
<!-- <service-->
<!-- android:name="ly.warp.sdk.services.HMSBaseMessagingService"-->
<!-- android:exported="false">--
>
<!-- <intent-filter>--
>
<!-- <action android:name="com.huawei.push.action.MESSAGING_EVENT" />--
>
<!-- </intent-filter>--
>
<!-- </service>--
>
<receiver
android:name=
"ly.warp.sdk.receivers.LocationChangedReceiver"
...
...
warply_android_sdk/src/main/java/ly/warp/sdk/Warply.java
View file @
0184697
...
...
@@ -1490,10 +1490,10 @@ public enum Warply {
registerWarply
();
return
;
}
if
(
WarpUtils
.
getIsAPPDATAENABLED
(
mContext
.
get
()))
postApplicationData
(
true
);
if
(
WarpUtils
.
getIsDEVICEINFOENABLED
(
mContext
.
get
()))
postDeviceInfoData
();
if
(
WarpUtils
.
getIsAPPDATAENABLED
(
mContext
.
get
()))
postApplicationData
(
true
);
tryWakingSendingTaskInternal
(
WarplyDBHelper
.
getInstance
(
mContext
.
get
())
.
getRequestsInQueueCount
());
}
...
...
@@ -2103,8 +2103,8 @@ public enum Warply {
WarpUtils
.
log
(
"******************************************************"
);
if
(
mRegistrationListener
!=
null
)
mRegistrationListener
.
onSuccess
(
ServiceRegistrationCallback
.
REGISTERED_WARPLY
);
postApplicationData
(
true
);
postDeviceInfoData
();
postApplicationData
(
true
);
}
releaseRegisterLock
();
}
...
...
Please
register
or
login
to post a comment