X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=blobdiff_plain;f=build.gradle;h=21bbe741e09e7a1be39024a534223a9b93b0a67c;hp=123d856e0ff3516b745f4bb5c082ea7a9e5b64ed;hb=HEAD;hpb=cd3980b4701307f24bd9c94ecd71c92f190e570d diff --git a/build.gradle b/build.gradle index 123d856..21bbe74 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:4.0.0' + classpath 'com.android.tools.build:gradle:4.1.1' } } @@ -28,7 +28,7 @@ dependencies { builtBy 'makesmallicu' } implementation 'com.android.support:preference-v7:25.3.1' -// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.5' + coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1' } task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { @@ -82,15 +82,14 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - // disabled since it breaks AndroidStudio, claims "default activity not found" -// multiDexEnabled true + 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 -// } + compileOptions { + coreLibraryDesugaringEnabled true + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } }