You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everybody, I have been a struggle with the unreadable firebase crashlytic report for quite some time.
I have already asked my question on stackoverflow, but I have no response.
Since we obfuscated our code on the Android side, we cannot get readable reports.
I have mentioned two* methods to get readable on stackoverflow. However, I have not reached success.
Additionally to StackOverflow, I have added to proguard : android.enableR8.fullMode=true & updated
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
// -------------------------------- These lines are added --------------------------------
firebaseCrashlytics {
mappingFileUploadEnabled true
nativeSymbolUploadEnabled true
unstrippedNativeLibsDir "build/app/intermediates/merged_native_libs/release/out/lib"
}
ndk {
debugSymbolLevel 'FULL'
}
// -------------------------------- These lines are added --------------------------------
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
firebaseCrashlytics {
mappingFileUploadEnabled true
}
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everybody, I have been a struggle with the
unreadable firebase crashlytic
report for quite some time.I have already asked my question on stackoverflow, but I have no response.
Since we obfuscated our code on the Android side, we cannot get readable reports.
I have mentioned two* methods to get readable on stackoverflow. However, I have not reached success.
Additionally to StackOverflow, I have added to
proguard
:android.enableR8.fullMode=true
& updatedMy general config:
pubspec
proguard
gradle.properties
Beta Was this translation helpful? Give feedback.
All reactions