I realize all my logging effect (Log.i
) disappear, when I deploy my app through APK using Android Tools -> Export Signed Application Package...
Even after my ProGuard had commented out logging related configuration
#-assumenosideeffects class android.util.Log {
# public static *** d(...);
# public static *** v(...);
# public static *** i(...);
#}
Is there any settings I had missed out? I wish logging effect is still there, even I export my ProGuard processed as a APK file.
This is because I would like to debug some crashing problem caused by ProGuard.