20 lines
453 B
Plaintext
20 lines
453 B
Plaintext
package com.tuyoo.sdk;
|
|
|
|
import android.content.Context;
|
|
|
|
import com.tuyoo.sdk.sdk_inter_layer_unity.UnityInterface;
|
|
|
|
public class Application extends ${0} {
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
super.onCreate();
|
|
UnityInterface.onApplicationCreate(this);
|
|
}
|
|
|
|
@Override
|
|
protected void attachBaseContext(Context base) {
|
|
super.attachBaseContext(base);
|
|
UnityInterface.onAttachBaseContext(this, base);
|
|
}
|
|
} |