Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Commit dc131b4

Browse files
author
CircleCi
committed
master: Updated various dependencies
1 parent e44ef11 commit dc131b4

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,25 @@ dependencies {
6464
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
6565
implementation 'com.google.android.material:material:1.0.0'
6666
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
67-
implementation 'com.google.firebase:firebase-core:16.0.9'
68-
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
67+
implementation 'com.google.firebase:firebase-core:17.2.0'
68+
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
6969

70-
kapt 'androidx.lifecycle:lifecycle-compiler:2.0.0'
70+
kapt 'androidx.lifecycle:lifecycle-compiler:2.1.0'
7171

7272
//region Local Unit Tests
7373
testImplementation 'junit:junit:4.12'
74-
testImplementation 'org.mockito:mockito-core:2.24.5'
74+
testImplementation 'org.mockito:mockito-core:2.28.2'
7575
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
7676
testImplementation 'androidx.test:runner:1.2.0'
77-
testImplementation 'androidx.arch.core:core-testing:2.0.0'
77+
testImplementation 'androidx.arch.core:core-testing:2.1.0'
7878
//endregion
7979

8080
//region Instrumented Tests
8181
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
8282
androidTestImplementation 'androidx.test:runner:1.2.0'
83-
androidTestImplementation 'org.mockito:mockito-android:2.24.5'
83+
androidTestImplementation 'org.mockito:mockito-android:2.28.2'
8484
androidTestImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
85-
androidTestImplementation 'androidx.arch.core:core-testing:2.0.0'
85+
androidTestImplementation 'androidx.arch.core:core-testing:2.1.0'
8686
// UI testing with Espresso
8787
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
8888
androidTestImplementation 'androidx.test:rules:1.2.0'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.4.1'
8+
classpath 'com.android.tools.build:gradle:3.5.1'
99
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1010
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
11-
classpath 'com.google.gms:google-services:4.2.0'
11+
classpath 'com.google.gms:google-services:4.3.2'
1212
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1313
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1414
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

kbarcode/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,28 +40,28 @@ android {
4040

4141
dependencies {
4242
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
43-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1'
43+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2'
4444
implementation 'com.jakewharton.timber:timber:4.7.1'
45-
implementation 'com.google.firebase:firebase-ml-vision:20.0.0'
46-
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
45+
implementation 'com.google.firebase:firebase-ml-vision:21.0.0'
46+
implementation 'androidx.lifecycle:lifecycle-livedata:2.1.0'
4747

48-
kapt 'androidx.lifecycle:lifecycle-compiler:2.0.0'
48+
kapt 'androidx.lifecycle:lifecycle-compiler:2.1.0'
4949

5050
//region Local Unit Tests
5151
testImplementation 'junit:junit:4.12'
52-
testImplementation 'org.mockito:mockito-core:2.24.5'
52+
testImplementation 'org.mockito:mockito-core:2.28.2'
5353
testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
5454
testImplementation 'androidx.test:runner:1.2.0'
55-
testImplementation 'androidx.arch.core:core-testing:2.0.0'
56-
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.1'
55+
testImplementation 'androidx.arch.core:core-testing:2.1.0'
56+
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.2'
5757
//endregion
5858

5959
//region Instrumented Tests
6060
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
6161
androidTestImplementation 'androidx.test:runner:1.2.0'
62-
androidTestImplementation 'org.mockito:mockito-android:2.24.5'
62+
androidTestImplementation 'org.mockito:mockito-android:2.28.2'
6363
androidTestImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
64-
androidTestImplementation 'androidx.arch.core:core-testing:2.0.0'
64+
androidTestImplementation 'androidx.arch.core:core-testing:2.1.0'
6565
// UI testing with Espresso
6666
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
6767
//endregion
@@ -80,7 +80,7 @@ ext {
8080
siteUrl = 'https://github.com/brightec/KBarcode'
8181
gitUrl = 'https://github.com/brightec/KBarcode.git'
8282

83-
libraryVersion = '1.0.3'
83+
libraryVersion = '1.0.4'
8484

8585
developerId = 'alistairsykes'
8686
developerName = 'Alistair Sykes'

0 commit comments

Comments
 (0)