blob: 577144b5306a93b05a90e02c3d678317e776811c [file] [log] [blame]
Daniel Lehmann69bfe082010-03-04 21:25:03 -08001-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 Miyakawa6d4d66f2010-06-30 15:23:56 +090015
16# Any methods whose name is '*ForTest' are preserved.
17-keep class ** {
18 *** *ForTest(...);
19}