1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Uncomment the next line to define a global platform for your project
- # platform :ios, '9.0'
- def all_pods
- inhibit_all_warnings!
- pod 'ReactiveSwift', '~> 4.0'
- pod 'ReactiveCocoa', '~> 8.0'
- pod 'Alamofire'
- pod 'RNCryptor', '~> 5.0'
- pod 'ZBarSDK'
- pod 'Fabric'
- pod 'Crashlytics'
- end
- target 'kunkuk' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- use_frameworks!
- all_pods
- target 'MCPlusTests' do
- inherit! :search_paths
- all_pods
-
- end
- end
- target 'kunkuk_dev' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- use_frameworks!
- all_pods
- end
- target 'kunkuk_inhouse' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- use_frameworks!
- all_pods
- end
- target 'paik' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- use_frameworks!
- all_pods
-
- end
|