Skip to content

Commit

Permalink
updated libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacek Kwiecień committed Sep 15, 2015
1 parent 64d987a commit 3fb2061
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,12 @@ allprojects {
jcenter()
}
}

ext {
compileSdkVersion = 23
targetSdkVersion = 21
buildToolsVersion = "23.0.1"
minSdkVersion = 14
versionCode = 13
versionName = "1.1.3"
}
15 changes: 7 additions & 8 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationId "pl.aprilapps.switcher.sample"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
renderscriptTargetApi 22
renderscriptSupportModeEnabled true
}
Expand All @@ -23,7 +22,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:appcompat-v7:23.0.1'
compile(project(':switcher-library'))
compile 'com.jakewharton:butterknife:6.0.0'
compile 'com.netflix.rxjava:rxjava-core:0.20.7'
Expand Down
14 changes: 7 additions & 7 deletions switcher-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'android-maven'

android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 14
targetSdkVersion 22
versionCode 12
versionName "1.1.2"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
renderscriptTargetApi 22
renderscriptSupportModeEnabled true
}
Expand All @@ -23,6 +23,6 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:appcompat-v7:23.0.1'

}

0 comments on commit 3fb2061

Please sign in to comment.