blob: 3991a14526186b6ea7f161e73733ca5741f9a449 [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001-keep class com.android.contacts.model.Sources {
2 public <init>(...);
3}
4
5# Xml files containing onClick (menus and layouts) require that proguard not
6# remove their handlers.
7-keepclassmembers class * extends android.app.Activity {
8 public void *(android.view.View);
9 public void *(android.view.MenuItem);
10}
11
12# Any class or method annotated with NeededForTesting or NeededForReflection.
Chiao Cheng217d1ed2012-11-13 18:38:34 -080013-keep @com.android.contacts.common.test.NeededForTesting class *
Chiao Cheng94b10b52012-08-17 16:59:12 -070014-keep @com.android.contacts.test.NeededForReflection class *
15-keepclassmembers class * {
Chiao Cheng217d1ed2012-11-13 18:38:34 -080016@com.android.contacts.common.test.NeededForTesting *;
Chiao Cheng94b10b52012-08-17 16:59:12 -070017@com.android.contacts.test.NeededForReflection *;
18}
19
20-verbose