Android debugging with minifyEnabled true

I am studying a problem that is only present with minifyEnabled, for true in Gradle.

I use logical operators for debugging, but the problem seems to be pretty deep. Is there anything I can do to make minifyEnabled set to true, but can I still use the Android Studio debugger?

I know that the answer is probably no, but I still wanted to ask.

In short: is it possible to run the Android Studio debugger from minifyEnabled to true ?

+8
android android-studio
source share
1 answer

No .. but you should avoid using it when building debugging. it will slow down your application. This is useful when releasing an APK for testing purposes, but before that, report using MinifyEnabled. follow this link. It is used to reduce code compression. (Unused codes will be compressed). Follow this link to find out more. Click here.

+1
source share

All Articles