client_Hale
2018-09-07 e55e2c63390a5140ac6eae581703ff80b959f6a4
Project/app/src/main/java/com/secondworld/univeralsdk/MainActivity.java
@@ -41,11 +41,17 @@
    }
    @Override
    public void onWindowFocusChanged(boolean b)
    {
        super.onWindowFocusChanged(b);
        H2EngineSDK.onWindowFocusChanged(b);
    }
    @Override
    protected void onNewIntent(Intent intent)
    {
        super.onNewIntent(intent);
        H2EngineSDK.onNewIntent(this, intent);
        LogUtil.i(TAG, "onNewIntent");
    }
    @Override
@@ -61,7 +67,6 @@
        H2EngineSDK.onConfigurationChanged(newConfig);
        super.onConfigurationChanged(newConfig);
        LogUtil.i(TAG, "onConfigurationChanged");
    }
    @Override
@@ -70,7 +75,6 @@
        H2EngineSDK.onStart(this);
        super.onStart();
        LogUtil.i(TAG, "onStart");
    }
    @Override
@@ -80,7 +84,6 @@
        H2EngineSDK.onStop(this);
        super.onStop();
        LogUtil.i(TAG, "onStop");
    }
    @Override
@@ -90,7 +93,6 @@
        H2EngineSDK.onResume(this);
        super.onResume();
        LogUtil.i(TAG, "onResume");
        // 检测本地存储权限是否有, 没有的话要提示用户
        if (PermissionChecker.checkPermission(this,
@@ -143,7 +145,6 @@
        H2EngineSDK.onPause(this);
        super.onPause();
        LogUtil.i(TAG, "onPause");
    }
    @Override
@@ -152,7 +153,6 @@
        H2EngineSDK.onDestroy(this);
        super.onDestroy();
        LogUtil.i(TAG, "onDestroy");
    }
    @Override
@@ -161,7 +161,6 @@
        H2EngineSDK.onRestart(this);
        super.onRestart();
        LogUtil.i(TAG, "onRestart");
    }
}