You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugin:
Successfully installed cocoapods-binary-0.4.4
Parsing documentation for cocoapods-binary-0.4.4
#pod
pod --version
1.11.2
2.use all_binary wrok fine:
platform :ios, '9.0'
#引入插件
plugin 'cocoapods-binary'
#必须打开
use_frameworks!
#该值打开后 默认所有的依赖都将开启二进制化
all_binary!
target 'podBinaryDemo' do
pod 'AFNetworking'
pod 'SDWebImage'
end
3.but SET 'binary => false' ,pod install get error:
pod install
🚀 Prebuild frameworks
Analyzing dependencies
[!] Unknown external source parameters for `AFNetworking`: `{:binary=>false}`
platform :ios, '9.0'
#引入插件
plugin 'cocoapods-binary'
#必须打开
use_frameworks!
#该值打开后 默认所有的依赖都将开启二进制化
all_binary!
target 'podBinaryDemo' do
pod 'AFNetworking',:binary => false
pod 'SDWebImage'
end
The text was updated successfully, but these errors were encountered:
1.plugin version:
2.use all_binary wrok fine:
3.but SET 'binary => false' ,pod install get error:
The text was updated successfully, but these errors were encountered: