leavez / cocoapods-binary

integrate pods in form of prebuilt frameworks conveniently, reducing compile time
MIT License
1.31k stars 206 forks source link

':binary => true | false', pod install fail ! #154

Open Jacky-LinPeng opened 2 years ago

Jacky-LinPeng commented 2 years ago

1.plugin version:

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