Podfile 752 字节
Newer Older
Y
yixiang 已提交
1 2
platform:ios,8.0
#use_frameworks!
Y
yixiang 已提交
3
#inhibit_all_warnings! #消除第三方仓库的警告
Y
yixiang 已提交
4 5 6 7 8 9 10 11 12 13 14
source 'git@github.com:CocoaPods/Specs.git'

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['COMPILER_INDEX_STORE_ENABLE'] = "NO"
        end
    end
end

target :'DoraemonKitDemo' do
15
  #pod 'DoraemonKit', :subspecs => ['Core','WithLogger','WithGPS','WithLoad','WithWeex', 'WithDatabase', 'WithMLeaksFinder'],  :path => '../../'
Y
fix  
yixiangboy 已提交
16 17
  #pod 'DoraemonKit', :subspecs => ['Core'],  :path => '../../'
  pod 'DoraemonKit', :subspecs => ['Core','WithGPS','WithLoad'], :path => '../../'
18 19
  pod 'AFNetworking','2.6.3'
  pod 'SDWebImage', '5.0.6'
Y
yixiang 已提交
20
end