diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2016-05-07 12:19:51 +0300 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2016-05-07 12:19:51 +0300 |
commit | ab5fec23d751a017ab0fdac93950c00ce7b8c1dc (patch) | |
tree | 4d88b0544bf37c87a4287a70c011cc8a73b74012 | |
parent | 8ca0f578bb843db7744dbd5724b32f6664b5c3db (diff) | |
download | openpgp-api-ab5fec23d751a017ab0fdac93950c00ce7b8c1dc.tar.gz openpgp-api-ab5fec23d751a017ab0fdac93950c00ce7b8c1dc.tar.bz2 openpgp-api-ab5fec23d751a017ab0fdac93950c00ce7b8c1dc.zip |
Update build env
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | example/build.gradle | 8 | ||||
-rw-r--r-- | openpgp-api/build.gradle | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle index 309f3fb..88bda0e 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.3.0' + classpath 'com.android.tools.build:gradle:2.1.0' classpath 'com.novoda:bintray-release:0.2.7' } } diff --git a/example/build.gradle b/example/build.gradle index c73848c..be02597 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -1,17 +1,17 @@ apply plugin: 'com.android.application' dependencies { - compile 'com.android.support:support-v4:22.2.1' + compile 'com.android.support:support-v4:23.3.0' compile project(':openpgp-api') } android { - compileSdkVersion 22 - buildToolsVersion '21.1.2' + compileSdkVersion 23 + buildToolsVersion '23.0.3' defaultConfig { minSdkVersion 9 - targetSdkVersion 22 + targetSdkVersion 23 applicationId 'org.openintents.openpgp.example' versionCode 6 versionName '7.0' diff --git a/openpgp-api/build.gradle b/openpgp-api/build.gradle index 4060a70..8ce368b 100644 --- a/openpgp-api/build.gradle +++ b/openpgp-api/build.gradle @@ -2,14 +2,14 @@ apply plugin: 'com.android.library' apply plugin: 'bintray-release' // must be applied after your artifact generating plugin (eg. java / com.android.library) android { - compileSdkVersion 22 - buildToolsVersion '21.1.2' + compileSdkVersion 23 + buildToolsVersion '23.0.3' defaultConfig { versionCode 9 versionName '11.0' // API-Version . minor minSdkVersion 9 - targetSdkVersion 22 + targetSdkVersion 23 } // Do not abort build if lint finds errors |