Has anyone tried to apply execution profiles (new ...
# android
s
Has anyone tried to apply execution profiles (new feature in gradle plugin 8.0.0)? I can't get it to work in settings.gradle.kts
🧵 1
1
not kotlin but kotlin colored 1
c
If your read carefully it’s only available with groovy.
s
Yeap, i just noticed there is no kotlin support for that plugin.
e
it is usable in
settings.gradle.kts
, there's just no generated accessors. if you do it yourself it is fine
Copy code
import com.android.build.api.dsl.SettingsExtension

plugins {
    id("com.android.settings") version "..."
}

configure<SettingsExtension> {
     // ...
}
❤️ 1