Files
TEESimulator-RS/stub/src/main/java/android/os/SystemProperties.java
T
JingMatrixandGitHub 4f608247fe Set boot digest via resetprop (#22)
The stub method `SystemProperties.set` has wrong signature and is unable to set read-only system properties.
2025-11-28 13:11:54 +01:00

8 lines
174 B
Java

package android.os;
public class SystemProperties {
public static String get(String key, String def) {
throw new UnsupportedOperationException("STUB!");
}
}