react-native-ios-charts
react-native-ios-charts copied to clipboard
execute abbreviateNumber encounter error
I encounter error with below versions,
package.json
"react-native-ios-charts": "^0.3.0",
Podfile
platform :ios, '8.0'
use_frameworks!
target 'TapDB' do
pod 'SwiftyJSON', git: 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Charts', git: 'https://github.com/liuxuan30/Charts.git', branch: 'Swift-3.0'
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
my xcode version is 8.2.1
and use swift 3.0
with legacy set to no;
and always crash in below line,
how could I fix it?
thanks for your time,
regards.