Update to newest build tool and support library

This commit is contained in:
Jonas Kalderstam 2015-11-08 21:29:48 +01:00
parent b4fb9b5754
commit c4f5d80a74
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ env:
android:
components:
- platform-tools
- build-tools-23.0.1
- build-tools-23.0.2
- android-23
- sys-img-armeabi-v7a-android-23
- extra-android-support

View File

@ -26,7 +26,7 @@ def gitCommitCount =
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 9
@ -38,9 +38,9 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.android.support:recyclerview-v7:23.1.0'
testCompile 'junit:junit:4.12'
}