diff options
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/build.gradle.kts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index d67a07a191..56b6480210 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -126,6 +126,9 @@ android { dependsOn(getTasksByName("copyExtraAssets", true)) } + // Suppressing since we don't seem have much of an option than using this api. The impact should + // also be limited to tests. + @Suppress("UnstableApiUsage") testOptions { unitTests.all { test -> test.testLogging { @@ -137,7 +140,7 @@ android { } } - packagingOptions { + packaging { jniLibs.useLegacyPackaging = true resources { pickFirsts += setOf( |
