Commit 496f57e216e4a61df78de334393c173adfc5c42e

Authored by “张旭”
1 parent f6ac8fb5

1.1.4.24.09.04.11 , 修复版本更新弹窗 ,点击更新不调整Appstore问题

metaCode.xcodeproj/project.pbxproj
... ... @@ -2632,7 +2632,7 @@
2632 2632 CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements;
2633 2633 CODE_SIGN_IDENTITY = "Apple Development";
2634 2634 CODE_SIGN_STYLE = Automatic;
2635   - CURRENT_PROJECT_VERSION = 1.1.3.24.09.02.17;
  2635 + CURRENT_PROJECT_VERSION = 1.1.4.24.09.04.11;
2636 2636 DEBUG_INFORMATION_FORMAT = dwarf;
2637 2637 DEVELOPMENT_TEAM = 94X49GG3ZW;
2638 2638 ENABLE_BITCODE = NO;
... ... @@ -2705,7 +2705,7 @@
2705 2705 "$(inherited)",
2706 2706 "@executable_path/Frameworks",
2707 2707 );
2708   - MARKETING_VERSION = 1.1.3;
  2708 + MARKETING_VERSION = 1.1.4;
2709 2709 OTHER_LDFLAGS = (
2710 2710 "$(inherited)",
2711 2711 "-all_load",
... ... @@ -2888,7 +2888,7 @@
2888 2888 CODE_SIGN_ENTITLEMENTS = metaCode/metaCode.entitlements;
2889 2889 CODE_SIGN_IDENTITY = "Apple Development";
2890 2890 CODE_SIGN_STYLE = Automatic;
2891   - CURRENT_PROJECT_VERSION = 1.1.3.24.09.02.17;
  2891 + CURRENT_PROJECT_VERSION = 1.1.4.24.09.04.11;
2892 2892 DEVELOPMENT_TEAM = 94X49GG3ZW;
2893 2893 ENABLE_BITCODE = NO;
2894 2894 ENABLE_MODULE_VERIFIER = NO;
... ... @@ -2960,7 +2960,7 @@
2960 2960 "$(inherited)",
2961 2961 "@executable_path/Frameworks",
2962 2962 );
2963   - MARKETING_VERSION = 1.1.3;
  2963 + MARKETING_VERSION = 1.1.4;
2964 2964 OTHER_LDFLAGS = (
2965 2965 "$(inherited)",
2966 2966 "-all_load",
... ...
metaCode/Classes/Main/MinePage/View/CNLiveMineInfoAlertView.swift
... ... @@ -557,7 +557,9 @@ class UpdataAlertView: UIView {
557 557 @objc func sendLoginActionMothod() -> Void {
558 558 print("跳转到appstore")
559 559 ConfigManager.shared.show_update = false
560   - showMessage(message: "跳转到AppStore")
  560 + let url = URL(string: "https://apps.apple.com/cn/app/%E5%85%83%E7%A0%81/id6449487297")
  561 + if UIApplication.shared.canOpenURL(url!) { UIApplication.shared.open(url!, options: [:], completionHandler: nil)
  562 + }
561 563 }
562 564  
563 565 @objc func setupCloseButtonAction() -> Void {
... ...