我想拥有一个文件# large subplot
plt.subplot2grid((3,3), (0,0), colspan=2, rowspan=3)
,其中包含我想在exclude-pods.json
中爆炸的模块列表
例如:
pod install
podfile
{
"exclude-pods": ["TwitterKit"]
}
platform :ios, '9.0'
target 'app' do
use_frameworks!
pod 'Fabric', '~> 1.7.5'
pod 'Crashlytics', '~> 3.10.1'
pod 'Firebase/Core', '~> 4.8.2'
pod 'Firebase/Messaging', '~> 4.8.2'
pod 'TwitterKit', '~> 2.8.1'
pod 'FBSDKCoreKit', '~> 4.30.0'
pod 'FBSDKLoginKit', '~> 4.30.0'
pod 'FBSDKShareKit', '~> 4.30.0'
end
必须跳过pod install
。
正确的做法是什么?
我的动机:我从ci上的单个源代码构建不同的环境。环境是完全动态的,并且TwitterKit
是在构建时生成的。