当我有推送通知时,我是否需要用于分发版本的权利文件?

发布于 2024-12-21 09:48:13 字数 885 浏览 2 评论 0 原文

我的应用程序被拒绝,原因如下: “我们发现您的应用程序无法在运行 iOS 5.0.1 的 iPhone 4 上通过 Wi-Fi 和蜂窝网络启动。”

我不确定原因,因为临时构建很好,但后来我看到了两件事可能会影响它。

  1. 我的编译器标志仅用于临时构建,而不是分发。这些是由于 AdMob 而添加的。你猜这可能是原因吗?

    -v -v -v -gcc_flags "-framework AudioToolbox -framework MessageUI -framework
    系统配置 -L${ProjectDir}/libs -lGoogleAdMobAds -force_load
    ${ProjectDir}/libs/libGoogleAdMobAds.a"

  2. 我发现了很多关于临时权利文件的帖子,但我在生产中需要它吗?我将我的 Entitlements.plist 添加到了 MonoTouch 中的“自定义权利”条目中但不确定我需要它,这可能是原因吗?权利文件在这里: ...

    
    
    
    <字典>
      获取任务允许
      <假/>>
      应用程序标识符
      <字符串>$(AppIdentifierPrefix)$(CFBundleIdentifier)
      钥匙串访问组
      <数组>
        <字符串>$(AppIdentifierPrefix)$(CFBundleIdentifier)
      
    

I got an app rejected due to:
"We found that your app failed to launch on iPhone 4 running iOS 5.0.1, on both Wi-Fi and cellular networks."

I am not sure of the reason since the adhoc builds are fine, but then I saw two things that may have affected it.

  1. I had compiler flags only for ad-hoc builds and not distribution. These are added because of AdMob. Guess this can be the reason?

    -v -v -v -gcc_flags "-framework AudioToolbox -framework MessageUI -framework
    SystemConfiguration -L${ProjectDir}/libs -lGoogleAdMobAds -force_load
    ${ProjectDir}/libs/libGoogleAdMobAds.a"

  2. I found a lot of posts about Entitlements file for ad-hoc but do I need it for production? I added my Entitlements.plist to the "Custom entitlements" entry in MonoTouch but not sure I need it. Can this be the reason? The entitlements file is here:
    ...

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"   "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>get-task-allow</key>
      <false/>
      <key>application-identifier</key>
      <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
      <key>keychain-access-groups</key>
      <array>
        <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
      </array>
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-12-28 09:48:13

我的编译器标志仅用于临时构建,而不是分发。这些是由于 AdMob 而添加的。你猜这可能是原因吗?

可能是。这取决于绑定(它们的编写方式)以及应用程序的编写方式(错误管理)。

一个快速测试是尝试将其从临时构建中删除,以查看应用程序在启动时是否崩溃。如果确实如此,那么您可以假设苹果在审查您的申请时也会发生同样的情况。

我发现了很多关于临时权利文件的帖子,但我在生产中需要它吗?

我自己没有尝试过,但 推送通知不起作用? 的答案指向创建了文档,其中描述了您需要如何创建应用程序ID和为推送通知服务提供开发和生产SSL证书。

您应该查看该文档并确保您的设置匹配。

I had compiler flags only for ad-hoc builds and not distribution. These are added because of AdMob. Guess this can be the reason?

It could be. It depends on the bindings (how they are written) and how your application is written (error management).

A quick test would be to try removing it from your ad-hoc builds to see if the application crash at startup. If it does then you can assume the same will happen at Apple when they are reviewing your application.

I found a lot of posts about Entitlements file for ad-hoc but do I need it for production?

I have not tried this myself but the answer to Push Notification is not working? points to created document which describe how you need to create an App ID and provide development and production SSL certificate for the push notification service.

You should review the document and make sure your setup match.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文