package com.secondworld.sdk; import com.ald.channel.ChannelApplication; public class GTGameApp extends ChannelApplication { @Override public void onCreate() { super.onCreate(); GameAppProxy.create(this,new GTGamePlatform()); registerProxy(); // AldGameManger.getInstance().applicationOnCreate(this); } protected void registerProxy() { //主界面代理注册 GameActivity.registerProxy(GTGameMain.class); } }