Daniel Lehmann | 69bfe08 | 2010-03-04 21:25:03 -0800 | [diff] [blame] | 1 | -keep class com.android.contacts.model.Sources { |
| 2 | public <init>(...); |
| 3 | } |
| 4 | |
| 5 | # TODO: Instead of keeping the following two functions we could as well just remove them completely |
| 6 | # as they are only used in test code |
| 7 | |
| 8 | -keep class com.android.contacts.model.EntityDelta { |
| 9 | public com.android.contacts.model.EntityDelta$ValuesDelta getSuperPrimaryEntry(java.lang.String,boolean); |
| 10 | } |
| 11 | |
| 12 | -keep class com.android.contacts.model.EntityDelta$ValuesDelta { |
| 13 | public android.content.ContentValues getAfter(); |
| 14 | } |
Daisuke Miyakawa | 6d4d66f | 2010-06-30 15:23:56 +0900 | [diff] [blame^] | 15 | |
| 16 | # Any methods whose name is '*ForTest' are preserved. |
| 17 | -keep class ** { |
| 18 | *** *ForTest(...); |
| 19 | } |