I do not use use_frameworks
and use_native_modules
in my podfile. It runs as usual when I enable use_native_modules
, but build fail when I use use_frameworks
.
I've read to understand what use_frameworks
for but I'm not aware of the differences between this two.
platform :ios, '8.0'
use_frameworks!
target "CityWhether" do
pod 'Alamofire'
pod 'SwiftyJSON'
use_native_modules!
end