aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 0265eec307ca19dc63646971b18d124c0500d36f (plain) (blame)
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']
    }
}