hch
2022-04-07 28df0ed0e02c4c03ab99cc62ebb9f983dc9daf68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.secondworld.sdk;
 
import android.app.Application;
 
public class GTGameApp extends Application {
 
    @Override
    public void onCreate() {
        super.onCreate();
        GameAppProxy.create(this,new GTGamePlatform());
        registerProxy();
        initSdk();
    }
 
    protected void registerProxy() {
        //主界面代理注册
        GameActivity.registerProxy(GTGameMain.class);
        //AppsFlyerUtil.init();
    }
 
    protected void initSdk() {
        MySdkMgr.I.setListener();
    }
 
}