Skip to content

Commit ae3e3ad

Browse files
authored
Update deps (#1419)
2 parents c387047 + 4cd8b74 commit ae3e3ad

File tree

7 files changed

+32
-25
lines changed

7 files changed

+32
-25
lines changed

auth/auth-proguard.pro

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@
2222
-dontwarn okhttp3.**
2323
-dontwarn okio.**
2424
-keepattributes Exceptions
25+
26+
# TODO remove https://github.com/google/gson/issues/1174
27+
-dontwarn com.google.gson.Gson$6

auth/lint.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ buildscript {
2222
}
2323
}
2424

25+
plugins {
26+
id("com.github.ben-manes.versions") version "0.20.0"
27+
}
28+
2529
// See https://github.com/gradle/kotlin-dsl/issues/607#issuecomment-375687119
2630
subprojects { parent!!.path.takeIf { it != rootProject.path }?.let { evaluationDependsOn(it) } }
2731

buildSrc/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
repositories {
2+
jcenter()
3+
}
4+
15
plugins {
26
`kotlin-dsl`
37
}

buildSrc/src/main/kotlin/Config.kt

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ object Config {
22
const val version = "4.2.0-SNAPSHOT"
33
val submodules = listOf("auth", "common", "firestore", "database", "storage")
44

5-
private const val kotlinVersion = "1.2.41"
5+
private const val kotlinVersion = "1.2.61"
66

77
object SdkVersions {
88
const val compile = 27
@@ -11,12 +11,12 @@ object Config {
1111
}
1212

1313
object Plugins {
14-
const val android = "com.android.tools.build:gradle:3.2.0-beta01"
14+
const val android = "com.android.tools.build:gradle:3.2.0-rc01"
1515
const val kotlin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
16-
const val google = "com.google.gms:google-services:4.0.1"
16+
const val google = "com.google.gms:google-services:4.1.0"
1717

18-
const val bintray = "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.1"
19-
const val buildInfo = "org.jfrog.buildinfo:build-info-extractor-gradle:4.7.3"
18+
const val bintray = "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
19+
const val buildInfo = "org.jfrog.buildinfo:build-info-extractor-gradle:4.7.5"
2020
}
2121

2222
object Libs {
@@ -46,30 +46,32 @@ object Config {
4646
const val extensions = "android.arch.lifecycle:extensions:$version"
4747
const val compiler = "android.arch.lifecycle:compiler:$version"
4848

49-
const val paging = "android.arch.paging:runtime:1.0.0"
49+
const val paging = "android.arch.paging:runtime:1.0.1"
5050
}
5151

5252
object Firebase {
53-
const val core = "com.google.firebase:firebase-core:16.0.0"
54-
const val auth = "com.google.firebase:firebase-auth:16.0.1"
55-
const val firestore = "com.google.firebase:firebase-firestore:17.0.1"
53+
const val core = "com.google.firebase:firebase-core:16.0.3"
54+
const val auth = "com.google.firebase:firebase-auth:16.0.3"
55+
const val firestore = "com.google.firebase:firebase-firestore:17.1.0"
5656
const val database = "com.google.firebase:firebase-database:16.0.1"
5757
const val storage = "com.google.firebase:firebase-storage:16.0.1"
5858
}
5959

6060
object PlayServices {
61-
const val auth = "com.google.android.gms:play-services-auth:15.0.1"
61+
const val auth = "com.google.android.gms:play-services-auth:16.0.0"
6262
}
6363

6464
object Provider {
65-
const val facebook = "com.facebook.android:facebook-login:4.33.0"
65+
const val facebook = "com.facebook.android:facebook-login:4.35.0"
66+
// WARNING: the Twitter requires Java 8 support. Therefore, the dep cannot be upgraded
67+
// futher until we decide to force clients to enable Java 8 support.
6668
const val twitter = "com.twitter.sdk.android:twitter-core:3.1.1@aar"
6769
}
6870

6971
object Misc {
7072
private const val retrofitVersion = "2.4.0"
71-
private const val leakCanaryVersion = "1.5.4"
72-
private const val glideVersion = "4.7.1"
73+
private const val leakCanaryVersion = "1.6.1"
74+
private const val glideVersion = "4.8.0"
7375
private const val butterVersion = "8.8.1"
7476

7577
const val retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
@@ -85,18 +87,18 @@ object Config {
8587
const val butterKnife = "com.jakewharton:butterknife:$butterVersion"
8688
const val butterKnifeCompiler = "com.jakewharton:butterknife-compiler:$butterVersion"
8789

88-
const val permissions = "pub.devrel:easypermissions:1.2.0"
90+
const val permissions = "pub.devrel:easypermissions:1.3.0"
8991
const val materialProgress = "me.zhanghai.android.materialprogressbar:library:1.4.2"
9092
}
9193

9294
object Test {
9395
const val junit = "junit:junit:4.12"
94-
const val truth = "com.google.truth:truth:0.40"
95-
const val mockito = "org.mockito:mockito-android:2.18.3"
96+
const val truth = "com.google.truth:truth:0.42"
97+
const val mockito = "org.mockito:mockito-android:2.21.0"
9698
const val robolectric = "org.robolectric:robolectric:3.8"
9799

98-
const val runner = "com.android.support.test:runner:1.0.1"
99-
const val rules = "com.android.support.test:rules:1.0.1"
100+
const val runner = "com.android.support.test:runner:1.0.2"
101+
const val rules = "com.android.support.test:rules:1.0.2"
100102
}
101103

102104
object Lint {

gradle/wrapper/gradle-wrapper.jar

1.72 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-rc-3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)