我目前正在开发基于Cordova的iOS应用。我想将VK
社交网络SDK添加到项目中。他们的文档要求将项目作为子项目添加到主项目中。
问题是VK
的子项目有自己的包标识符com.vk.VKSdkFramework
,这当然与我的项目包ID不同。
当我运行cordova build ios --device
时,我收到以下错误:
=== BUILD TARGET VKSdkFramework OF PROJECT VK-ios-sdk WITH
CONFIGURATION Debug ===
Check dependencies
Code Sign error: Provisioning profile does not match bundle identifier:
The provisioning profile specified in your build settings (“iPhone 4s”)
has an AppID of “com.myappid” which does not match your bundle
identifier “com.vk.VKSdkFramework”.
它在Xcode中按预期构建,但不在Cordova中构建。有没有办法忽略对bundle id的检查?