Adding Dependency
To add MoEngage's Android SDK to your application goto /<path-to-your-project>/android/build.gradle
and add the below dependencies.
// adding the repositories block is optional. You can choose not to add this block if you have already added these repositories to your project.
repositories {
google()
mavenCentral()
}
dependencies {
implementation("androidx.core:core:1.3.1")
implementation("androidx.appcompat:appcompat:1.2.0")
implementation("androidx.lifecycle:lifecycle-process:2.2.0")
implementation("com.moengage:moe-android-sdk:11.6.02")
}