For the complete documentation index, see llms.txt. This page is also available as Markdown.

Updating the SDK

Learn how to update the Luciq SDK in your Android app. Follow migration steps to upgrade to the latest version and access new features and bug fixes.

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

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