X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=build.gradle;h=40671727b56e161133e5da8c297839706fb279dd;hb=4d21ab1dcc458d31c72add1742af3717f02a0063;hp=b12758b99018e0c2859921a2584d036574d3ba1a;hpb=5a5f950636bbd9989a7770498f84d9d456249c7a;p=Dictionary.git diff --git a/build.gradle b/build.gradle index b12758b..4067172 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.0' + classpath 'com.android.tools.build:gradle:2.2.3' } } @@ -16,7 +16,8 @@ configurations { smallicu } dependencies { - compile 'com.android.support:appcompat-v7:23.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 @@ -36,11 +37,11 @@ task makesmallicu (type:Exec, dependsOn: configurations.smallicu) { commandLine "./mksmallicu.sh", "${configurations.smallicu.resolve()[0]}", "$buildDir/icu4j-55.1.small.jar" } -def utildir = hasProperty("quickdicUtilDir") ? quickdicUtilDir : "../Util" +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 } }