123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # 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 'eumc' 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 'eumc_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 'eumc_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 '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_seoul' 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_ilsan' 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_pusan' 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_sanggye' 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_haeundae' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- use_frameworks!
- all_pods
- end
|