liuxue
2021-04-28 7945b97c50d99e23b57e4b359e6c623bde1a8a25
SdkProject/channel/test/java/com/secondworld/sdk/TestApp.java
@@ -1,9 +1,14 @@
package com.secondworld.sdk;
public class TestApp extends GameApp {
import android.app.Application;
public class TestApp extends Application {
    @Override
    protected void initPlatformDiff(){
        PlatformDiff.I = new TestPlatform();
    public void onCreate() {
        super.onCreate();
        GameAppProxy.create(this,new TestPlatform());
        GameActivity.registerProxy(GameActivityProxy.class);
    }
}