1plugins { 2 id 'org.jetbrains.kotlin.jvm' 3} 4 5compileKotlin { 6 kotlinOptions { 7 jvmTarget = 11 8 } 9} 10 11dependencies { 12 api project(':agp-wrapper') 13 implementation project(':agp-wrapper-7-0') 14 implementation project(':agp-wrapper-7-1') 15 implementation project(':agp-wrapper-7-2') 16 compileOnly gradleApi() 17 compileOnly "com.android.tools.build:gradle:$agp_version" 18 19 testImplementation 'junit:junit:4.12' 20 testImplementation 'com.google.truth:truth:1.0.1' 21} 22