The stub method `SystemProperties.set` has wrong signature and is unable to set read-only system properties.
8 lines
174 B
Java
8 lines
174 B
Java
package android.os;
|
|
|
|
public class SystemProperties {
|
|
public static String get(String key, String def) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
}
|