|
@@ -9,6 +9,9 @@
|
|
|
{
|
|
|
switch(LauncherConfig.ChannelId)
|
|
|
{
|
|
|
+ case (int)ChannelID.AppStore:
|
|
|
+ QDAppStoreManager.Init();
|
|
|
+ break;
|
|
|
default:
|
|
|
|
|
|
break;
|
|
@@ -20,9 +23,6 @@
|
|
|
ViewManager.Show<ModalStatusView>("正在初始化...");
|
|
|
switch (LauncherConfig.ChannelId)
|
|
|
{
|
|
|
- case (int)ChannelID.AppStore:
|
|
|
- QDAppStore.InitPlatform();
|
|
|
- break;
|
|
|
default:
|
|
|
EventAgent.DispatchEvent(ConstMessage.ON_PLATFORM_SDK_INITED, true);
|
|
|
break;
|
|
@@ -60,7 +60,7 @@
|
|
|
switch (LauncherConfig.ChannelId)
|
|
|
{
|
|
|
case (int)ChannelID.AppStore:
|
|
|
- QDAppStore.OnEnterGame();
|
|
|
+ QDAppStoreManager.OnEnterGame();
|
|
|
break;
|
|
|
default:
|
|
|
|
|
@@ -84,7 +84,7 @@
|
|
|
switch (LauncherConfig.ChannelId)
|
|
|
{
|
|
|
case (int)ChannelID.AppStore:
|
|
|
- QDAppStore.Pay(buyID, count, orderID, Price);
|
|
|
+ QDAppStoreManager.Pay(buyID, count, orderID, Price);
|
|
|
break;
|
|
|
default:
|
|
|
|