Skip to content

Commit 7a70965

Browse files
committed
Build tools version
1 parent 22f106f commit 7a70965

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

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
@@ -40,7 +40,7 @@ allprojects { project ->
4040
apply plugin: 'com.android.library'
4141
android {
4242
compileSdkVersion 23
43-
buildToolsVersion "23.0.3"
43+
buildToolsVersion "${project.ext.buildtools}"
4444
}
4545

4646
// 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)