gpt4 book ai didi

ios - React-Native、IOS、Firebase - 由于 "loop",无法分发到 App Store

转载 作者:行者123 更新时间:2023-11-29 05:29:58 25 4
gpt4 key购买 nike

我正在尝试将我们的应用程序推送到应用程序商店,但在分发过程中由于以下问题而失败:

ERROR ITMS-90158: "The following URL schemes found in your app are not in the correct format: [https://XXXXX.co, https://XXXXX.co/event]. URL schemes need to begin with an alphabetic character, and be comprised of alphanumeric characters, the period, the hyphen or the plus sign only. Please see RFC1738 for more detail."

只有当我将“CFBundleURLSchemes”从数组更改为字符串时,它才能解决

之前:

  <dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>app</string>
<key>CFBundleURLSchemes</key>
<array>
<string>https://XXXXX.co/event</string>
</array>
</dict>

之后:

  <dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>app</string>
<key>CFBundleURLSchemes</key>
<string>https://XXXXX.co/event</string>
</dict>

但是当我尝试运行时,应用程序崩溃了:

[FIRApp configure];

错误:

-[NSMutableArray addObjectsFromArray:]: array argument is not an NSArray 2019-08-28 20:34:47.876651+0300 App[642:125815] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSMutableArray addObjectsFromArray:]: array argument is not an NSArray'

在FIRApp.m中上线:

[[NSNotificationCenter defaultCenter] postNotificationName:kFIRAppReadyToConfigureSDKNotification object:self userInfo:appInfoDict];

现在我陷入了循环 - 没有数组就无法运行,并且无法推送到应用商店

有什么想法吗?

最佳答案

这些不是 URL 方案。 https://XXXXX.co/event是一个网址。该方案是://之前的部分.

所以你的方案可以是 XXXXX.co 。在这种情况下,深层链接可能类似​​于 XXXXX.co://event?foo=bar当在移动设备上调用时,它将打开您的应用程序并传递该 URL。

要修复此问题,您需要更改 CFBundleURLScheme 的值至<string>XXXXX.co</string>并更改您定义该方案的其他位置。

关于ios - React-Native、IOS、Firebase - 由于 "loop",无法分发到 App Store,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57698097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com