Please answer the following questions for yourself before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Please describe the behavior you are expecting
What is the current behavior?
I follow this https://blog.expo.io/so-you-want-to-build-a-bluetooth-app-with-react-native-and-expo-6ea6a31a151d article to make a project
At step pod install came out this error
[!] Unable to determine Swift version for the following pods:
react-native-ble-plx-swiftdoes not specify a Swift version and none of the targets (myapp2) integrating it have theSWIFT_VERSIONattribute set. Please contact the author or set theSWIFT_VERSIONattribute in at least one of the targets that integrate this pod.
According to this issue https://github.com/CocoaPods/CocoaPods/issues/7327
I modified react-native-ble-plx-swift.podspec one line code
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.1' } --> s.swift_version = "4.1"
And it works for me
`
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "react-native-ble-plx-swift"
s.version = package['version']
s.summary = "React Native Bluetooth Low Energy library - Swift static library"
s.authors = { "Przemys艂aw Lenart" => "przemek.[email protected]" }
s.homepage = "https://github.com/Polidea/react-native-ble-plx#readme"
s.license = "Apache License 2.0"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/Polidea/react-native-ble-plx.git" }
s.source_files = "ios/*/.{swift}"
s.swift_version = "4.1"
end
`
what react-native version are you using?
Here's my package.json
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"exp": "^57.2.1",
"expo": "^33.0.0",
"expokit": "33.0.4",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-ble-plx": "^1.0.3",
"react-native-unimodules": "^0.4.0",
"react-native-web": "^0.11.4"
},
"devDependencies": {
"babel-preset-expo": "^5.1.1"
},
"private": true
}
Just to bump this up. I am also having the exact issue.
I discovered this thread https://github.com/kiwi-bop/flutter_crashlytics/issues/22 and the solution of adding a new Swift file in the project fixed the issue for me
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I solved this issue by making sure the pod is NOT under target '{PROJECT}-tvOSTests' do section once I moved the pods in the main pod section it was resolved. When you link by default the pods are placed under the tvOSTests section for some reaston
````
pod 'react-native-ble-plx', :path => '../node_modules/react-native-ble-plx'
pod 'react-native-ble-plx-swift', :path => '../node_modules/react-native-ble-plx'
````
Add new swift file and select the correct target and this issue will be solved
look like there is so many solutions
it has not had recent activity. It will be closed if no further activity occurs.
Most helpful comment
I discovered this thread https://github.com/kiwi-bop/flutter_crashlytics/issues/22 and the solution of adding a new Swift file in the project fixed the issue for me