Android SDK Installation
Install the MoEngage Android SDK in your Capacitor project using BOM or manual dependency configuration.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install the MoEngage Android SDK in your Capacitor project using BOM or manual dependency configuration.
dependencies {
...
// Import the MoEngage BOM
implementation(platform("com.moengage:android-bom:<bomVersion>"))
// Add optional modules as needed
implementation("com.moengage:inapp")
}
buildscript {
repositories {
mavenCentral()
}
}
allprojects {
repositories {
mavenCentral()
}
}
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
android {
...
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
...
implementation("androidx.core:core:1.9.0")
implementation("androidx.appcompat:appcompat:1.4.2")
implementation("androidx.lifecycle:lifecycle-process:2.7.0")
}
Was this page helpful?