Skip to content

Commit 7a37877

Browse files
Update to android-24
1 parent 873ee21 commit 7a37877

File tree

7 files changed

+16
-14
lines changed

7 files changed

+16
-14
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
language: android
2+
jdk:
3+
- oraclejdk8
24
android:
35
components:
46
- platform-tools
57
- tools
6-
- build-tools-23.0.3
7-
- android-23
8+
- build-tools-24.0.0
9+
- android-24
810
- extra-google-google_play_services
911
- extra-google-m2repository
1012
- extra-android-m2repository
11-
- addon-google_apis-google-23
13+
- addon-google_apis-google-24
1214
licenses:
1315
- 'android-sdk-preview-license-52d11cd2'
1416
- 'android-sdk-license-.+'

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ apply plugin: 'com.neenbedankt.android-apt'
33
apply from: "../common/constants.gradle"
44

55
android {
6-
compileSdkVersion 23
6+
compileSdkVersion 24
77
buildToolsVersion "${project.ext.buildtools}"
88

99
defaultConfig {
1010
applicationId "com.firebase.uidemo"
1111
minSdkVersion 16
12-
targetSdkVersion 23
12+
targetSdkVersion 24
1313
versionCode 1
1414
versionName "1.0"
1515
}

auth/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
22
apply plugin: 'checkstyle'
33

44
android {
5-
compileSdkVersion 23
5+
compileSdkVersion 24
66
buildToolsVersion "${project.ext.buildtools}"
77

88
defaultConfig {
99
minSdkVersion 16
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 1
1212
versionName "1.0"
1313
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ allprojects { project ->
5252
// So that we can resolve 'android' variable
5353
project.apply plugin: 'com.android.library'
5454
android {
55-
compileSdkVersion 23
55+
compileSdkVersion 24
5656
buildToolsVersion "${project.ext.buildtools}"
5757
}
5858

common/constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
project.ext.firebase_version = '9.0.2'
2-
project.ext.support_library_version = '23.4.0'
2+
project.ext.support_library_version = '24.0.0'
33

44
project.ext.submodules = ['database', 'auth']
55
project.ext.group = "com.firebaseui"
66
project.ext.version = '0.4.1'
77
project.ext.pomdesc = 'Firebase UI Android'
8-
project.ext.buildtools = '23.0.3'
8+
project.ext.buildtools = '24.0.0'

database/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 24
55
buildToolsVersion "${project.ext.buildtools}"
66

77
defaultConfig {
88
minSdkVersion 9
9-
targetSdkVersion 23
9+
targetSdkVersion 24
1010
versionCode 1
1111
versionName "1.0"
1212
}

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 24
55
buildToolsVersion "${project.ext.buildtools}"
66

77
defaultConfig {
88
minSdkVersion 16
9-
targetSdkVersion 23
9+
targetSdkVersion 24
1010
versionCode 1
1111
versionName "0.3.1"
1212
}

0 commit comments

Comments
 (0)