Skip to content

Commit 1c89dc8

Browse files
committed
test(deps): update android native deps
this surfaces a bunch of deprecation warnings which will need attention
1 parent 39c2ecb commit 1c89dc8

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

tests/android/app/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,6 @@ dependencies {
158158
implementation("androidx.swiperefreshlayout:swiperefreshlayout:${rootProject.ext.swiperefreshlayoutVersion}")
159159
implementation("androidx.vectordrawable:vectordrawable-animated:${rootProject.ext.vectordrawableVersion}")
160160
implementation("androidx.vectordrawable:vectordrawable:${rootProject.ext.vectordrawableVersion}")
161-
// Workaround build error relating to "barrierMargin" attribute not found
162-
// implementation "androidx.constraintlayout:constraintlayout:2.2.0-alpha13"
163161

164162
if (hermesEnabled.toBoolean()) {
165163
implementation("com.facebook.react:hermes-android")

tests/android/app/jacoco.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import groovy.transform.Memoized
33
apply plugin: 'jacoco'
44

55
jacoco {
6-
toolVersion = '0.8.12'
6+
toolVersion = '0.8.13'
77
}
88

99
android {
1010
jacoco {
11-
version = '0.8.12'
11+
version = '0.8.13'
1212
}
1313
}
1414

tests/android/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ buildscript {
66

77
ext.ndkVersion = "27.1.12297006"
88

9-
ext.kotlinVersion = '2.0.21' // https://kotlinlang.org/releases.html
10-
ext.supportLibVersion = '1.13.1' // this maps to androidx.core https://developer.android.com/jetpack/androidx/releases/core
9+
ext.kotlinVersion = '2.1.20' // https://kotlinlang.org/releases.html
10+
ext.supportLibVersion = '1.16.0' // this maps to androidx.core https://developer.android.com/jetpack/androidx/releases/core
1111
ext.appCompatVersion = '1.7.0' // this maps to androidx.appcompat https://developer.android.com/jetpack/androidx/releases/appcompat
1212
ext.supportVersion = ext.supportLibVersion
13-
ext.frescoVersion = '3.2.0' // https://github.com/facebook/fresco/releases
14-
ext.fragmentVersion = '1.8.1' // https://developer.android.com/jetpack/androidx/releases/fragment
13+
ext.frescoVersion = '3.6.0' // https://github.com/facebook/fresco/releases
14+
ext.fragmentVersion = '1.8.6' // https://developer.android.com/jetpack/androidx/releases/fragment
1515
ext.vectordrawableVersion = '1.2.0' // https://developer.android.com/jetpack/androidx/releases/vectordrawable
16-
ext.androidxAnnotationVersion = '1.8.0' // https://developer.android.com/jetpack/androidx/releases/annotation
16+
ext.androidxAnnotationVersion = '1.9.1' // https://developer.android.com/jetpack/androidx/releases/annotation
1717
ext.googlePlayServicesLocationVersion = '21.3.0' // https://developers.google.com/android/guides/setup
18-
ext.googlePlayServicesVersion = '18.5.0' // play-services-base
19-
ext.googlePlayServicesAuthVersion = '21.2.0' // play-services-auth
18+
ext.googlePlayServicesVersion = '18.7.0' // play-services-base
19+
ext.googlePlayServicesAuthVersion = '21.3.0' // play-services-auth
2020
ext.googlePlayServicesVisionVersion = '20.1.3' // play-services-vision
2121
ext.googlePlayServicesIidVersion = '17.0.0' // play-services-iid - deprecated, device-info only
2222
ext.mediaCompatVersion = '1.7.0' // https://developer.android.com/jetpack/androidx/releases/media
@@ -32,7 +32,7 @@ buildscript {
3232
}
3333
dependencies {
3434
classpath 'com.google.gms:google-services:4.4.2' // https://developers.google.com/android/guides/google-services-plugin
35-
classpath 'com.android.tools.build:gradle:8.5.0' // https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google
35+
classpath 'com.android.tools.build:gradle:8.9.2' // https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google
3636
classpath("com.facebook.react:react-native-gradle-plugin")
3737
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
3838
classpath 'com.google.firebase:perf-plugin:1.4.2'
@@ -75,7 +75,7 @@ subprojects {
7575
android {
7676
// Instrument all our modules for coverage generation
7777
buildTypes.debug.testCoverageEnabled = true
78-
jacoco.version = '0.8.12'
78+
jacoco.version = '0.8.13'
7979
testOptions.unitTests.includeAndroidResources = true
8080

8181
// Make sure our project are run through basic lint checks

0 commit comments

Comments
 (0)