排除cocoapods Pod取决于配置文件

时间:2018-10-12 16:46:26

标签: ios continuous-integration cocoapods

我想拥有一个文件# 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是在构建时生成的。

0 个答案:

没有答案