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.

  1. Add appdynamics-kotlin-compiler in the plugins:
    plugins {
        id("com.android.library")
        id("org.jetbrains.kotlin.android")
        id("appdynamics-kotlin-compiler")
    } 
  2. Add the dependency:
    dependencies {
    	implementation "com.appdynamics:appdynamics-runtime:25.6.0" 
    }
    
                         
    
Note: Currently, the Android Agent supports button-click and navigation instrumentation. The adeum plugin handles the instrumentation for Application module compose.