Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ dependencies {
//
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"

testImplementation 'org.mockito:mockito-core:5.8.0'
androidTestImplementation 'org.mockito:mockito-android:5.8.0'
testImplementation 'org.mockito:mockito-core:5.23.0'
androidTestImplementation 'org.mockito:mockito-android:5.23.0'
Comment thread
nickolas-dimitrakas marked this conversation as resolved.
testImplementation 'androidx.annotation:annotation:1.9.1'

testImplementation 'junit:junit:4.13.2'
Expand All @@ -139,3 +139,14 @@ dependencies {
testCompileOnly 'com.mparticle:android-rokt-kit:6.0.2'
testImplementation("com.facebook.react:react-android:+")
}

configurations.all {
resolutionStrategy {
// mockito 5.23.0 pulls byte-buddy 1.17.7, which ships a META-INF/versions/24
// multi-release overlay that this AGP's Jetifier can't parse ("Unsupported
// class file major version 68"). 1.15.x is the last line without that overlay
// and is still API-compatible with mockito's usage.
force 'net.bytebuddy:byte-buddy:1.15.11'
force 'net.bytebuddy:byte-buddy-agent:1.15.11'
}
}
Loading