Closed danipralea closed 4 years ago
You shouldn't have to add anything in your Podfile. Run the following:
react-native init testhelpscout
cd testhelpscout
yarn add react-native-help-scout # or npm install react-native-help-scout
cd ios
pod install
If you see the same error it has to be something with your CocoaPods version. Which version are you running? Otherwise it has to be something with your project setup. Do you mind sharing your Podfile?
Hello @dimitarnestorov and thank you for your quick reply.
My cocoapods version is 1.8.4
My podfile:
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
use_frameworks!
target 'Project' do
# Pods for Project
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/'
pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
target 'ProjectTests' do
inherit! :search_paths
# Pods for testing
end
use_native_modules!
end
target 'Project-tvOS' do
# Pods for Project-tvOS
target 'Project-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
Try removing use_frameworks!
.
Edit: I added this to my CocoaPods config and got your error. Not sure why you have it in your config.
that seems to have done it. thank you so much @dimitarnestorov
Try removing
use_frameworks!
.Edit: I added this to my CocoaPods config and got your error. Not sure why you have it in your config.
hey @dimitarnestorov I'm coming back to this, cause it generates a lot of other issues with my other frameworks. Are you going to support Beacon as being a framework, instead of statically linked binary in the future?
I don't have the time to do this right now. Also I'm not an iOS developer so I have no idea how to do that. PRs welcome.
On Thu, Oct 31, 2019 at 10:46 AM Danut Pralea notifications@github.com wrote:
Try removing use_frameworks!.
Edit: I added this to my CocoaPods config and got your error. Not sure why you have it in your config.
hey @dimitarnestorov https://github.com/dimitarnestorov I'm coming back to this, cause it generates a lot of other issues with my other frameworks. Are you going to support Beacon as being a framework, instead of statically linked binary in the future?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/codemotionapps/react-native-help-scout/issues/5?email_source=notifications&email_token=ACDCC4XURHP7VVBUDX3UCDDQRKLPJA5CNFSM4JFXZXUKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOECW6Y3Y#issuecomment-548269167, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACDCC4R7MMJ43KOTKP43TWDQRKLPJANCNFSM4JFXZXUA .
0.1.0 released. This should be fixed now.
Hello. I'm having a few issues integrating the library. I first got
Then I added in my
Podfile
:and it actually silenced that error. but now I get
and I'm pretty much in the dark.
My system info:
Do you have any suggestions on how to proceed? Thanks in advance.