X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=blobdiff_plain;f=build.gradle;h=aafb2b8562856628d258ed2c6b999c80a33297ce;hp=378cc827cb057bdbed50f4f2095ffceab1f7a858;hb=c76660b2772122109529d3616289980a7084eeeb;hpb=0b8b634663df52b47c2e3aeb75960a5a7b58dffe diff --git a/build.gradle b/build.gradle index 378cc82..aafb2b8 100644 --- a/build.gradle +++ b/build.gradle @@ -27,6 +27,7 @@ dependencies { implementation files("$buildDir/icu4j-57.1.small.jar") { builtBy 'makesmallicu' } + implementation 'com.android.support:preference-v7:25.3.1' } task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { @@ -41,6 +42,12 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util" +allprojects { + tasks.withType(JavaCompile) { + options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + } +} + android { compileSdkVersion 29 lintOptions {