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
2025-05-27 14:39:50 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
676f4edf7c66eec670788e857157f413aa7b7ef7
676f4edf
1 parent
e5e0510f
deh part6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
5 deletions
app/build.gradle
app/google-services.json
app/src/main/assets/warply.properties
build.gradle
warply_android_sdk/src/main/AndroidManifest.xml
app/build.gradle
View file @
676f4ed
apply
plugin:
'com.android.application'
//
apply plugin: 'com.google.gms.google-services'
apply
plugin:
'com.google.gms.google-services'
apply
plugin:
'com.huawei.agconnect'
android
{
...
...
app/google-services.json
0 → 100644
View file @
676f4ed
{
"project_info"
:
{
"project_number"
:
"674046222598"
,
"project_id"
:
"warply-sdk"
,
"storage_bucket"
:
"warply-sdk.firebasestorage.app"
},
"client"
:
[
{
"client_info"
:
{
"mobilesdk_app_id"
:
"1:674046222598:android:3a7e0c274fc46ec10cbe87"
,
"android_client_info"
:
{
"package_name"
:
"warp.ly.android_sdk"
}
},
"oauth_client"
:
[],
"api_key"
:
[
{
"current_key"
:
"AIzaSyA1dTyKyZF3ic_i0PMtk_hdYs_NaGzx4V8"
}
],
"services"
:
{
"appinvite_service"
:
{
"other_platform_oauth_client"
:
[]
}
}
}
],
"configuration_version"
:
"1"
}
\ No newline at end of file
app/src/main/assets/warply.properties
View file @
676f4ed
# {@link ly.warp.sdk.utils.WarplyProperty}
# The app uuid the warply sdk need to connect to the engage server
# dev
f83dfde1145e4c2da69793abb2f579af
# prod
0086a2088301440792091b9f814c2267
Uuid
=
f83dfde1145e4c2da69793abb2f579af
# dev
b13ade8ef743468b89a7aaa8efbfc468
# prod
b13ade8ef743468b89a7aaa8efbfc468
Uuid
=
b13ade8ef743468b89a7aaa8efbfc468
# If we need to see logs in Logcat
Debug
=
true
...
...
build.gradle
View file @
676f4ed
...
...
@@ -9,7 +9,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:8.8.0'
classpath
'com.google.gms:google-services:4.
3.10
'
classpath
'com.google.gms:google-services:4.
4.2
'
classpath
'com.huawei.agconnect:agcp:1.9.1.300'
classpath
'io.github.gradle-nexus:publish-plugin:1.1.0'
...
...
warply_android_sdk/src/main/AndroidManifest.xml
View file @
676f4ed
...
...
@@ -62,6 +62,48 @@
android:exported=
"true"
android:screenOrientation=
"portrait"
/>
<!-- Service used for updating user's location. -->
<service
android:name=
"ly.warp.sdk.services.UpdateUserLocationService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
/>
<service
android:name=
"ly.warp.sdk.services.EventRefreshDeviceTokenService"
android:exported=
"false"
android:permission=
"android.permission.BIND_JOB_SERVICE"
/>
<service
android:name=
"ly.warp.sdk.services.WarplyBeaconsRangingService"
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 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>
<receiver
android:name=
"ly.warp.sdk.receivers.ConnectivityChangedReceiver"
android:exported=
"false"
>
<intent-filter>
<action
android:name=
"android.net.conn.CONNECTIVITY_CHANGE"
/>
<category
android:name=
"${applicationId}"
/>
</intent-filter>
</receiver>
<receiver
android:name=
".receivers.LocationChangedReceiver"
android:exported=
"false"
/>
...
...
Please
register
or
login
to post a comment