123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- use_frameworks!
- platform :ios, '10.0'
- source 'https://github.com/CocoaPods/Specs.git'
- source 'https://git.yishihui.com/iOS/BFSpecs.git'
- target 'BFRecordScreenKit_Example' do
- pod 'BFRecordScreenKit', :path => '../'
- ## Pods-for-AppStore
- # pod 'BFCommonKit', '1.4.9'
- # pod 'BFNetRequestKit', '0.2.3'
- # pod 'BFUIKit', '0.1.1'
- # pod 'BFMaterialKit', '0.1.6'
- # pod 'BFLogger', '0.1.0'
- # pod 'BFMediaKit', '0.1.0'
- ## Pods-for-Archive(Jenkins)
- pod 'BFCommonKit', :git => 'https://git.yishihui.com/iOS/BFCommonKit.git'
- pod 'BFNetRequestKit', :git => 'https://git.yishihui.com/iOS/BFNetRequestKit.git'
- pod 'BFUIKit', :git => 'https://git.yishihui.com/iOS/BFUIKit.git'
- pod 'BFMaterialKit', :git => 'https://git.yishihui.com/iOS/BFMaterialKit.git'
- pod 'BFLogger', :git => 'https://git.yishihui.com/iOS/BFLogger.git'
- pod 'BFMediaKit', :git => 'https://git.yishihui.com/iOS/BFMediaKit.git'
- ## ak:Pods-for-testing
- # pod 'BFCommonKit', :path => '/Users/ak/Desktop/TZFrameworks/BFCommonKit/'
- # pod 'BFNetRequestKit', :path => '/Users/ak/Desktop/TZFrameworks/BFNetRequestKit/'
- # pod 'BFUIKit', :path => '/Users/ak/Desktop/TZFrameworks/BFUIKit/'
- # pod 'BFMaterialKit', :path => '/Users/ak/Desktop/TZFrameworks/BFMaterialKit/'
- # pod 'BFLogger', :path => '/Users/ak/Desktop/TZFrameworks/BFLogger/'
- # pod 'BFMediaKit', :path => '/Users/ak/Desktop/TZFrameworks/BFMediaKit/'
- ## zq:Pods-for-testing
- # pod 'BFCommonKit', :path => '../BFCommonKit/'
- # pod 'BFNetRequestKit', :path => '../BFNetRequestKit/'
- # pod 'BFUIKit', :path => '../BFUIKit/'
- # pod 'BFMaterialKit', :path => '../BFMaterialKit/'
- # pod 'BFLogger', :path => '../BFLogger/'
- # pod 'BFMediaKit', :path => '../BFMediaKit/'
- ## ww:Pods-for-testing
- # pod 'BFCommonKit', :path => '../../../BFCommonKit/Trunk'
- # pod 'BFNetRequestKit', :path => '../../../BFNetRequestKit/Trunk'
- # pod 'BFUIKit', :path => '../../../BFUIKit/Trunk'
- # pod 'BFMaterialKit', :path => '../../../BFMaterialKit/Trunk'
- # pod 'BFLogger', :path => '../../../BFLogger/Trunk'
- # pod 'BFMediaKit', :path => '../../../BFMediaKit/Trunk'
-
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- #if target.name =="App" || target.name =="App1"
- target.build_configurations.each do |config|
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
- end
- #end
- end
- end
-
- end
|