2
Xcode比我的實際設備上的項目運行時間要長得多。在模擬器上運行時,編譯時間要快得多。下面是正在服用一種長時間在報告導航報告的一部分 -Xcode中的編譯時間比平時長
我試圖與podfile搞亂的時間縮短,但沒有任何工作。這裏的代碼 -
target 'Pluto' do
use_frameworks!
pod 'pop', '~> 1.0'
pod 'Firebase'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'Firebase/Database'
pod 'Firebase/Messaging'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift3'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end