-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No visible @interface for 'RMQConnection' declares the selector #28
Comments
What is the exact version of the rabbitmq pod u installed? |
react-native-rabbitmq : 0.6.7 |
Can u show me youre Podfile |
Pods for ReactNativeDemoProjectpod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' target 'ReactNativeDemoProjectTests' do use_native_modules! target 'ReactNativeDemoProject-tvOS' do Pods for ReactNativeDemoProject-tvOStarget 'ReactNativeDemoProject-tvOSTests' do end post_install do |installer| |
u can see my print screen , without github markdown style |
Can u add pod 'RMQClient', :git => 'https://github.com/rabbitmq/rabbitmq-objc-client.git' in the pod file and install |
I add podfile (line 39) and install , and open project with xcode , clean project then build it , errors: |
my RN version is 0.61.5 > 0.60 |
Because In RMQConnection.h from Podfile don't have param connectionTimeout and readTimeout, so it throw error How we can solve it? |
remove connectionTimeout, readTimeout and writeTimeout. |
package.json
...
"dependencies": {
"@react-native-mapbox-gl/maps": "^7.0.10",
"lz-string": "^1.4.4",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-easy-toast": "^1.2.0",
"react-native-rabbitmq": "^0.6.7"
},
...
npm install react-native-rabbitmq --save
cd ./ios
change in the Podfile line 1: platform :ios, '9.0' to platform :ios, '10.0'
pod install
then I opened Xcode and build project was failed, errors:
No visible @interface for 'RMQConnection' declares the selector 'initWithUri:channelMax:frameMax:heartbeat:connectTimeout:readTimeout:writeTimeout:syncTimeout:delegate:delegateQueue:'
what should I do ?
The text was updated successfully, but these errors were encountered: