Activate the Plugin
In your module-level build.gradle, add the adeum plugin immediately after the com.android.application plugin, so that it looks similar to the example below:
apply plugin: 'com.android.application'
apply plugin: 'adeum' // this line added for AppDynamics
Activate the Jetpack Compose instrumentation
You can activate the Jetpack Compose plugin for your library that have compose: true in your library module.
-
Add
appdynamics-kotlin-compilerin the plugins:CODEplugins { id("com.android.library") id("org.jetbrains.kotlin.android") id("appdynamics-kotlin-compiler") } -
Add the dependency:JSON
dependencies { implementation "com.appdynamics:appdynamics-runtime:25.6.0" }
adeum plugin handles the instrumentation for Application module compose.