Adam S
05/21/2023, 5:02 PMimport org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("com.android.library") version "4.2.2"
kotlin("android") version "1.8.10"
}
tasks.withType<KotlinCompile>().configureEach {
doLast {
println("libraries.asPath: ${libraries.asPath.split(":").joinToString("\n")}")
}
}
this prints a lot of files, but notably the transformed JARs, not the AARs
$GRADLE_HOME/caches/transforms-3/ab9756f20481c6101ac49908053f72a3/transformed/appcompat-1.1.0-api.jar
$GRADLE_HOME/caches/transforms-3/59413dd188b193d516451e7f62c30492/transformed/fragment-1.1.0-api.jar
$GRADLE_HOME/caches/transforms-3/2a940a2364aecaea01565c23952c7c2d/transformed/appcompat-resources-1.1.0-api.jar
...
When I try and fetch the transformed JARs via a Configuration, I can’t seem to get them - only the AARs. What am I missing?Adam S
05/21/2023, 5:03 PM