X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=d4600c6e9e901daba2fb858e54970b604ce3241c;hb=fb347ae25036b89de22f48c7b710ed36b7be4440;hp=06ccfb0a047a60947ae6b44adf09eba63ed9393c;hpb=3eb790668c12d8c9d87cbf5f54420b5798d3dd8e;p=Dictionary.git diff --git a/build.gradle b/build.gradle index 06ccfb0..d4600c6 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.2' + classpath 'com.android.tools.build:gradle:2.2.3' } } @@ -16,7 +16,8 @@ configurations { smallicu } dependencies { - compile 'com.android.support:appcompat-v7:24.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,8 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util" android { - compileSdkVersion 23 - buildToolsVersion "23.0.2" + compileSdkVersion 25 + buildToolsVersion "25" lintOptions { disable "MissingTranslation" } @@ -75,6 +76,6 @@ android { } defaultConfig { applicationId 'de.reimardoeffinger.quickdic' - targetSdkVersion 22 + targetSdkVersion 23 } }