|
@@ -39,6 +39,7 @@ namespace GFGGame
|
|
public static string apkVersion;
|
|
public static string apkVersion;
|
|
public static int serverStatus;
|
|
public static int serverStatus;
|
|
public static int onDebug;
|
|
public static int onDebug;
|
|
|
|
+ public static string manifest_v;
|
|
public static string privacy_v;
|
|
public static string privacy_v;
|
|
|
|
|
|
public static void InitScriptCompilation()
|
|
public static void InitScriptCompilation()
|
|
@@ -85,6 +86,7 @@ namespace GFGGame
|
|
LauncherConfig.apkVersion = result.apkVersion;
|
|
LauncherConfig.apkVersion = result.apkVersion;
|
|
LauncherConfig.serverStatus = int.Parse(result.serverStatus);
|
|
LauncherConfig.serverStatus = int.Parse(result.serverStatus);
|
|
LauncherConfig.onDebug = int.Parse(result.onDebug);
|
|
LauncherConfig.onDebug = int.Parse(result.onDebug);
|
|
|
|
+ LauncherConfig.manifest_v = result.manifest_v;
|
|
LauncherConfig.privacy_v = result.privacy_v;
|
|
LauncherConfig.privacy_v = result.privacy_v;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -95,6 +97,7 @@ namespace GFGGame
|
|
public string apkVersion;
|
|
public string apkVersion;
|
|
public string serverStatus;
|
|
public string serverStatus;
|
|
public string onDebug;
|
|
public string onDebug;
|
|
|
|
+ public string manifest_v;
|
|
public string privacy_v;
|
|
public string privacy_v;
|
|
}
|
|
}
|
|
|
|
|