Skip to content

Commit 9d4e903

Browse files
committedJul 6, 2020
Upgrade some dependencies
1 parent 92ecfaf commit 9d4e903

File tree

6 files changed

+17
-18
lines changed

6 files changed

+17
-18
lines changed
 

‎CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Build 🧱:
2424
- Fix lint false-positive about WorkManger (#1012)
2525
- Upgrade build-tools from 3.5.3 to 3.6.6
2626
- Upgrade gradle from 5.4.1 to 5.6.4
27+
- Upgrade some dependencies
2728

2829
Other changes:
2930
-

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.3.50'
4+
ext.kotlin_version = '1.3.72'
55
repositories {
66
google()
77
jcenter()
@@ -15,7 +15,7 @@ buildscript {
1515
classpath "com.airbnb.okreplay:gradle-plugin:1.5.0"
1616
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1717
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7.1'
18-
classpath 'com.google.android.gms:oss-licenses-plugin:0.9.5'
18+
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.2'
1919

2020
// NOTE: Do not place your application dependencies here; they belong
2121
// in the individual module build.gradle files

‎matrix-sdk-android-rx/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
4040
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
4141
// Paging
42-
implementation "androidx.paging:paging-runtime-ktx:2.1.0"
42+
implementation "androidx.paging:paging-runtime-ktx:2.1.2"
4343

4444
// Logging
4545
implementation 'com.jakewharton.timber:timber:4.7.1'

‎matrix-sdk-android/build.gradle

+1-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ android {
5151
}
5252

5353
buildTypes {
54-
5554
debug {
5655
// Set to true to log privacy or sensible data, such as token
5756
buildConfigField "boolean", "LOG_PRIVATE_DATA", project.property("vector.debugPrivateData")
@@ -123,7 +122,7 @@ dependencies {
123122
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
124123

125124
implementation "androidx.appcompat:appcompat:1.1.0"
126-
implementation "androidx.core:core-ktx:1.1.0"
125+
implementation "androidx.core:core-ktx:1.3.0"
127126

128127
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
129128
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
@@ -205,5 +204,4 @@ dependencies {
205204
androidTestImplementation 'net.lachlanmckee:timber-junit-rule:1.0.1'
206205

207206
androidTestUtil 'androidx.test:orchestrator:1.2.0'
208-
209207
}

‎multipicker/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies {
4444
implementation fileTree(dir: 'libs', include: ['*.jar'])
4545
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
4646
implementation 'androidx.appcompat:appcompat:1.1.0'
47-
implementation 'androidx.core:core-ktx:1.2.0'
47+
implementation 'androidx.core:core-ktx:1.3.0'
4848
testImplementation 'junit:junit:4.12'
4949
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
5050
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

‎vector/build.gradle

+11-11
Original file line numberDiff line numberDiff line change
@@ -262,16 +262,16 @@ android {
262262
dependencies {
263263

264264
def epoxy_version = '3.11.0'
265-
def fragment_version = '1.2.0'
265+
def fragment_version = '1.2.5'
266266
def arrow_version = "0.8.2"
267267
def coroutines_version = "1.3.2"
268268
def markwon_version = '4.1.2'
269269
def big_image_viewer_version = '1.6.2'
270-
def glide_version = '4.10.0'
270+
def glide_version = '4.11.0'
271271
def moshi_version = '1.8.0'
272272
def daggerVersion = '2.25.4'
273273
def autofill_version = "1.0.0"
274-
def work_version = '2.3.3'
274+
def work_version = '2.3.4'
275275
def arch_version = '2.1.0'
276276
def lifecycle_version = '2.2.0'
277277

@@ -285,12 +285,12 @@ dependencies {
285285
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
286286
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
287287

288-
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha01"
288+
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha04"
289289
implementation 'androidx.appcompat:appcompat:1.1.0'
290290
implementation "androidx.fragment:fragment:$fragment_version"
291291
implementation "androidx.fragment:fragment-ktx:$fragment_version"
292-
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
293-
implementation 'androidx.core:core-ktx:1.1.0'
292+
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta7'
293+
implementation 'androidx.core:core-ktx:1.3.0'
294294

295295
implementation "org.threeten:threetenbp:1.4.0:no-tzdb"
296296
implementation "com.gabrielittner.threetenbp:lazythreetenbp:0.7.0"
@@ -326,17 +326,17 @@ dependencies {
326326
implementation "androidx.work:work-runtime-ktx:$work_version"
327327

328328
// Paging
329-
implementation "androidx.paging:paging-runtime-ktx:2.1.1"
329+
implementation "androidx.paging:paging-runtime-ktx:2.1.2"
330330

331331
// Functional Programming
332332
implementation "io.arrow-kt:arrow-core:$arrow_version"
333333

334334
// Pref
335-
implementation 'androidx.preference:preference:1.1.0'
335+
implementation 'androidx.preference:preference:1.1.1'
336336

337337
// UI
338338
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
339-
implementation 'com.google.android.material:material:1.2.0-alpha03'
339+
implementation 'com.google.android.material:material:1.3.0-alpha01'
340340
implementation 'me.gujun.android:span:1.7'
341341
implementation "io.noties.markwon:core:$markwon_version"
342342
implementation "io.noties.markwon:html:$markwon_version"
@@ -385,7 +385,7 @@ dependencies {
385385
// gplay flavor only
386386
// Warning: due to the exclude, Android Studio does not propose to upgrade. Uncomment next line to be proposed to upgrade
387387
// implementation 'com.google.firebase:firebase-messaging:20.0.0'
388-
gplayImplementation('com.google.firebase:firebase-messaging:20.0.0') {
388+
gplayImplementation('com.google.firebase:firebase-messaging:20.2.1') {
389389
exclude group: 'com.google.firebase', module: 'firebase-core'
390390
exclude group: 'com.google.firebase', module: 'firebase-analytics'
391391
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
@@ -394,7 +394,7 @@ dependencies {
394394
// OSS License, gplay flavor only
395395
gplayImplementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
396396

397-
implementation "androidx.emoji:emoji-appcompat:1.0.0"
397+
implementation "androidx.emoji:emoji-appcompat:1.1.0"
398398

399399
implementation 'com.github.BillCarsonFr:JsonViewer:0.5'
400400

0 commit comments

Comments
 (0)
Please sign in to comment.