Skip to content

Commit

Permalink
Configure JVM arguments for test cases to address compatibility issue…
Browse files Browse the repository at this point in the history
…s with JDK 17 (#97)
  • Loading branch information
Mansi-mParticle authored May 15, 2024
1 parent 04350ea commit 037adb1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ android {
defaultConfig {
minSdkVersion 16
}
testOptions {
unitTests.all {
jvmArgs += ['--add-opens', 'java.base/java.lang=ALL-UNNAMED']
}
}
}

dependencies {
Expand Down

0 comments on commit 037adb1

Please sign in to comment.