Skip to content

Commit 8a53cb4

Browse files
committed
Update SDK and build tools
1 parent 09e7f18 commit 8a53cb4

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ sudo: false
77

88
android:
99
components:
10-
- build-tools-21.1.1
10+
- build-tools-23.0.1
1111

1212
- android-22
13+
- android-23
1314

1415
- extra-android-support
1516
- extra-android-m2repository

ParseUI-Login/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ dependencies {
3636
}
3737

3838
android {
39-
compileSdkVersion 21
40-
buildToolsVersion "21.1.1"
39+
compileSdkVersion rootProject.ext.compileSdkVersion
40+
buildToolsVersion rootProject.ext.buildToolsVersion
4141

4242
defaultConfig {
43-
minSdkVersion 9
44-
targetSdkVersion 21
43+
minSdkVersion rootProject.ext.minSdkVersion
44+
targetSdkVersion rootProject.ext.targetSdkVersion
4545
versionName project.version
4646
versionCode 1
4747
}

ParseUI-Widget/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ dependencies {
3535
}
3636

3737
android {
38-
compileSdkVersion 21
39-
buildToolsVersion "21.1.1"
38+
compileSdkVersion rootProject.ext.compileSdkVersion
39+
buildToolsVersion rootProject.ext.buildToolsVersion
4040

4141
defaultConfig {
42-
minSdkVersion 9
43-
targetSdkVersion 21
42+
minSdkVersion rootProject.ext.minSdkVersion
43+
targetSdkVersion rootProject.ext.targetSdkVersion
4444
versionName project.version
4545
versionCode 1
4646
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ buildscript {
1515
}
1616

1717
ext {
18-
compileSdkVersion = 21
19-
buildToolsVersion = "21.1.1"
18+
compileSdkVersion = 23
19+
buildToolsVersion = "23.0.1"
2020

2121
minSdkVersion = 15
22-
targetSdkVersion = 21
22+
targetSdkVersion = 23
2323

2424
facebookSDK = 'com.facebook.android:facebook-android-sdk:4.6.0'
2525
androidSupport = 'com.android.support:support-v4:23.0.1'

0 commit comments

Comments
 (0)