|
@@ -76,7 +76,18 @@ namespace GFGGame
|
|
|
|
|
|
private static void DownloadApk()
|
|
|
{
|
|
|
- Alert.Show("需要安装新的安装包,请联系研发获取。")
|
|
|
+ string message = "需要安装新的安装包,请联系研发获取。";
|
|
|
+#if PT_IOS
|
|
|
+ if(LauncherConfig.serverStatus == 2)
|
|
|
+ {
|
|
|
+ message = "有新的版本,请前往TestFlight更新。";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ message = "有新的版本,请前往AppStore更新。";
|
|
|
+ }
|
|
|
+#endif
|
|
|
+ Alert.Show("message")
|
|
|
.SetLeftButton(true, "知道了", (data) =>
|
|
|
{
|
|
|
|