android-showcase
android-showcase copied to clipboard
Gradle: Duplicated `compileOptions` and `kotlinOptions` blocks
compileOptions and kotlinOptions block are duplicated in each module. Ideally this configuration should be applied only once (and work all the times, even for future modules).
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
i'd like to work on this
Still want to work on that @iam-alamgir ?