diff --git a/app/src/main/java/com/gh/gamecenter/SplashScreenActivity.kt b/app/src/main/java/com/gh/gamecenter/SplashScreenActivity.kt index 21ae49c7b8..f9cf6cf817 100644 --- a/app/src/main/java/com/gh/gamecenter/SplashScreenActivity.kt +++ b/app/src/main/java/com/gh/gamecenter/SplashScreenActivity.kt @@ -297,19 +297,7 @@ class SplashScreenActivity : BaseActivity() { private fun doFlavorInit() { HaloApp.getInstance().flavorProvider.init(HaloApp.getInstance(), this, PkgHelper.getActivateRatio()) - val whiteListChannel = arrayListOf( - "GH_206", - "KS-GHZS-KY1", - "KS-GHZS-MC1", - "GDT_GHZS_MC1", - "T11-GH-APPDY-ZC01", - "T7-GH-APPDY-KY03", - "T8-GH-APPUX-KY04", - "T1-GHZS-MC01", - "T4-GHZS-MC03" - ) - - if (whiteListChannel.contains(HaloApp.getInstance().channel) || PackageFlavorHelper.IS_TEST_FLAVOR) { + if (HaloApp.getInstance().channel == "GH_206" || PackageFlavorHelper.IS_TEST_FLAVOR) { SensorsBridge.init(HaloApp.getInstance(), HaloApp.getInstance().channel) } }