Home | History | Annotate | Download | only in ContactsProvider
      1 -keep class com.android.providers.contacts.ContactsDatabaseHelper {
      2   <init>(...);
      3 }
      4 
      5 -keep class com.android.vcard.VCardComposer {
      6   boolean init();
      7   int getCount();
      8 }
      9 
     10 # Any methods whose name is '*ForTest' are preserved.
     11 -keep class ** {
     12   *** *ForTest(...);
     13 }
     14