Files
app_Settings/proguard.flags
Justin Klaassen 478b5a8cbe Cleanup proguard.flags
Bug: 29574900

Proguard flags no longer specify specific packages or classes which
means they should not need to be updated everytime a new package or
class is added.

Change-Id: I2c2b501e904133d517d2467bd9f47c9577d9b446
2016-06-22 19:10:53 +00:00

13 lines
444 B
Plaintext

# Keep all Fragments in this package, which are used by reflection.
-keep public class com.android.settings.** extends android.app.Fragment
# Keep click handlers.
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
public <init>(android.content.Context, android.util.AttributeSet, int);
}