Skip to content

Installation

Before integrating the Ascend Android SDK, ensure your project meets the following requirements:

  • Android API Level: Minimum SDK 24 (Android 7.0)
  • Target SDK: 36 (Android 14)
  • Java Version: 11 or higher
  • Kotlin: 2.0.21 or higher
  • Android Gradle Plugin: 8.13.0 or higher

Add Maven Central to your project’s settings.gradle.kts (usually already included by default):

dependencyResolutionManagement {
repositories {
google()
mavenCentral() // Maven Central is usually included by default
}
}

Add the SDK dependency to your app module’s build.gradle.kts: ref: mavenCentral

dependencies {
implementation("org.dreamhorizon:ascend-android-sdk:x.y.z") /* replace x.y.z with latest version */
}