我们有一个用户在TestFlight上初始安装我们的应用程序,她收到以下警告:
提醒标题: Incompatible With Apple Watch
提醒说明: The app can be tested but isn't compatible with your Apple Watch. If you install the app, you'll delete its Apple Watch app and data.
我能提出的所有"独特"属性:
3.0
.3.1.3
)上使用非Series 2 Apple Watch .有什么想法提出这个警报?
当我们使用两个源时,Podfile
我们正在与主规范存储库中存在的CocoaPod以及我们的私有规范存储库中发生冲突.Podfile
假设我们有一个AFNetworking
我们更喜欢使用的私有CocoaPod的示例:
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/PersonalSpecs/Specs.git'
use_frameworks!
target :MyTarget do
platform :ios, '8.1'
pod 'AFNetworking'
end
Run Code Online (Sandbox Code Playgroud)
当我们运行pod install
时Podfile
,CocoaPods最终选择主规范存储库中存在的规范而不是我们自己的规范.
我不想指定git
pod 的路径,因为这样可以避免我们正常的规范发布过程.我也尝试改变源定义的顺序.
我们可以做任何事情让CocoaPods使用我们的私有规范存储库作为给定pod包含的来源吗?