error: WatchKit App doesn't contain any WatchKit Extensions whose WKAppBundleIdentifier matches "***

error: WatchKit App doesn‘t contain any WatchKit Extensions whose WKAppBundleIdentifier matches "*****". Verify that the value if WKAppBundleIdentifier in your WatchKit
Extension‘s Info.plist matches the value of CFBundleIndetifier in your WatchKit App‘s Info.plist.

这个错误是bundle ID 的问题.如果你改了iPhone, watch APP 或者 watch extension的Bundle ID ,很有可能出现这个问题.因为这三者是必须要遵循固定的格式的.解决方法如下:

更多细节可查看: http://blog.csdn.net/soindy/article/details/47184933

版权声明:本文为博主原创文章,未经博主允许不得转载。

error: WatchKit App doesn't contain any WatchKit Extensions whose WKAppBundleIdentifier matches "***

时间: 2024-11-10 01:50:02

error: WatchKit App doesn't contain any WatchKit Extensions whose WKAppBundleIdentifier matches "***的相关文章

开发者总结的WatchKit App提交技巧

苹果4月初宣布所有注册开发者已经可以向App Store提交基于WatchKit开发的Apple Watch app了,不过不少开发者遇到了模拟器中没有发现的问题.这篇文章主要收集了一些提交tips和常见问题的解决方案,但首先你要先学习下苹果的官方指南. 文中大部分tips来自于从开发论坛和我自己的一些经验,根据收集情况,这篇文章会不定期更新. iTunes Connect 可在iTunes Connect中上传Apple Watch截图和icon,并且iTunes Connect会在上传了第一

WatchKit App Submission Issues

查看原文: http://leancodingnow.com/watchkit-app-submission-issues/ I submitted a new version of my app Pomodoro Tracker yesterday, adding support for Apple Watch. I encountered several issues when submitting the app, just list them below. 1.Version and B

Apple Watch 开发介绍(一)WatchKit App 架构

WatchKit app和WatchKit extension一起实现了app的界面.当用户在Apple Watch中操作时,WatchKit app从storyboards中选择合适的场景.比如,如果用户查看glance,它就会选择glance场景.在选择场景时,WatchKit通知对应的iPhone启动WatchKit extension来创建管理场景的对象.当常见完全配置好之后,它会显示在Apple Watch上.这种在WatchKit app和WatchKit extension中传递数

Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled.

网上找到两种方法: 1. 2.菜单栏,Tools -> Adnroid -> enable ADB integration Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled.

iOS9 白名单问题 -canOpenURL: failed for URL: "xx" - error:"This app is not allowed to query for scheme xx"

[iOS开发]-canOpenURL: failed for URL: "xx" - error:"This app is not allowed to query for scheme xx" Collection/Bookmark/Share for width under 768px 控制台输出 如图是在我启动一个 Xcode 7 + iOS 9 的 App 之后,控制台的输出. 这在 Xcode 6.4 + iOS 8 时,是不会有的情况,原因是[为了强制增

Android 运行时报错Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled. 的解决办法

解决方法:在菜单栏,Tools->Android->Enable ADB integration勾选就可以了. Android 运行时报错Error running app: Instant Run requires 'Tools | Android | Enable ADB integration' to be enabled. 的解决办法

升级ionic版本后,创建新项目报Error Initializing app错误解决

命令行,进入项目路径后,运行 ionic start myApp --v2 命令执行后,报如下错误 Installing npm packages...Error with start undefinedError Initializing app: There was an error with the spawned command: npminstallThere was an error with the spawned command: npminstallCaught excepti

【iOS开发】-canOpenURL: failed for URL: "xx" - error:"This app is not allowed to query for scheme xx"

如图是在我启动一个 Xcode 7 + iOS 9 的 App 之后,控制台的输出. 这在 Xcode 6.4 + iOS 8 时,是不会有的情况,原因是[为了强制增强数据访问安全, iOS9 默认会把所有从NSURLConnection . CFURL . NSURLSession发出的 HTTP 请求,都改为 HTTPS 请求:iOS9.x-SDK编译时,默认会让所有从NSURLConnection . CFURL . NSURLSession发出的 HTTP 请求统一采用 TLS 1.2(

Error: An App ID with identifier "*****" is not avaliable. Please enter a different string.

Error: An App ID with identifier "*****" is not avaliable. Please enter a different string. 错误原因是这个bundle ID已经被别人提前占用了.这种错误一般发生在你运行别人的项目. 解决办法当然是修改你的bundle ID 了,修改bundle ID 会遇到一大堆问题,具体可参看这篇文章: http://blog.csdn.net/soindy/article/details/47184933