X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=123d856e0ff3516b745f4bb5c082ea7a9e5b64ed;hb=cd3980b4701307f24bd9c94ecd71c92f190e570d;hp=9b10a28195e5d2e3e57c4c6235e8a7db5767681c;hpb=47e92bc63b2f89f00eb77d3a0164b990f96c7059;p=Dictionary.git diff --git a/build.gradle b/build.gradle index 9b10a28..123d856 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.1.1' + classpath 'com.android.tools.build:gradle:4.0.0' } } @@ -18,8 +18,8 @@ configurations { smallicu } dependencies { - implementation 'com.android.support:appcompat-v7:25.4.0' - implementation 'com.android.support:design:25.4.0' + implementation 'com.android.support:appcompat-v7:25.3.1' + implementation 'com.android.support:design:25.3.1' // Note: you can just replace "smallicu" by implementation // and remove the "compile files" part if you do not // care about the size of the apk @@ -27,6 +27,8 @@ dependencies { implementation files("$buildDir/icu4j-57.1.small.jar") { builtBy 'makesmallicu' } + implementation 'com.android.support:preference-v7:25.3.1' +// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.5' } task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { @@ -41,9 +43,14 @@ 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 26 - buildToolsVersion "27.0.3" + compileSdkVersion 29 lintOptions { disable "MissingTranslation" } @@ -75,7 +82,15 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - targetSdkVersion 26 - resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru" + // disabled since it breaks AndroidStudio, claims "default activity not found" +// multiDexEnabled true + targetSdkVersion 29 + resConfigs "de", "es", "eu", "fr", "it", "ja", "pt", "pt-rBR", "ru", "zh-rCN" + minSdkVersion 10 } +// compileOptions { +// coreLibraryDesugaringEnabled true +// sourceCompatibility JavaVersion.VERSION_1_8 +// targetCompatibility JavaVersion.VERSION_1_8 +// } }