Skip to content

Commit 0509999

Browse files
author
Google Automerger
committed
Merge commit 'f17d5a4c22fa782b94761fc7bb3e6fd4f11be5a9' into HEAD
2 parents 11481fc + f17d5a4 commit 0509999

File tree

8 files changed

+26
-6
lines changed

8 files changed

+26
-6
lines changed

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: android
2+
android:
3+
components:
4+
- platform-tools
5+
- tools
6+
- build-tools-23.0.3
7+
- android-23
8+
- extra-google-google_play_services
9+
- extra-google-m2repository
10+
- extra-android-m2repository
11+
- addon-google_apis-google-23
12+
licenses:
13+
- 'android-sdk-preview-license-52d11cd2'
14+
- 'android-sdk-license-.+'
15+
- 'google-gdk-license-.+'
16+
script:
17+
- ./gradlew clean :library:prepareArtifacts

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# FirebaseUI for Android — UI Bindings for Firebase
22

3+
[![Build Status](https://travis-ci.org/firebase/FirebaseUI-Android.svg?branch=master)](https://travis-ci.org/firebase/FirebaseUI-Android)
4+
35
FirebaseUI is an open-source library for Android that allows you to
46
quickly connect common UI elements to [Firebase](https://firebase.google.com)
57
APIs like the Realtime Database or Firebase Authentication.
@@ -101,4 +103,4 @@ accept your pull requests.
101103
1. Ensure that your code adheres to the existing style of the library to which
102104
you are contributing.
103105
1. Ensure that your code has an appropriate set of unit tests which all pass.
104-
1. Submit a pull request and cc @puf or @mcdonamp
106+
1. Submit a pull request and cc @puf or @mcdonamp

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply from: "../common/constants.gradle"
44

55
android {
66
compileSdkVersion 23
7-
buildToolsVersion "23.0.2"
7+
buildToolsVersion "${project.ext.buildtools}"
88

99
defaultConfig {
1010
applicationId "com.firebase.uidemo"

auth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'checkstyle'
33

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

88
defaultConfig {
99
minSdkVersion 16

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ allprojects { project ->
4141
apply plugin: 'com.android.library'
4242
android {
4343
compileSdkVersion 23
44-
buildToolsVersion "23.0.3"
44+
buildToolsVersion "${project.ext.buildtools}"
4545
}
4646

4747
// Task to generate sources JAR

common/constants.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ project.ext.submodules = ['database', 'auth']
44
project.ext.group = "com.firebaseui"
55
project.ext.version = '0.4.0'
66
project.ext.pomdesc = 'Firebase UI Android'
7+
project.ext.buildtools = '23.0.3'

database/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

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

77
defaultConfig {
88
minSdkVersion 9

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

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

77
defaultConfig {
88
minSdkVersion 16

0 commit comments

Comments
 (0)