From a6abb4572c8e6e411a2b7328ba7d49f4e1e7bbba Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Tue, 16 Mar 2021 11:13:38 +0300 Subject: [PATCH] [android]: Enable NDK debug symbols Use SYMBOL_TABLE instead of FULL to meet Google Play limits. Closes #230 Signed-off-by: Roman Tsisyk --- android/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/build.gradle b/android/build.gradle index 4d91a5ff8a..1de91c05eb 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -437,6 +437,7 @@ android { signingConfig signingConfigs.mapswithme resValue 'string', 'app_id', android.defaultConfig.applicationId + applicationIdSuffix resValue 'string', 'app_name', project.ext.appName + applicationIdSuffix + ndk.debugSymbolLevel = 'SYMBOL_TABLE' } release { @@ -446,6 +447,7 @@ android { proguardFile('proguard-mwm.txt') resValue 'string', 'app_id', android.defaultConfig.applicationId resValue 'string', 'app_name', project.ext.appName + ndk.debugSymbolLevel = 'SYMBOL_TABLE' if (googleServiceEnabled) { firebaseCrashlytics { nativeSymbolUploadEnabled true @@ -460,6 +462,7 @@ android { matchingFallbacks = ['debug', 'release'] resValue 'string', 'app_id', android.defaultConfig.applicationId + applicationIdSuffix resValue 'string', 'app_name', project.ext.appName + applicationIdSuffix + ndk.debugSymbolLevel = 'SYMBOL_TABLE' if (googleServiceEnabled) { firebaseCrashlytics { nativeSymbolUploadEnabled true