Hi,
We would like to strip out all the verbose and debug logs in the entire 
build.
We first tried this with a test app adding LOCAL_PROGUARD_FLAG_FILES to 
Android.mk 

LOCAL_PROGUARD_FLAG_FILES := proguard.flags

LOCAL_PROGUARD_ENABLED := optimization 


proguard.flags content:

-assumenosideeffects class android.util.Log {
    public static int v(...);
    public static int d(...);
}


It didn't work and all what I could find is that Jack doesn't do optimization 
and ignores "-assumenosideeffects" from "https://source.android.com/setup/jack";


Using the command "mm -B WITH_DEXPREOPT=false" to build. 


Is there a way to achieve this?

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to