Will remove entirely after all references (esp. Play Services) are cleaned up. Test: atest FrameworksCoreTests:DeviceConfigTest Bug: 128902955 Change-Id: I1ab11fa2a2bbdb673841364c36b87a7356ba1e28
15 lines
636 B
Plaintext
15 lines
636 B
Plaintext
// Signature format: 2.0
|
|
package android.provider {
|
|
|
|
public final class DeviceConfig {
|
|
method @RequiresPermission("android.permission.READ_DEVICE_CONFIG") public static void addOnPropertyChangedListener(@NonNull String, @NonNull java.util.concurrent.Executor, @NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
|
|
method public static void removeOnPropertyChangedListener(@NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
|
|
}
|
|
|
|
public static interface DeviceConfig.OnPropertyChangedListener {
|
|
method public void onPropertyChanged(@NonNull String, @NonNull String, @Nullable String);
|
|
}
|
|
|
|
}
|
|
|