diff options
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 9da7691..0265eec 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,10 @@ plugins { - id 'com.android.application' version '8.7.3' apply false - id 'com.android.library' version '8.7.3' apply false + 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'] + } } |