diff options
| author | Albin <albin@mullvad.net> | 2023-08-05 13:34:18 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-08-05 13:34:18 +0200 |
| commit | 4f6b61c3e4435afaabe1110a52c68c679c8df25c (patch) | |
| tree | d6eb5d62ea161dc0471dbddd992a4815a175ed63 /android/app | |
| parent | 2f6f85c086a5eb94cb3a6e172830a34fe25cbef8 (diff) | |
| parent | 106d51dce8d6d8abdadb55336d153cad044ebb54 (diff) | |
| download | mullvadvpn-4f6b61c3e4435afaabe1110a52c68c679c8df25c.tar.xz mullvadvpn-4f6b61c3e4435afaabe1110a52c68c679c8df25c.zip | |
Merge branch 'cleanup-gradle-configuration'
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( |
