应用程序安装错误消息允许密钥的白名单

时间:2019-06-12 21:58:05

标签: ios watchkit apple-watch

我终于成功建立了我的watch应用程序,但是当我尝试在设备上进行调试时,却收到了此错误消息。

WatchKit应用程序的Info.plist包含一个不在WatchKit应用程序允许的密钥白名单中的密钥。

这是我的清单

<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>AIM WatchKit App</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSExtension</key>
<dict>
    <key>NSExtensionAttributes</key>
    <dict>
        <key>WKAppBundleIdentifier</key>
        <string><-obfuscated-></string>
    </dict>
    <key>NSExtensionPointIdentifier</key>
    <string>com.apple.watchkit</string>
</dict>
<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
</array>
<key>WKCompanionAppBundleIdentifier</key>
<string><-obfuscated-></string>
<key>WKWatchKitApp</key>
<true/>

1 个答案:

答案 0 :(得分:1)

与我的一个开源应用中的WatchOS plist相比-https://github.com/bravelocation/yeltzland-ios/blob/master/watchkitapp/Info.plist-我没有NSExtension密钥。

这将是我要删除的第一个密钥,以查看是否是罪魁祸首。