Skip to content

Commit

Permalink
Update build tools version to 22.0.1 and compile with api 22 sdk.
Browse files Browse the repository at this point in the history
  • Loading branch information
warnyul committed Apr 12, 2015
1 parent f07c834 commit 200b625
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
5 changes: 4 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: android
jdk: oraclejdk7
android:
components:
- build-tools-20.0.0
- android-20
- build-tools-22.0.1
- android-22
- extra-android-support
- sys-img-armeabi-v7a-android-19
licences:
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
Empty file modified gradlew.bat
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions login/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 20
targetSdkVersion 22
versionName VERSION_NAME
}
buildTypes {
Expand All @@ -35,5 +35,5 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
}
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 20
targetSdkVersion 22
versionName VERSION_NAME
}
buildTypes {
Expand All @@ -35,7 +35,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
compile project(':login')
compile project(':soup')
compile project(':validation')
Expand Down
8 changes: 4 additions & 4 deletions soup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 20
targetSdkVersion 22
versionName VERSION_NAME
}
buildTypes {
Expand All @@ -35,5 +35,5 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
}
8 changes: 4 additions & 4 deletions validation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 20
targetSdkVersion 22
versionName VERSION_NAME
}
buildTypes {
Expand All @@ -35,5 +35,5 @@ android {

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

0 comments on commit 200b625

Please sign in to comment.