You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
implement/stub some stuff to make SmashHit launch
This commit is contained in:
14
src/api-impl/android/accounts/Account.java
Normal file
14
src/api-impl/android/accounts/Account.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user