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