Is it possible to use proguard in debug mode?
If you want to make the whole build process easier for you, you should switch over to gradle and Android Studio IDE. Then you could easily add the following to your build.gradle file to run ProGuard: android { buildTypes { release { } debug { minifyEnabled true proguardFile ‘proguard-android.txt’ zipAlignEnabled true } } } This … Read more