diff --git a/exampleapp/build.gradle b/exampleapp/build.gradle index 923476a..2b680ef 100644 --- a/exampleapp/build.gradle +++ b/exampleapp/build.gradle @@ -1,13 +1,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" + compileSdkVersion 23 + buildToolsVersion "23.0.1" defaultConfig { applicationId "eu.darken.myolib.exampleapp" minSdkVersion 18 - targetSdkVersion 22 + targetSdkVersion 23 versionCode 2 versionName "1.1" } @@ -26,7 +26,7 @@ repositories { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:22.2.1' + compile 'com.android.support:appcompat-v7:23.0.1' // compile 'eu.darken.myolib:myolib:0.0.2' // Change to use local library compile project(':myolib') diff --git a/myolib/build.gradle b/myolib/build.gradle index 1c2c300..4b29ef6 100644 --- a/myolib/build.gradle +++ b/myolib/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.library' -def myVersionName = "0.0.2" -def myVersionCode = 2 +def myVersionName = "0.0.3" +def myVersionCode = 3 ext { bintrayRepo = 'maven' @@ -28,12 +28,12 @@ ext { } android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" + compileSdkVersion 23 + buildToolsVersion "23.0.1" defaultConfig { minSdkVersion 18 - targetSdkVersion 22 + targetSdkVersion 23 versionCode myVersionCode versionName myVersionName } @@ -47,7 +47,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:support-annotations:22.2.1' + compile 'com.android.support:support-annotations:23.0.1' } apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'