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
From my experience, is not good having too different configurations between debug and release, and this is especially true when Proguard is enabled only in one.
We found safer have minifyEnabled true also for the debug build, and turn off just the obfuscation (with a specific proguard-rules-debug.pro file).
You don't want to have your app running fine on your device while crashing on the user phone because you miss something in ProGuard configuration.
The text was updated successfully, but these errors were encountered:
From my experience, is not good having too different configurations between debug and release, and this is especially true when Proguard is enabled only in one.
We found safer have
minifyEnabled true
also for the debug build, and turn off just the obfuscation (with a specificproguard-rules-debug.pro
file).You don't want to have your app running fine on your device while crashing on the user phone because you miss something in ProGuard configuration.
The text was updated successfully, but these errors were encountered: