hch
2021-01-13 6a1741b5b5bfc79402cf57cbb219f55a79c94d97
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
26
package com.secondworld.sdk;
 
public class GTGameApp extends GameApp {
 
 
    @Override
    protected void registerProxy() {
        super.registerProxy();
        //主界面代理注册
        GameActivity.registerProxy(GTGameMain.class);
        AppsFlyerUtil.init();
    }
 
    @Override
    protected void initPlatformDiff() {
        PlatformDiff.I = new GTGamePlatform();
    }
 
    @Override
    protected void initSdk() {
        super.initSdk();
        MySdkMgr.I.setListener();
    }
 
 
}