I am trying to delete journal entries without success. Other SO answers to the same question apply to Eclipse or to the old Android Studio IDE (Intellij).
build.gradle
buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } ...
proguard-rules.pro
-assumenosideeffects class android.util.Log { public static *** d(...); public static *** v(...); public static *** i(...); public static *** w(...); public static *** e(...); }
I can still see the log instructions after getting the source code from the signed application-release.apk
android proguard logcat
momo
source share