No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
To get started, install the SDK and then update some of the settings in your project.
Add the following maven repository to your build.gradle
or build.gradle.kts
file.
maven {
url "https://s3.amazonaws.com/inapp.salesforce.com/public/android"
}
maven {
url = uri("https://s3.amazonaws.com/inapp.salesforce.com/public/android")
}
Add the following dependency to your build.gradle
or build.gradle.kts
file.
dependencies {
implementation "com.salesforce.service:messaging-inapp-ui:<version>"
}
dependencies {
implementation("com.salesforce.service:messaging-inapp-ui:<version>")
}
To get the latest version information, refer to the Messaging for In-App release notes.
Tip
If you plan to use the Core SDK (and not the UI SDK), use the following dependency instead of messaging-inapp-ui
: com.salesforce.service:messaging-inapp-core:<version>
.
Note
Turn on the dataBinding
feature in the Android section of your build.gradle
file.
buildFeatures {
dataBinding true
}
buildFeatures {
dataBinding = true
}