X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=e51d5323bc64017616850d98bdf46d238a5002c5;hb=9e43c10146c440f63788a46ba8a87e3f1722c77e;hp=f31f2bac80637a044e1b5d42b660b7ebd74a0385;hpb=f4c375c2367d981f2c09b316a8f6178ecb97d2c4;p=Dictionary.git diff --git a/build.gradle b/build.gradle index f31f2ba..e51d532 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:3.2.1' } } @@ -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 @@ -43,7 +43,6 @@ def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "Util" android { compileSdkVersion 26 - buildToolsVersion "27.0.3" lintOptions { disable "MissingTranslation" } @@ -77,5 +76,6 @@ android { applicationId 'de.reimardoeffinger.quickdic' targetSdkVersion 26 resConfigs "de", "es", "fr", "it", "ja", "pt", "pt-rBR", "ru", "zh-rCN" + minSdkVersion = 10 } }