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
Mostly taken from https://www.sqlite.org/android which is forked from AOSPs implementation
19 lines
550 B
Java
19 lines
550 B
Java
package android.content;
|
|
|
|
import android.database.ContentObserver;
|
|
import android.net.Uri;
|
|
|
|
public class ContentResolver {
|
|
public final void registerContentObserver(Uri uri, boolean notifyForDescendants, ContentObserver observer) {
|
|
}
|
|
public final void unregisterContentObserver(ContentObserver observer) {
|
|
}
|
|
public void notifyChange(Uri uri, ContentObserver observer) {
|
|
}
|
|
public int getUserId() {
|
|
return 0;
|
|
}
|
|
public final void registerContentObserver(Uri uri, boolean notifyForDescendants, ContentObserver observer, int userHandle) {
|
|
}
|
|
}
|