implement/stub some stuff to make SmashHit launch

This commit is contained in:
Mis012
2022-11-24 16:05:38 +01:00
parent b0d6045254
commit 75187b01d5
8 changed files with 64 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
package android.os;
public interface Parcelable {
public static interface Creator<T> {}
}

View File

@@ -0,0 +1,9 @@
package android.os;
public final class PowerManager {
public final class WakeLock {}
public WakeLock newWakeLock(int levelAndFlags, String tag) {
return new WakeLock();
}
}