Skip to content

Commit 7f81b44

Browse files
committed
Issue mozilla-mobile#2338: Update app/build dependencies with no breaking changes.
I was unable to update detekt because there were too many errors I don't have time to deal with right now.
1 parent 5505203 commit 7f81b44

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ configurations {
114114
}
115115

116116
dependencies {
117-
implementation 'io.sentry:sentry-android:1.7.14'
117+
implementation 'io.sentry:sentry-android:1.7.21'
118118

119119
implementation "androidx.appcompat:appcompat:1.0.2"
120120
implementation "androidx.legacy:legacy-support-v4:$androidx_version"
@@ -123,7 +123,7 @@ dependencies {
123123
implementation "com.google.android.material:material:$androidx_version"
124124
implementation "androidx.leanback:leanback:$androidx_version"
125125
implementation "androidx.recyclerview:recyclerview:$androidx_version"
126-
implementation "androidx.core:core-ktx:1.0.1"
126+
implementation "androidx.core:core-ktx:1.0.2"
127127
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
128128
implementation "androidx.work:work-runtime-ktx:$androidx_work_version"
129129
implementation 'com.squareup.picasso:picasso:2.71828'
@@ -173,7 +173,7 @@ dependencies {
173173

174174
testImplementation "androidx.test.ext:junit:$junit"
175175
testImplementation "org.robolectric:robolectric:$robolectric_version"
176-
testImplementation 'org.mockito:mockito-core:2.23.0'
176+
testImplementation 'org.mockito:mockito-core:2.24.5'
177177
testImplementation "io.mockk:mockk:1.9.1"
178178

179179
testImplementation "androidx.test:core:$test_core"

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
buildscript {
66
ext.androidx_version = '1.0.0'
77
ext.architecture_components_version = '2.0.0'
8-
ext.kotlin_version = '1.3.30'
8+
ext.kotlin_version = '1.3.31'
99
ext.coroutines_version = '1.0.1'
1010
ext.moz_components_version = '0.54.0'
1111
ext.androidx_work_version = '2.0.1'
@@ -34,7 +34,7 @@ buildscript {
3434
dependencies {
3535
// If you ever see strange Gradle behavior that looks related to the version,
3636
// double check that this matches build.gradle.kts
37-
classpath 'com.android.tools.build:gradle:3.3.2'
37+
classpath 'com.android.tools.build:gradle:3.4.1'
3838

3939
classpath 'org.ajoberstar:grgit:1.5.0'
4040
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
@@ -75,12 +75,12 @@ configurations {
7575
}
7676

7777
dependencies {
78-
ktlint "com.github.shyiko:ktlint:0.27.0"
78+
ktlint "com.pinterest:ktlint:0.33.0"
7979
}
8080

8181
task ktlint(type: JavaExec, group: "verification") {
8282
description = "Check Kotlin code style."
8383
classpath = configurations.ktlint
84-
main = "com.github.shyiko.ktlint.Main"
84+
main = "com.pinterest.ktlint.Main"
8585
args "**/*.kt"
8686
}

buildSrc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ repositories {
1313

1414
dependencies {
1515
// We cannot share dependencies with the project because we can't access buildscript.ext.
16-
implementation("com.android.tools.build:gradle:3.3.2")
16+
implementation("com.android.tools.build:gradle:3.4.1")
1717
}

0 commit comments

Comments
 (0)