X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=cdf51ac9b6a37fbb4ec187306978f07a9cf6e324;hb=25cbd55cdb4e692ac182768395722d998094282d;hp=55febf87b8aec2eff6435be7708e1d69845d0ced;hpb=46070f6f09e231a3a869852c85bcafb8e698c30f;p=Dictionary.git diff --git a/build.gradle b/build.gradle index 55febf8..cdf51ac 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:2.2.2' } } @@ -16,7 +16,8 @@ configurations { smallicu } dependencies { - compile 'com.android.support:appcompat-v7:22.2.1' + compile 'com.android.support:appcompat-v7:25.0.0' + compile 'com.android.support:design:25.0.0' // Note: you can just replace "smallicu" by compile // and remove the "compile files" part if you do not // care about the size of the apk @@ -39,8 +40,11 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util" android { - compileSdkVersion 22 - buildToolsVersion "23.0.1" + compileSdkVersion 25 + buildToolsVersion "25" + lintOptions { + disable "MissingTranslation" + } buildTypes { debug { applicationIdSuffix ".debug" @@ -72,6 +76,6 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - targetSdkVersion 22 + targetSdkVersion 23 } }