From 5dd0423c5903f4c1c8ec54b21676663b7ac63d50 Mon Sep 17 00:00:00 2001 From: Liuyf Date: Tue, 7 Jan 2025 16:44:55 +0800 Subject: [PATCH 1/5] =?UTF-8?q?fix:=20=E9=9A=90=E7=A7=81=E5=90=88=E8=A7=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tools/appFirstEnterHandle.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/tools/appFirstEnterHandle.dart b/lib/tools/appFirstEnterHandle.dart index a465063b..f18faea1 100755 --- a/lib/tools/appFirstEnterHandle.dart +++ b/lib/tools/appFirstEnterHandle.dart @@ -104,7 +104,6 @@ class AppFirstEnterHandle { ), TextSpan( text: '的全部内容。点击“同意”即表示您同意并接受全部条款。若选择不同意,将无法使用我们的产品和服务,并会退出应用。' - .tr .tr), ], ), @@ -175,7 +174,6 @@ class AppFirstEnterHandle { ), TextSpan( text: '的全部内容。点击“同意”即表示您同意并接受全部条款。若选择不同意,将无法使用我们的产品和服务,并会退出应用。' - .tr .tr), ], ), From f21e49ae68c40e156d3725ca22562e3fcf62ef16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=B0=91=E9=98=B3?= <786612630@qq.com> Date: Wed, 8 Jan 2025 18:03:30 +0800 Subject: [PATCH 2/5] =?UTF-8?q?fix:=201=E3=80=81=E4=BF=AE=E5=A4=8Dwifi?= =?UTF-8?q?=E9=94=81=E3=80=81=E7=BD=91=E5=85=B3=E9=85=8D=E7=BD=91=E4=BC=A0?= =?UTF-8?q?=E5=85=A5=E7=9A=84gatewayJson=E9=95=BF=E5=BA=A61=E5=AD=97?= =?UTF-8?q?=E8=8A=82=E6=94=B9=E4=B8=BA2=E5=AD=97=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/blue/io_gateway/io_gateway_configuringWifi.dart | 9 ++++++++- lib/main_local.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/blue/io_gateway/io_gateway_configuringWifi.dart b/lib/blue/io_gateway/io_gateway_configuringWifi.dart index 9708c6bf..7d6a5ede 100644 --- a/lib/blue/io_gateway/io_gateway_configuringWifi.dart +++ b/lib/blue/io_gateway/io_gateway_configuringWifi.dart @@ -1,6 +1,8 @@ // 网关配网 import 'dart:convert'; +import 'package:star_lock/app_settings/app_settings.dart'; + import '../io_reply.dart'; import '../io_sender.dart'; import '../io_tool/io_tool.dart'; @@ -47,7 +49,12 @@ class GatewayConfiguringWifiCommand extends SenderProtocol { //gatewayConfigurationStr final int clientIdLength = utf8.encode(gatewayConfigurationStr!).length; - subData.add(clientIdLength); + final double clientIdLengthDouble = clientIdLength / 256; + final int clientIdLengthDoubleType1 = clientIdLengthDouble.toInt(); + final int clientIdLengthDoubleType2 = clientIdLength % 256; + // AppLog.log('gatewayConfigurationStr!:$gatewayConfigurationStr! clientIdLength:$clientIdLength clientIdLengthDouble:$clientIdLengthDouble clientIdLengthDoubleType1:$clientIdLengthDoubleType1 clientIdLengthDoubleType2:$clientIdLengthDoubleType2'); + data.add(clientIdLengthDoubleType1); + data.add(clientIdLengthDoubleType2); subData.addAll(utf8.encode(gatewayConfigurationStr!)); // subData = getFixedLengthList(subData, 20 - clientIdLength); diff --git a/lib/main_local.dart b/lib/main_local.dart index ca85c5fa..f56b6d65 100755 --- a/lib/main_local.dart +++ b/lib/main_local.dart @@ -4,7 +4,7 @@ import 'flavors.dart'; import 'main.dart' as runner; Future main() async { - F.appFlavor = Flavor.sky_pre; + F.appFlavor = Flavor.xhj_pre; // AppLog.log('local调用了main函数'); await runner.main(); } diff --git a/pubspec.yaml b/pubspec.yaml index 30320b8d..ab615ff5 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -104,7 +104,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # 1.0.85+2024120301:完善网关功能 # 1.0.85+2024120401:修复网关问题,打包给谢敬调试 -version: 1.0.85+2024123102 +version: 1.0.85+2025010801 environment: sdk: '>=2.12.0 <3.0.0' From d2f54efded78c85088a7c239732ee0d4129321c7 Mon Sep 17 00:00:00 2001 From: Liuyf Date: Wed, 8 Jan 2025 18:17:07 +0800 Subject: [PATCH 3/5] =?UTF-8?q?fix:=20umeng=20=E9=9A=90=E7=A7=81=E5=90=88?= =?UTF-8?q?=E8=A7=84=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ios/Runner/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Runner/AppDelegate.m b/ios/Runner/AppDelegate.m index 4b399780..f4187699 100755 --- a/ios/Runner/AppDelegate.m +++ b/ios/Runner/AppDelegate.m @@ -19,7 +19,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - [UMConfigure initWithAppkey:@"671244ae80464b33f6df9646" channel:@"Product"]; +// [UMConfigure initWithAppkey:@"671244ae80464b33f6df9646" channel:@"Product"]; XSFlutterManager *VC = [[XSFlutterManager alloc] init]; self.window.rootViewController = VC; From a61ebda710901ce7e61a92d5a9b4fbaeefe0048d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=B0=91=E9=98=B3?= <786612630@qq.com> Date: Wed, 8 Jan 2025 19:35:42 +0800 Subject: [PATCH 4/5] =?UTF-8?q?fix:=201=E3=80=81=E4=BF=AE=E5=A4=8Dwifi?= =?UTF-8?q?=E9=94=81=E3=80=81=E7=BD=91=E5=85=B3=E9=85=8D=E7=BD=91=E4=BC=A0?= =?UTF-8?q?=E5=85=A5=E7=9A=84gatewayJson=E9=95=BF=E5=BA=A61=E5=AD=97?= =?UTF-8?q?=E8=8A=82=E6=94=B9=E4=B8=BA2=E5=AD=97=E8=8A=82bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/blue/io_gateway/io_gateway_configuringWifi.dart | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/blue/io_gateway/io_gateway_configuringWifi.dart b/lib/blue/io_gateway/io_gateway_configuringWifi.dart index 7d6a5ede..769f2079 100644 --- a/lib/blue/io_gateway/io_gateway_configuringWifi.dart +++ b/lib/blue/io_gateway/io_gateway_configuringWifi.dart @@ -53,8 +53,8 @@ class GatewayConfiguringWifiCommand extends SenderProtocol { final int clientIdLengthDoubleType1 = clientIdLengthDouble.toInt(); final int clientIdLengthDoubleType2 = clientIdLength % 256; // AppLog.log('gatewayConfigurationStr!:$gatewayConfigurationStr! clientIdLength:$clientIdLength clientIdLengthDouble:$clientIdLengthDouble clientIdLengthDoubleType1:$clientIdLengthDoubleType1 clientIdLengthDoubleType2:$clientIdLengthDoubleType2'); - data.add(clientIdLengthDoubleType1); - data.add(clientIdLengthDoubleType2); + subData.add(clientIdLengthDoubleType1); + subData.add(clientIdLengthDoubleType2); subData.addAll(utf8.encode(gatewayConfigurationStr!)); // subData = getFixedLengthList(subData, 20 - clientIdLength); diff --git a/pubspec.yaml b/pubspec.yaml index f9f08476..527ac7dd 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -104,7 +104,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # 1.0.85+2024120301:完善网关功能 # 1.0.85+2024120401:修复网关问题,打包给谢敬调试 -version: 1.0.85+2025010801 +version: 1.0.85+2025010802 environment: sdk: '>=2.12.0 <3.0.0' From 49b042d62bb4cb87f9092228e10ffa2c3d97e634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=B0=91=E9=98=B3?= <786612630@qq.com> Date: Sat, 11 Jan 2025 14:52:12 +0800 Subject: [PATCH 5/5] =?UTF-8?q?fix:=201=E3=80=81=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=BF=9B=E5=85=A5=E4=B8=87=E5=B8=88=E5=82=85=E7=99=BD=E5=B1=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E3=80=822=E3=80=81iOS=E5=8E=9F=E7=94=9F?= =?UTF-8?q?=E6=B7=BB=E5=8A=A034=E5=9B=BD=E6=9D=83=E9=99=90=E6=96=87?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ios/Runner.xcodeproj/project.pbxproj | 364 ++++++++++++++++-- .../xcshareddata/xcschemes/xhj.xcscheme | 2 +- ios/Runner/ar.lproj/InfoPlist.strings | 18 + ios/Runner/ar.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ar.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/ar.lproj/Main.strings | 1 + ios/Runner/bg.lproj/InfoPlist.strings | 18 + ios/Runner/bg.lproj/InfoPlist_sky.strings | 18 + ios/Runner/bg.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/bg.lproj/Main.strings | 1 + ios/Runner/bn.lproj/InfoPlist.strings | 18 + ios/Runner/bn.lproj/InfoPlist_sky.strings | 18 + ios/Runner/bn.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/bn.lproj/Main.strings | 1 + ios/Runner/cs.lproj/InfoPlist.strings | 18 + ios/Runner/cs.lproj/InfoPlist_sky.strings | 18 + ios/Runner/cs.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/cs.lproj/Main.strings | 1 + ios/Runner/da.lproj/InfoPlist.strings | 18 + ios/Runner/da.lproj/InfoPlist_sky.strings | 18 + ios/Runner/da.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/da.lproj/Main.strings | 1 + ios/Runner/de.lproj/InfoPlist.strings | 18 + ios/Runner/de.lproj/InfoPlist_sky.strings | 18 + ios/Runner/de.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/de.lproj/Main.strings | 1 + ios/Runner/el.lproj/InfoPlist.strings | 18 + ios/Runner/el.lproj/InfoPlist_sky.strings | 18 + ios/Runner/el.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/el.lproj/Main.strings | 1 + ios/Runner/en.lproj/InfoPlist.strings | 6 +- ios/Runner/es.lproj/InfoPlist.strings | 18 + ios/Runner/es.lproj/InfoPlist_sky.strings | 18 + ios/Runner/es.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/es.lproj/Main.strings | 1 + ios/Runner/et.lproj/InfoPlist.strings | 18 + ios/Runner/et.lproj/InfoPlist_sky.strings | 18 + ios/Runner/et.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/et.lproj/Main.strings | 1 + ios/Runner/fi.lproj/InfoPlist.strings | 18 + ios/Runner/fi.lproj/InfoPlist_sky.strings | 18 + ios/Runner/fi.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/fi.lproj/Main.strings | 1 + ios/Runner/fr.lproj/InfoPlist.strings | 19 + ios/Runner/fr.lproj/InfoPlist_sky.strings | 19 + ios/Runner/fr.lproj/InfoPlist_xhj.strings | 19 + ios/Runner/fr.lproj/Main.strings | 1 + ios/Runner/he.lproj/InfoPlist.strings | 18 + ios/Runner/he.lproj/InfoPlist_sky.strings | 18 + ios/Runner/he.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/he.lproj/Main.strings | 1 + ios/Runner/hr.lproj/InfoPlist.strings | 18 + ios/Runner/hr.lproj/InfoPlist_sky.strings | 18 + ios/Runner/hr.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/hr.lproj/Main.strings | 1 + ios/Runner/hu.lproj/InfoPlist.strings | 18 + ios/Runner/hu.lproj/InfoPlist_sky.strings | 18 + ios/Runner/hu.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/hu.lproj/Main.strings | 1 + ios/Runner/id.lproj/InfoPlist.strings | 18 + ios/Runner/id.lproj/InfoPlist_sky.strings | 18 + ios/Runner/id.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/id.lproj/Main.strings | 1 + ios/Runner/it.lproj/InfoPlist.strings | 18 + ios/Runner/it.lproj/InfoPlist_sky.strings | 18 + ios/Runner/it.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/it.lproj/Main.strings | 1 + ios/Runner/ja.lproj/InfoPlist.strings | 18 + ios/Runner/ja.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ja.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/ja.lproj/Main.strings | 1 + ios/Runner/kk.lproj/InfoPlist.strings | 18 + ios/Runner/kk.lproj/InfoPlist_sky.strings | 18 + ios/Runner/kk.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/kk.lproj/Main.strings | 1 + ios/Runner/ko.lproj/InfoPlist.strings | 18 + ios/Runner/ko.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ko.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/ko.lproj/Main.strings | 1 + ios/Runner/lt.lproj/InfoPlist.strings | 18 + ios/Runner/lt.lproj/InfoPlist_sky.strings | 18 + ios/Runner/lt.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/lt.lproj/Main.strings | 1 + ios/Runner/ms.lproj/InfoPlist.strings | 18 + ios/Runner/ms.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ms.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/ms.lproj/Main.strings | 1 + ios/Runner/nl.lproj/InfoPlist.strings | 18 + ios/Runner/nl.lproj/InfoPlist_sky.strings | 18 + ios/Runner/nl.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/nl.lproj/Main.strings | 1 + ios/Runner/pl.lproj/InfoPlist.strings | 18 + ios/Runner/pl.lproj/InfoPlist_sky.strings | 18 + ios/Runner/pl.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/pl.lproj/Main.strings | 1 + ios/Runner/pt-PT.lproj/InfoPlist.strings | 18 + ios/Runner/pt-PT.lproj/InfoPlist_sky.strings | 18 + ios/Runner/pt-PT.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/pt-PT.lproj/Main.strings | 1 + ios/Runner/ro.lproj/InfoPlist.strings | 18 + ios/Runner/ro.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ro.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/ro.lproj/Main.strings | 1 + ios/Runner/ru.lproj/InfoPlist.strings | 18 + ios/Runner/ru.lproj/InfoPlist_sky.strings | 18 + ios/Runner/ru.lproj/InfoPlist_xhj.strings | 12 + ios/Runner/ru.lproj/Main.strings | 1 + ios/Runner/sk.lproj/InfoPlist.strings | 18 + ios/Runner/sk.lproj/InfoPlist_sky.strings | 18 + ios/Runner/sk.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/sk.lproj/Main.strings | 1 + ios/Runner/sr.lproj/InfoPlist.strings | 18 + ios/Runner/sr.lproj/InfoPlist_sky.strings | 18 + ios/Runner/sr.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/sr.lproj/Main.strings | 1 + ios/Runner/sv.lproj/InfoPlist.strings | 18 + ios/Runner/sv.lproj/InfoPlist_sky.strings | 18 + ios/Runner/sv.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/sv.lproj/Main.strings | 1 + ios/Runner/th.lproj/InfoPlist.strings | 18 + ios/Runner/th.lproj/InfoPlist_sky.strings | 18 + ios/Runner/th.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/th.lproj/Main.strings | 1 + ios/Runner/tr.lproj/InfoPlist.strings | 18 + ios/Runner/tr.lproj/InfoPlist_sky.strings | 18 + ios/Runner/tr.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/tr.lproj/Main.strings | 1 + ios/Runner/uk.lproj/InfoPlist.strings | 18 + ios/Runner/uk.lproj/InfoPlist_sky.strings | 18 + ios/Runner/uk.lproj/InfoPlist_xhj.strings | 19 + ios/Runner/uk.lproj/Main.strings | 1 + ios/Runner/vi.lproj/InfoPlist.strings | 18 + ios/Runner/vi.lproj/InfoPlist_sky.strings | 18 + ios/Runner/vi.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/vi.lproj/Main.strings | 1 + ios/Runner/zh-HK.lproj/InfoPlist.strings | 18 + ios/Runner/zh-HK.lproj/InfoPlist_sky.strings | 18 + ios/Runner/zh-HK.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/zh-HK.lproj/Main.strings | 1 + ios/Runner/zh-Hant.lproj/InfoPlist.strings | 18 + .../zh-Hant.lproj/InfoPlist_sky.strings | 18 + .../zh-Hant.lproj/InfoPlist_xhj.strings | 18 + ios/Runner/zh-Hant.lproj/Main.strings | 1 + lib/main_local.dart | 2 +- .../wx_push_miniProgram.dart | 8 +- 145 files changed, 2261 insertions(+), 44 deletions(-) create mode 100644 ios/Runner/ar.lproj/InfoPlist.strings create mode 100644 ios/Runner/ar.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ar.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ar.lproj/Main.strings create mode 100644 ios/Runner/bg.lproj/InfoPlist.strings create mode 100644 ios/Runner/bg.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/bg.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/bg.lproj/Main.strings create mode 100644 ios/Runner/bn.lproj/InfoPlist.strings create mode 100644 ios/Runner/bn.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/bn.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/bn.lproj/Main.strings create mode 100644 ios/Runner/cs.lproj/InfoPlist.strings create mode 100644 ios/Runner/cs.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/cs.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/cs.lproj/Main.strings create mode 100644 ios/Runner/da.lproj/InfoPlist.strings create mode 100644 ios/Runner/da.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/da.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/da.lproj/Main.strings create mode 100644 ios/Runner/de.lproj/InfoPlist.strings create mode 100644 ios/Runner/de.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/de.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/de.lproj/Main.strings create mode 100644 ios/Runner/el.lproj/InfoPlist.strings create mode 100644 ios/Runner/el.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/el.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/el.lproj/Main.strings create mode 100644 ios/Runner/es.lproj/InfoPlist.strings create mode 100644 ios/Runner/es.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/es.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/es.lproj/Main.strings create mode 100644 ios/Runner/et.lproj/InfoPlist.strings create mode 100644 ios/Runner/et.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/et.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/et.lproj/Main.strings create mode 100644 ios/Runner/fi.lproj/InfoPlist.strings create mode 100644 ios/Runner/fi.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/fi.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/fi.lproj/Main.strings create mode 100644 ios/Runner/fr.lproj/InfoPlist.strings create mode 100644 ios/Runner/fr.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/fr.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/fr.lproj/Main.strings create mode 100644 ios/Runner/he.lproj/InfoPlist.strings create mode 100644 ios/Runner/he.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/he.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/he.lproj/Main.strings create mode 100644 ios/Runner/hr.lproj/InfoPlist.strings create mode 100644 ios/Runner/hr.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/hr.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/hr.lproj/Main.strings create mode 100644 ios/Runner/hu.lproj/InfoPlist.strings create mode 100644 ios/Runner/hu.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/hu.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/hu.lproj/Main.strings create mode 100644 ios/Runner/id.lproj/InfoPlist.strings create mode 100644 ios/Runner/id.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/id.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/id.lproj/Main.strings create mode 100644 ios/Runner/it.lproj/InfoPlist.strings create mode 100644 ios/Runner/it.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/it.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/it.lproj/Main.strings create mode 100644 ios/Runner/ja.lproj/InfoPlist.strings create mode 100644 ios/Runner/ja.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ja.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ja.lproj/Main.strings create mode 100644 ios/Runner/kk.lproj/InfoPlist.strings create mode 100644 ios/Runner/kk.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/kk.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/kk.lproj/Main.strings create mode 100644 ios/Runner/ko.lproj/InfoPlist.strings create mode 100644 ios/Runner/ko.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ko.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ko.lproj/Main.strings create mode 100644 ios/Runner/lt.lproj/InfoPlist.strings create mode 100644 ios/Runner/lt.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/lt.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/lt.lproj/Main.strings create mode 100644 ios/Runner/ms.lproj/InfoPlist.strings create mode 100644 ios/Runner/ms.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ms.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ms.lproj/Main.strings create mode 100644 ios/Runner/nl.lproj/InfoPlist.strings create mode 100644 ios/Runner/nl.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/nl.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/nl.lproj/Main.strings create mode 100644 ios/Runner/pl.lproj/InfoPlist.strings create mode 100644 ios/Runner/pl.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/pl.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/pl.lproj/Main.strings create mode 100644 ios/Runner/pt-PT.lproj/InfoPlist.strings create mode 100644 ios/Runner/pt-PT.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/pt-PT.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/pt-PT.lproj/Main.strings create mode 100644 ios/Runner/ro.lproj/InfoPlist.strings create mode 100644 ios/Runner/ro.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ro.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ro.lproj/Main.strings create mode 100644 ios/Runner/ru.lproj/InfoPlist.strings create mode 100644 ios/Runner/ru.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/ru.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/ru.lproj/Main.strings create mode 100644 ios/Runner/sk.lproj/InfoPlist.strings create mode 100644 ios/Runner/sk.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/sk.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/sk.lproj/Main.strings create mode 100644 ios/Runner/sr.lproj/InfoPlist.strings create mode 100644 ios/Runner/sr.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/sr.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/sr.lproj/Main.strings create mode 100644 ios/Runner/sv.lproj/InfoPlist.strings create mode 100644 ios/Runner/sv.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/sv.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/sv.lproj/Main.strings create mode 100644 ios/Runner/th.lproj/InfoPlist.strings create mode 100644 ios/Runner/th.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/th.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/th.lproj/Main.strings create mode 100644 ios/Runner/tr.lproj/InfoPlist.strings create mode 100644 ios/Runner/tr.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/tr.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/tr.lproj/Main.strings create mode 100644 ios/Runner/uk.lproj/InfoPlist.strings create mode 100644 ios/Runner/uk.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/uk.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/uk.lproj/Main.strings create mode 100644 ios/Runner/vi.lproj/InfoPlist.strings create mode 100644 ios/Runner/vi.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/vi.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/vi.lproj/Main.strings create mode 100644 ios/Runner/zh-HK.lproj/InfoPlist.strings create mode 100644 ios/Runner/zh-HK.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/zh-HK.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/zh-HK.lproj/Main.strings create mode 100644 ios/Runner/zh-Hant.lproj/InfoPlist.strings create mode 100644 ios/Runner/zh-Hant.lproj/InfoPlist_sky.strings create mode 100644 ios/Runner/zh-Hant.lproj/InfoPlist_xhj.strings create mode 100644 ios/Runner/zh-Hant.lproj/Main.strings diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 238827f8..43f75e59 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -107,6 +107,146 @@ 04717D702D1B9B5A00089BD3 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist_xhj.strings"; sourceTree = ""; }; 04717D722D1B9B5D00089BD3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; 04BFC4482BCFE05100688FCA /* RunnerRelease-xhj.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "RunnerRelease-xhj.entitlements"; sourceTree = ""; }; + 04FF45362D3218240085A7B2 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Main.strings; sourceTree = ""; }; + 04FF45372D3218240085A7B2 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45382D3218240085A7B2 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45392D3218240085A7B2 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF453A2D32199F0085A7B2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Main.strings; sourceTree = ""; }; + 04FF453B2D32199F0085A7B2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF453C2D32199F0085A7B2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF453D2D32199F0085A7B2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF453E2D321A410085A7B2 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Main.strings; sourceTree = ""; }; + 04FF453F2D321A410085A7B2 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45402D321A420085A7B2 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45412D321A420085A7B2 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45422D321AB50085A7B2 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Main.strings; sourceTree = ""; }; + 04FF45432D321AB50085A7B2 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45442D321AB60085A7B2 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45452D321AB60085A7B2 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45462D321DB80085A7B2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Main.strings; sourceTree = ""; }; + 04FF45472D321DB80085A7B2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45482D321DB80085A7B2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45492D321DB80085A7B2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF454A2D321E590085A7B2 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Main.strings; sourceTree = ""; }; + 04FF454B2D321E590085A7B2 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF454C2D321E590085A7B2 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF454D2D321E590085A7B2 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF454E2D321EA00085A7B2 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Main.strings; sourceTree = ""; }; + 04FF454F2D321EA00085A7B2 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45502D321EA00085A7B2 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45512D321EA00085A7B2 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45522D321F080085A7B2 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Main.strings"; sourceTree = ""; }; + 04FF45532D321F080085A7B2 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = ""; }; + 04FF45542D321F080085A7B2 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist_sky.strings"; sourceTree = ""; }; + 04FF45552D321F080085A7B2 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist_xhj.strings"; sourceTree = ""; }; + 04FF45562D321F720085A7B2 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Main.strings; sourceTree = ""; }; + 04FF45572D321F720085A7B2 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45582D321F720085A7B2 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45592D321F720085A7B2 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF455A2D3220840085A7B2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Main.strings; sourceTree = ""; }; + 04FF455B2D3220840085A7B2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF455C2D3220850085A7B2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF455D2D3220850085A7B2 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF455E2D3220F00085A7B2 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Main.strings; sourceTree = ""; }; + 04FF455F2D3220F00085A7B2 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45602D3220F00085A7B2 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45612D3220F00085A7B2 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45622D32212D0085A7B2 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/Main.strings; sourceTree = ""; }; + 04FF45632D32212D0085A7B2 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45642D32212D0085A7B2 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45652D32212D0085A7B2 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45662D3221820085A7B2 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Main.strings; sourceTree = ""; }; + 04FF45672D3221820085A7B2 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45682D3221820085A7B2 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45692D3221820085A7B2 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF456A2D3221BD0085A7B2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/Main.strings; sourceTree = ""; }; + 04FF456B2D3221BD0085A7B2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF456C2D3221BD0085A7B2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF456D2D3221BD0085A7B2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF456E2D3222620085A7B2 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lt; path = lt.lproj/Main.strings; sourceTree = ""; }; + 04FF456F2D3222620085A7B2 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lt; path = lt.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45702D3222620085A7B2 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lt; path = lt.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45712D3222620085A7B2 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lt; path = lt.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45722D3222B40085A7B2 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Main.strings; sourceTree = ""; }; + 04FF45732D3222B40085A7B2 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45742D3222B50085A7B2 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45752D3222B50085A7B2 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45762D3223130085A7B2 /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/Main.strings; sourceTree = ""; }; + 04FF45772D3223130085A7B2 /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45782D3223130085A7B2 /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45792D3223130085A7B2 /* et */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = et; path = et.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF457A2D3223620085A7B2 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Main.strings; sourceTree = ""; }; + 04FF457B2D3223620085A7B2 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF457C2D3223620085A7B2 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF457D2D3223620085A7B2 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF457E2D3223A90085A7B2 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Main.strings; sourceTree = ""; }; + 04FF457F2D3223A90085A7B2 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45802D3223A90085A7B2 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45812D3223A90085A7B2 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45822D3223EA0085A7B2 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Main.strings; sourceTree = ""; }; + 04FF45832D3223EA0085A7B2 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45842D3223EA0085A7B2 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45852D3223EA0085A7B2 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45862D323B300085A7B2 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Main.strings; sourceTree = ""; }; + 04FF45872D323B300085A7B2 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45882D323B300085A7B2 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45892D323B300085A7B2 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF458A2D323B6F0085A7B2 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Main.strings; sourceTree = ""; }; + 04FF458B2D323B6F0085A7B2 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF458C2D323B6F0085A7B2 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF458D2D323B6F0085A7B2 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF458E2D323DE60085A7B2 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/Main.strings; sourceTree = ""; }; + 04FF458F2D323DE60085A7B2 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45902D323DE60085A7B2 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45912D323DE70085A7B2 /* sr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sr; path = sr.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45922D323EAC0085A7B2 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Main.strings; sourceTree = ""; }; + 04FF45932D323EAC0085A7B2 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45942D323EAC0085A7B2 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45952D323EAC0085A7B2 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45962D323EEF0085A7B2 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Main.strings; sourceTree = ""; }; + 04FF45972D323EEF0085A7B2 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45982D323EEF0085A7B2 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45992D323EEF0085A7B2 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF459A2D323F610085A7B2 /* bg */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bg; path = bg.lproj/Main.strings; sourceTree = ""; }; + 04FF459B2D323F610085A7B2 /* bg */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bg; path = bg.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF459C2D323F620085A7B2 /* bg */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bg; path = bg.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF459D2D323F620085A7B2 /* bg */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bg; path = bg.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF459E2D3240110085A7B2 /* kk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = kk; path = kk.lproj/Main.strings; sourceTree = ""; }; + 04FF459F2D3240110085A7B2 /* kk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = kk; path = kk.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45A02D3240110085A7B2 /* kk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = kk; path = kk.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45A12D3240110085A7B2 /* kk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = kk; path = kk.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45A22D32414C0085A7B2 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Main.strings; sourceTree = ""; }; + 04FF45A32D32414C0085A7B2 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45A42D32414C0085A7B2 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45A52D32414C0085A7B2 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45A62D32418D0085A7B2 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Main.strings; sourceTree = ""; }; + 04FF45A72D32418D0085A7B2 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45A82D32418E0085A7B2 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45A92D32418E0085A7B2 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45AA2D32420B0085A7B2 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Main.strings; sourceTree = ""; }; + 04FF45AB2D32420B0085A7B2 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45AC2D32420B0085A7B2 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45AD2D32420B0085A7B2 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45AE2D32424F0085A7B2 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Main.strings; sourceTree = ""; }; + 04FF45AF2D32424F0085A7B2 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45B02D32424F0085A7B2 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45B12D32424F0085A7B2 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45B22D3242920085A7B2 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Main.strings; sourceTree = ""; }; + 04FF45B32D3242920085A7B2 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45B42D3242920085A7B2 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45B52D3242920085A7B2 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; + 04FF45B62D3243560085A7B2 /* zh-HK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-HK"; path = "zh-HK.lproj/Main.strings"; sourceTree = ""; }; + 04FF45B72D3243560085A7B2 /* zh-HK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-HK"; path = "zh-HK.lproj/InfoPlist.strings"; sourceTree = ""; }; + 04FF45B82D3243560085A7B2 /* zh-HK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-HK"; path = "zh-HK.lproj/InfoPlist_sky.strings"; sourceTree = ""; }; + 04FF45B92D3243560085A7B2 /* zh-HK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-HK"; path = "zh-HK.lproj/InfoPlist_xhj.strings"; sourceTree = ""; }; + 04FF45BA2D32437B0085A7B2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Main.strings"; sourceTree = ""; }; + 04FF45BB2D32437B0085A7B2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist.strings"; sourceTree = ""; }; + 04FF45BC2D32437C0085A7B2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist_sky.strings"; sourceTree = ""; }; + 04FF45BD2D32437C0085A7B2 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist_xhj.strings"; sourceTree = ""; }; + 04FF45BE2D3247190085A7B2 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bn; path = bn.lproj/Main.strings; sourceTree = ""; }; + 04FF45BF2D3247190085A7B2 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bn; path = bn.lproj/InfoPlist.strings; sourceTree = ""; }; + 04FF45C02D3247190085A7B2 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bn; path = bn.lproj/InfoPlist_sky.strings; sourceTree = ""; }; + 04FF45C12D3247190085A7B2 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bn; path = bn.lproj/InfoPlist_xhj.strings; sourceTree = ""; }; 0BEB3ADCCEC961E2916B9004 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 0D02C18E16914A687A4A1AC2 /* devDebug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = devDebug.xcconfig; path = Flutter/devDebug.xcconfig; sourceTree = ""; }; 126D1370182AB44291C67A10 /* Pods-Runner.dev-release-sky.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.dev-release-sky.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.dev-release-sky.xcconfig"; sourceTree = ""; }; @@ -478,6 +618,41 @@ en, Base, "zh-Hans", + fr, + ru, + de, + ja, + ko, + it, + uk, + "pt-PT", + es, + ar, + vi, + ms, + nl, + ro, + lt, + sv, + et, + pl, + sk, + cs, + he, + el, + sr, + tr, + hu, + bg, + kk, + hr, + th, + id, + fi, + da, + "zh-HK", + "zh-Hant", + bn, ); mainGroup = 97C146E51CF9000F007C117D; productRefGroup = 97C146EF1CF9000F007C117D /* Products */; @@ -649,6 +824,41 @@ children = ( 04717D682D1B97E100089BD3 /* zh-Hans */, 04717D6A2D1B97E800089BD3 /* en */, + 04FF45382D3218240085A7B2 /* fr */, + 04FF453C2D32199F0085A7B2 /* ru */, + 04FF45402D321A420085A7B2 /* de */, + 04FF45442D321AB60085A7B2 /* ja */, + 04FF45482D321DB80085A7B2 /* ko */, + 04FF454C2D321E590085A7B2 /* it */, + 04FF45502D321EA00085A7B2 /* uk */, + 04FF45542D321F080085A7B2 /* pt-PT */, + 04FF45582D321F720085A7B2 /* es */, + 04FF455C2D3220850085A7B2 /* ar */, + 04FF45602D3220F00085A7B2 /* vi */, + 04FF45642D32212D0085A7B2 /* ms */, + 04FF45682D3221820085A7B2 /* nl */, + 04FF456C2D3221BD0085A7B2 /* ro */, + 04FF45702D3222620085A7B2 /* lt */, + 04FF45742D3222B50085A7B2 /* sv */, + 04FF45782D3223130085A7B2 /* et */, + 04FF457C2D3223620085A7B2 /* pl */, + 04FF45802D3223A90085A7B2 /* sk */, + 04FF45842D3223EA0085A7B2 /* cs */, + 04FF45882D323B300085A7B2 /* he */, + 04FF458C2D323B6F0085A7B2 /* el */, + 04FF45902D323DE60085A7B2 /* sr */, + 04FF45942D323EAC0085A7B2 /* tr */, + 04FF45982D323EEF0085A7B2 /* hu */, + 04FF459C2D323F620085A7B2 /* bg */, + 04FF45A02D3240110085A7B2 /* kk */, + 04FF45A42D32414C0085A7B2 /* hr */, + 04FF45A82D32418E0085A7B2 /* th */, + 04FF45AC2D32420B0085A7B2 /* id */, + 04FF45B02D32424F0085A7B2 /* fi */, + 04FF45B42D3242920085A7B2 /* da */, + 04FF45B82D3243560085A7B2 /* zh-HK */, + 04FF45BC2D32437C0085A7B2 /* zh-Hant */, + 04FF45C02D3247190085A7B2 /* bn */, ); name = InfoPlist_sky.strings; sourceTree = ""; @@ -658,6 +868,41 @@ children = ( 04717D6C2D1B983200089BD3 /* en */, 04717D6E2D1B983900089BD3 /* zh-Hans */, + 04FF45372D3218240085A7B2 /* fr */, + 04FF453B2D32199F0085A7B2 /* ru */, + 04FF453F2D321A410085A7B2 /* de */, + 04FF45432D321AB50085A7B2 /* ja */, + 04FF45472D321DB80085A7B2 /* ko */, + 04FF454B2D321E590085A7B2 /* it */, + 04FF454F2D321EA00085A7B2 /* uk */, + 04FF45532D321F080085A7B2 /* pt-PT */, + 04FF45572D321F720085A7B2 /* es */, + 04FF455B2D3220840085A7B2 /* ar */, + 04FF455F2D3220F00085A7B2 /* vi */, + 04FF45632D32212D0085A7B2 /* ms */, + 04FF45672D3221820085A7B2 /* nl */, + 04FF456B2D3221BD0085A7B2 /* ro */, + 04FF456F2D3222620085A7B2 /* lt */, + 04FF45732D3222B40085A7B2 /* sv */, + 04FF45772D3223130085A7B2 /* et */, + 04FF457B2D3223620085A7B2 /* pl */, + 04FF457F2D3223A90085A7B2 /* sk */, + 04FF45832D3223EA0085A7B2 /* cs */, + 04FF45872D323B300085A7B2 /* he */, + 04FF458B2D323B6F0085A7B2 /* el */, + 04FF458F2D323DE60085A7B2 /* sr */, + 04FF45932D323EAC0085A7B2 /* tr */, + 04FF45972D323EEF0085A7B2 /* hu */, + 04FF459B2D323F610085A7B2 /* bg */, + 04FF459F2D3240110085A7B2 /* kk */, + 04FF45A32D32414C0085A7B2 /* hr */, + 04FF45A72D32418D0085A7B2 /* th */, + 04FF45AB2D32420B0085A7B2 /* id */, + 04FF45AF2D32424F0085A7B2 /* fi */, + 04FF45B32D3242920085A7B2 /* da */, + 04FF45B72D3243560085A7B2 /* zh-HK */, + 04FF45BB2D32437B0085A7B2 /* zh-Hant */, + 04FF45BF2D3247190085A7B2 /* bn */, ); name = InfoPlist.strings; sourceTree = ""; @@ -667,6 +912,41 @@ children = ( 04717D702D1B9B5A00089BD3 /* zh-Hans */, 04717D722D1B9B5D00089BD3 /* en */, + 04FF45392D3218240085A7B2 /* fr */, + 04FF453D2D32199F0085A7B2 /* ru */, + 04FF45412D321A420085A7B2 /* de */, + 04FF45452D321AB60085A7B2 /* ja */, + 04FF45492D321DB80085A7B2 /* ko */, + 04FF454D2D321E590085A7B2 /* it */, + 04FF45512D321EA00085A7B2 /* uk */, + 04FF45552D321F080085A7B2 /* pt-PT */, + 04FF45592D321F720085A7B2 /* es */, + 04FF455D2D3220850085A7B2 /* ar */, + 04FF45612D3220F00085A7B2 /* vi */, + 04FF45652D32212D0085A7B2 /* ms */, + 04FF45692D3221820085A7B2 /* nl */, + 04FF456D2D3221BD0085A7B2 /* ro */, + 04FF45712D3222620085A7B2 /* lt */, + 04FF45752D3222B50085A7B2 /* sv */, + 04FF45792D3223130085A7B2 /* et */, + 04FF457D2D3223620085A7B2 /* pl */, + 04FF45812D3223A90085A7B2 /* sk */, + 04FF45852D3223EA0085A7B2 /* cs */, + 04FF45892D323B300085A7B2 /* he */, + 04FF458D2D323B6F0085A7B2 /* el */, + 04FF45912D323DE70085A7B2 /* sr */, + 04FF45952D323EAC0085A7B2 /* tr */, + 04FF45992D323EEF0085A7B2 /* hu */, + 04FF459D2D323F620085A7B2 /* bg */, + 04FF45A12D3240110085A7B2 /* kk */, + 04FF45A52D32414C0085A7B2 /* hr */, + 04FF45A92D32418E0085A7B2 /* th */, + 04FF45AD2D32420B0085A7B2 /* id */, + 04FF45B12D32424F0085A7B2 /* fi */, + 04FF45B52D3242920085A7B2 /* da */, + 04FF45B92D3243560085A7B2 /* zh-HK */, + 04FF45BD2D32437C0085A7B2 /* zh-Hant */, + 04FF45C12D3247190085A7B2 /* bn */, ); name = InfoPlist_xhj.strings; sourceTree = ""; @@ -676,6 +956,41 @@ children = ( 97C146FB1CF9000F007C117D /* Base */, 0420903B2C0EEAA50073E654 /* zh-Hans */, + 04FF45362D3218240085A7B2 /* fr */, + 04FF453A2D32199F0085A7B2 /* ru */, + 04FF453E2D321A410085A7B2 /* de */, + 04FF45422D321AB50085A7B2 /* ja */, + 04FF45462D321DB80085A7B2 /* ko */, + 04FF454A2D321E590085A7B2 /* it */, + 04FF454E2D321EA00085A7B2 /* uk */, + 04FF45522D321F080085A7B2 /* pt-PT */, + 04FF45562D321F720085A7B2 /* es */, + 04FF455A2D3220840085A7B2 /* ar */, + 04FF455E2D3220F00085A7B2 /* vi */, + 04FF45622D32212D0085A7B2 /* ms */, + 04FF45662D3221820085A7B2 /* nl */, + 04FF456A2D3221BD0085A7B2 /* ro */, + 04FF456E2D3222620085A7B2 /* lt */, + 04FF45722D3222B40085A7B2 /* sv */, + 04FF45762D3223130085A7B2 /* et */, + 04FF457A2D3223620085A7B2 /* pl */, + 04FF457E2D3223A90085A7B2 /* sk */, + 04FF45822D3223EA0085A7B2 /* cs */, + 04FF45862D323B300085A7B2 /* he */, + 04FF458A2D323B6F0085A7B2 /* el */, + 04FF458E2D323DE60085A7B2 /* sr */, + 04FF45922D323EAC0085A7B2 /* tr */, + 04FF45962D323EEF0085A7B2 /* hu */, + 04FF459A2D323F610085A7B2 /* bg */, + 04FF459E2D3240110085A7B2 /* kk */, + 04FF45A22D32414C0085A7B2 /* hr */, + 04FF45A62D32418D0085A7B2 /* th */, + 04FF45AA2D32420B0085A7B2 /* id */, + 04FF45AE2D32424F0085A7B2 /* fi */, + 04FF45B22D3242920085A7B2 /* da */, + 04FF45B62D3243560085A7B2 /* zh-HK */, + 04FF45BA2D32437B0085A7B2 /* zh-Hant */, + 04FF45BE2D3247190085A7B2 /* bn */, ); name = Main.storyboard; sourceTree = ""; @@ -760,10 +1075,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = NAQ5PL2DYC; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NAQ5PL2DYC; INFOPLIST_FILE = Runner/info_sky.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -773,7 +1086,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.starlock.lock.local; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Debug_com.starlock.lock.local.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -858,10 +1170,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-xhj.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = NAQ5PL2DYC; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = P8997RW3V8; INFOPLIST_FILE = Runner/info_xhj.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -871,7 +1181,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.starlock.lock.local; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Debug_com.starlock.lock.local.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -885,10 +1194,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = NAQ5PL2DYC; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NAQ5PL2DYC; INFOPLIST_FILE = Runner/info_sky.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -897,7 +1204,6 @@ ); PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Appstore_com.skychip.lock.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -911,10 +1217,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-xhj.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = P8997RW3V8; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = P8997RW3V8; INFOPLIST_FILE = Runner/info_xhj.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -924,7 +1228,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.lock; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Appstore_com.xhjcn.lock.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -1255,10 +1558,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = NAQ5PL2DYC; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NAQ5PL2DYC; INFOPLIST_FILE = Runner/info_sky.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -1268,7 +1569,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.skychip.lock.pre; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Adhoc_com.skychip.lock.pre.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -1353,10 +1653,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-sky.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = NAQ5PL2DYC; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = NAQ5PL2DYC; INFOPLIST_FILE = Runner/info_sky.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -1366,7 +1664,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.skychip.lock.dev; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Adhoc_com.skychip.lock.dev.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -1451,10 +1748,8 @@ buildSettings = { CODE_SIGN_ENTITLEMENTS = "Runner/RunnerRelease-xhj.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CODE_SIGN_STYLE = Manual; - DEVELOPMENT_TEAM = ""; - "DEVELOPMENT_TEAM[sdk=iphoneos*]" = P8997RW3V8; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = P8997RW3V8; INFOPLIST_FILE = Runner/info_xhj.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -1464,7 +1759,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.xhjcn.lock.pre; PRODUCT_NAME = Runner; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = Adhoc_com.xhjcn.lock.pre.mobileprovision; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhj.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhj.xcscheme index 2767a19f..9cae57e2 100755 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhj.xcscheme +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/xhj.xcscheme @@ -24,7 +24,7 @@ main() async { - F.appFlavor = Flavor.xhj_pre; + F.appFlavor = Flavor.xhj; // AppLog.log('local调用了main函数'); await runner.main(); } diff --git a/lib/tools/wechat/wx_push_miniProgram/wx_push_miniProgram.dart b/lib/tools/wechat/wx_push_miniProgram/wx_push_miniProgram.dart index 2779eb4b..e877bae0 100644 --- a/lib/tools/wechat/wx_push_miniProgram/wx_push_miniProgram.dart +++ b/lib/tools/wechat/wx_push_miniProgram/wx_push_miniProgram.dart @@ -31,16 +31,16 @@ class WxPushWeChatMiniProgramTool { final MiniProgram miniProgram = MiniProgram( username: 'gh_93a4493485e1', // 微信小程序原始ID - path: 'pages/index/index', // 跳转的小程序页面路径,可选 - miniProgramType: WXMiniProgramType.release, // 小程序版本类型 + // path: 'pages/index/index', // 跳转的小程序页面路径,可选 + // miniProgramType: WXMiniProgramType.release, // 小程序版本类型 ); await fluwx.open(target: miniProgram); } else { final MiniProgram miniProgram = MiniProgram( username: 'gh_93a4493485e1', // 微信小程序原始ID - path: 'pages/index/index', // 跳转的小程序页面路径,可选 - miniProgramType: WXMiniProgramType.release, // 小程序版本类型 + // path: 'pages/index/index', // 跳转的小程序页面路径,可选 + // miniProgramType: WXMiniProgramType.release, // 小程序版本类型 ); await fluwx.open(target: miniProgram);