Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 1 | -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 Cheng | 217d1ed | 2012-11-13 18:38:34 -0800 | [diff] [blame] | 13 | -keep @com.android.contacts.common.test.NeededForTesting class * |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 14 | -keep @com.android.contacts.test.NeededForReflection class * |
| 15 | -keepclassmembers class * { |
Chiao Cheng | 217d1ed | 2012-11-13 18:38:34 -0800 | [diff] [blame] | 16 | @com.android.contacts.common.test.NeededForTesting *; |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 17 | @com.android.contacts.test.NeededForReflection *; |
| 18 | } |
| 19 | |
| 20 | -verbose |