summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2022-08-25 13:41:47 +0200
committerEmīls Piņķis <emils@mullvad.net>2022-09-01 14:29:37 +0200
commitf379418f659e2bb66206501ce8a94426865138f2 (patch)
treef5d03962ebb28fe7c913cc15524dafd236919a3d /android
parent47875ccb743e4ab7d89c8da0edf3bb27a484559b (diff)
downloadmullvadvpn-f379418f659e2bb66206501ce8a94426865138f2.tar.xz
mullvadvpn-f379418f659e2bb66206501ce8a94426865138f2.zip
Don't strip daemon shared object in development builds
To help with debugging panics in the dameon, the dev builds shouldn't strip the debug symbols from the shared object. However, doing this blows up the gradle build so it's memory limit needs to be bumped too.
Diffstat (limited to 'android')
-rw-r--r--android/gradle.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/gradle.properties b/android/gradle.properties
index 0f37cf9843..de2e2a73d1 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,4 +1,4 @@
android.enableJetifier=true
android.useAndroidX=true
kotlin.code.style=official
-org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
+org.gradle.jvmargs=-Xmx8192M -Dkotlin.daemon.jvm.options\="-Xmx8192M"