Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
Upped library version to 0.0.3 and updated API & tools to 23.
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Sep 4, 2015
1 parent cf6506c commit b9e21cf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions exampleapp/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
}
Expand All @@ -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')
Expand Down
12 changes: 6 additions & 6 deletions myolib/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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
}
Expand All @@ -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'
Expand Down

0 comments on commit b9e21cf

Please sign in to comment.