Analyzing dependencies
[!] The dependency `SVProgressHUD` is not used in any concrete target.
The dependency `Colours` is not used in any concrete target.
platform :ios, ‘7.0‘
pod ‘SVProgressHUD‘, ‘~> 1.0‘
pod ‘Colours‘, ‘~> 5.3.0‘
改成:
platform :ios, ‘8.0‘
inhibit_all_warnings!
target ‘Voice2Note‘ do
pod ‘SVProgressHUD‘
pod ‘Colours‘
end