|
@@ -25,6 +25,7 @@ namespace GFGGame
|
|
public static string logApiUrl;
|
|
public static string logApiUrl;
|
|
public static string apkVersion;
|
|
public static string apkVersion;
|
|
public static int serverStatus;
|
|
public static int serverStatus;
|
|
|
|
+ public static int onDebug;
|
|
|
|
|
|
public static string resKey
|
|
public static string resKey
|
|
{
|
|
{
|
|
@@ -67,6 +68,7 @@ namespace GFGGame
|
|
LauncherConfig.apkVersion = result.apkVersion;
|
|
LauncherConfig.apkVersion = result.apkVersion;
|
|
LauncherConfig.serverStatus = int.Parse(result.serverStatus);
|
|
LauncherConfig.serverStatus = int.Parse(result.serverStatus);
|
|
LauncherConfig.platformId = int.Parse(result.platformId);
|
|
LauncherConfig.platformId = int.Parse(result.platformId);
|
|
|
|
+ LauncherConfig.onDebug = int.Parse(result.onDebug);
|
|
ET.Log.Debug($"platformId {LauncherConfig.platformId}");
|
|
ET.Log.Debug($"platformId {LauncherConfig.platformId}");
|
|
}
|
|
}
|
|
|
|
|
|
@@ -79,6 +81,7 @@ namespace GFGGame
|
|
public string apkVersion;
|
|
public string apkVersion;
|
|
public string serverStatus;
|
|
public string serverStatus;
|
|
public string platformId;
|
|
public string platformId;
|
|
|
|
+ public string onDebug;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|