Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
Jacky-LinPeng opened this issue Nov 1, 2021 · 0 comments
Open

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

Jacky-LinPeng opened this issue Nov 1, 2021 · 0 comments

Comments

@Jacky-LinPeng
Copy link

Jacky-LinPeng commented Nov 1, 2021

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant