summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-01-24 14:45:51 +0100
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-01-27 11:03:07 +0100
commitca687173e28a4b9acf69b1b99e9ee83da9ebd40a (patch)
tree746797f5cf8c28d87aa79b428bd643340b2330dc /android
parentdd5469dcb24dc546274528357b8ac2ec52a545a9 (diff)
downloadmullvadvpn-ca687173e28a4b9acf69b1b99e9ee83da9ebd40a.tar.xz
mullvadvpn-ca687173e28a4b9acf69b1b99e9ee83da9ebd40a.zip
Remove debug symbols for aab bundles
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 0e1f9ffa62..4d8f11f5c1 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -58,6 +58,10 @@ android {
warningsAsErrors = true
checkDependencies = true
}
+
+ if(isReleaseBuild()) {
+ ndk { debugSymbolLevel = "none" }
+ }
}
playConfigs { register("playStagemoleRelease") { enabled = true } }