Hi! I continue with this, and I found another poin...
# gradle
a
Hi! I continue with this, and I found another point I’m not sure about. When transforming the
ext
to Kotlin dsl, after quite some time I’ve found that some similar is using the
extra
delegate. I have the root build.gradle, and the module one. To use an extra I need to do: root script:
Copy code
val androidCompileSdkVersion by extra { 26 }
module script:
Copy code
val androidCompileSdkVersion: Int by extra
    compileSdkVersion(androidCompileSdkVersion)