Updating the SDK
Ensure that the Luciq version is consistent across all dependencies, as illustrated below
Gradle Groovy DSL
Updating the Luciq Gradle Plugin
To update to the latest version 14.0.0, modify the root build.gradle file as follows:
buildscript {
dependencies {
classpath "ai.luciq.library:luciq-plugin:18.0.0"
}
}Updating the Luciq Dependency
In the Application’s build.gradle file, include the following dependencies:
..
dependencies {
// App dependencies
implementation("ai.luciq.library:luciq:18.0.0")
implementation("ai.luciq.library:luciq-ndk-crash:18.0.0") // optional
implementation("ai.luciq.library:luciq-compose:18.0.0") // optional
implementation("ai.luciq.library:luciq-with-okhttp-interceptor:18.0.0") // optional
implementation("ai.luciq.library:luciq-apm-okhttp-interceptor:18.0.0") // optional
implementation("ai.luciq.library:luciq-apm-grpc-interceptor:18.0.0") // optional
}Gradle Kotlin DSL
Updating the Luciq Gradle Plugin
To update to the latest version 14.0.0, adjust the root build.gradle file as shown below:
Updating the Luciq Dependency
In the Application’s build.gradle.kts file, include the following dependencies:
Gradle Version Catalog TOML
Ensure that the Luciq version is consistent across all dependencies, as illustrated below:
Updating the libs.versions.toml File
To update the Luciq version to 14.0.0, make the following changes:
Updating the Luciq Gradle Plugin
In the root build.gradle.kts file, include:
Updating the Luciq Dependency
In the App's build.gradle.kts file, configure as follows:
Last updated