Import the Android SDK
Add the Xtremepush SDK to your Android project
- In your app's
build.gradlefile, add the Xtremepush Maven repository:
Android Studio Bumblebee
In Android Studio Bumblebee, the build configuration files are slightly different than as described below. Specifically, the repository settings have been moved from the top-level
build.gradlefile to thesettings.gradlefile. For more information, see the release note Repository settings insettings.gradle.
repositories {
maven {
url 'https://maven.xtremepush.com/artifactory/libs-release-local/'
}
}
maven {
url = uri("https://maven.xtremepush.com/artifactory/libs-release-local/")
}
- Add the XtremePush library to the dependencies section:
Shared Preferences
Starting in Version 9.6.0, encrypted shared preferences is off by default as the library it depended on is no longer supported by google and could potentially cause issues for clients.
implementation 'ie.imobile.extremepush:XtremePush_lib:9.6.0'
implementation("ie.imobile.extremepush:XtremePush_lib:9.3.7")
- If you are using version 8.0 or later of the Xtremepush SDK, please include the latest version of AndroidX.
Otherwise, if you are using an older version of the SDK, add the latest version of Android Support:
implementation 'com.android.support:support-v4:28.0.0'
implementation("com.android.support:support-v4:28.0.0")
Dependency versions
This example and others below show specific version numbers. You may need to update these version numbers as new updates of these dependencies are released.
- Also add the following google dependencies if not already included:
implementation 'com.google.firebase:firebase-messaging:25.0.0'
// if using location
implementation 'com.google.android.gms:play-services-location:21.3.0'
implementation("com.google.firebase:firebase-messaging:23.1.2")
// if using location
implementation("com.google.android.gms:play-services-location:20.0.0")
- Add the following dependencies:
implementation 'com.squareup.okhttp3:okhttp:5.1.0'
implementation 'com.squareup:otto:1.3.8'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'androidx.security:security-crypto:1.0.0'
implementation 'androidx.work:work-runtime:2.10.3'
// If not using beacon the dependency below can be omitted
implementation 'org.altbeacon:android-beacon-library:2.19.2'
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("com.squareup:otto:1.3.8")
implementation("com.google.code.gson:gson:2.8.8")
implementation("androidx.security:security-crypto:1.0.0")
implementation("androidx.work:work-runtime:2.9.0")
// If not using beacon the dependency below can be omitted
implementation("org.altbeacon:android-beacon-library:2.19.2")
- Sync the project with the gradle file.
- If you are using Android location services for Xtremepush geofencing or iBeacons, please modify the
AndroidManifest.xmlto include the following permissions :
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
Updated 7 days ago