blob: d644f47887cdf3dd63afdd496395c58b747a8791 [file] [log] [blame]
Justin Klaassend770c052016-06-28 19:26:43 -07001# This is a configuration file for ProGuard.
2# http://proguard.sourceforge.net/index.html#manual/usage.html
3
Daisuke Miyakawac81adf52010-08-12 13:04:43 -07004# Keep all Fragments in this package, which are used by reflection.
Justin Klaassen478b5a82016-06-21 18:31:16 -07005-keep public class com.android.settings.** extends android.app.Fragment
Amith Yamasanib14e1e02010-11-02 09:52:29 -07006
Justin Klaassend770c052016-06-28 19:26:43 -07007# We want to keep methods in Activity that could be used in the XML attribute onClick.
Justin Klaassen478b5a82016-06-21 18:31:16 -07008-keepclassmembers class * extends android.app.Activity {
Justin Klaassenab704112016-08-01 16:16:40 -07009 public void *(android.view.View);
10 public void *(android.view.MenuItem);
Jean Chalard0824d312011-12-02 17:47:09 +090011}
Udam Saini8ef4c622016-02-03 17:31:11 -080012
Justin Klaassend770c052016-06-28 19:26:43 -070013# Keep setters in Views so that animations can still work.
14-keep public class * extends android.view.View {
15 public <init>(android.content.Context);
16 public <init>(android.content.Context, android.util.AttributeSet);
17 public <init>(android.content.Context, android.util.AttributeSet, int);
18
19 void set*(***);
20 *** get*();
21}
22
23# Keep classes that may be inflated from XML.
Justin Klaassen478b5a82016-06-21 18:31:16 -070024-keepclasseswithmembers class * {
Udam Saini8ef4c622016-02-03 17:31:11 -080025 public <init>(android.content.Context, android.util.AttributeSet);
Justin Klaassend770c052016-06-28 19:26:43 -070026}
27-keepclasseswithmembers class * {
Justin Klaassen478b5a82016-06-21 18:31:16 -070028 public <init>(android.content.Context, android.util.AttributeSet, int);
Anna Galusza16d58e72016-03-22 13:07:44 -070029}
Justin Klaassenab704112016-08-01 16:16:40 -070030
31# Keep annotated classes or class members.
32-keep @android.support.annotation.Keep class *
33-keepclassmembers class * {
34 @android.support.annotation.Keep *;
35}
36
37# Keep specific fields used via reflection.
38-keepclassmembers class * {
39 public static ** SEARCH_INDEX_DATA_PROVIDER;
40 public static ** SUMMARY_PROVIDER_FACTORY;
41}