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

@@ -0,0 +1,14 @@
package android.accounts;
import android.os.Parcelable;
public class Account implements Parcelable {
public static final Creator<Account> CREATOR = null;
public final String name;
public final String type;
public Account(String name, String type) {
this.name = name;
this.type = type;
}
}