Skip to content

Commit 1dadd27

Browse files
committed
Merge pull request pedrovgs#12 from xfumihiro/master
Update SDK build tools to API 23
2 parents 31a686d + da7c735 commit 1dadd27

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ language: android
22

33
android:
44
components:
5-
- build-tools-21.0.2
6-
- android-21
5+
- build-tools-23.0.1
6+
- android-23
77
- extra-google-google_play_services
88
- extra-google-m2repository
99
- extra-android-m2repository

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:1.0.1'
6+
classpath 'com.android.tools.build:gradle:1.3.0'
77
}
88
}
99
apply plugin: 'com.android.application'
@@ -15,12 +15,12 @@ repositories {
1515
}
1616

1717
android {
18-
compileSdkVersion 21
19-
buildToolsVersion "21.0.2"
18+
compileSdkVersion 23
19+
buildToolsVersion "23.0.1"
2020

2121
defaultConfig {
2222
minSdkVersion 8
23-
targetSdkVersion 21
23+
targetSdkVersion 23
2424
versionCode 1
2525
versionName "1.0"
2626
}
@@ -37,8 +37,8 @@ android {
3737

3838
dependencies {
3939
compile fileTree(dir: 'libs', include: ['*.jar'])
40-
compile 'com.android.support:appcompat-v7:21.+'
41-
compile 'com.android.support:support-v4:21.+'
40+
compile 'com.android.support:appcompat-v7:23.0.1'
41+
compile 'com.android.support:support-v4:23.0.1'
4242
compile 'javax.inject:javax.inject:1@jar'
4343
provided 'com.squareup.dagger:dagger-compiler:1.2.+'
4444
compile 'com.squareup.dagger:dagger:1.2.+'

0 commit comments

Comments
 (0)