1 2 3 4 5 6 7 8 9 10
plugins { id 'com.android.application' version '8.13.2' apply false id 'com.android.library' version '8.13.2' apply false } subprojects { tasks.withType(JavaCompile).configureEach { options.compilerArgs += ['-Xlint:deprecation', '-Xlint:unchecked'] } }