blob: 3991a14526186b6ea7f161e73733ca5741f9a449 [file] [log] [blame]
Daniel Lehmann69bfe082010-03-04 21:25:03 -08001-keep class com.android.contacts.model.Sources {
2 public <init>(...);
3}
4
Hugo Hudsonc2f09c32011-07-30 16:31:28 +01005# 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
Daniel Lehmann3a53c732012-05-17 19:18:58 -070012# Any class or method annotated with NeededForTesting or NeededForReflection.
Chiao Cheng428f0082012-11-13 18:38:56 -080013-keep @com.android.contacts.common.test.NeededForTesting class *
Daniel Lehmann3a53c732012-05-17 19:18:58 -070014-keep @com.android.contacts.test.NeededForReflection class *
Flavio Lerda155c0702011-08-08 16:36:28 +010015-keepclassmembers class * {
Chiao Cheng428f0082012-11-13 18:38:56 -080016@com.android.contacts.common.test.NeededForTesting *;
Daniel Lehmann3a53c732012-05-17 19:18:58 -070017@com.android.contacts.test.NeededForReflection *;
Flavio Lerda155c0702011-08-08 16:36:28 +010018}
Makoto Onukia0290a42012-01-27 11:49:27 -080019
20-verbose