You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
multiple additions and fixes for the Java APIs
Stuff needed for WhatsApp support
This commit is contained in:
@@ -7,7 +7,23 @@ public class ContactsContract {
|
||||
public static final class CommonDataKinds {
|
||||
|
||||
public static class Phone {
|
||||
public static final Uri CONTENT_URI = null;
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://com.android.contacts/phones");
|
||||
}
|
||||
}
|
||||
|
||||
public static final class Profile {
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://com.android.contacts/profile");
|
||||
}
|
||||
|
||||
public static final class Contacts {
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://com.android.contacts/contacts");
|
||||
}
|
||||
|
||||
public static final class RawContacts {
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://com.android.contacts/raw_contacts");
|
||||
}
|
||||
|
||||
public static final class Data {
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://com.android.contacts/data");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user