You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have the following issue when running after fresh install (already linked and installed cocoapods):
ld: warning: directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.4.sdk/System/iOSSupport/System/Library/Frameworks'
Undefined symbols for architecture arm64:
"_OBJC_METACLASS_$_RCTEventEmitter", referenced from:
_OBJC_METACLASS_$_RNLocation in RNLocation.o
"_OBJC_CLASS_$_RCTEventEmitter", referenced from:
_OBJC_CLASS_$_RNLocation in RNLocation.o
"_OBJC_CLASS_$_RCTConvert", referenced from:
objc-class-ref in RNLocation.o
"_RCTRegisterModule", referenced from:
+[RNLocation load] in RNLocation.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Does somebody have seen anything similar before?
The text was updated successfully, but these errors were encountered:
@krlol please add this to your Podfile
pre_install do |installer|
installer.pod_targets.each do |pod|
if pod.name.eql?('react-native-location')
def pod.build_type
Pod::BuildType.static_library
end
end
end
end
Hello, I have the following issue when running after fresh install (already linked and installed cocoapods):
Does somebody have seen anything similar before?
The text was updated successfully, but these errors were encountered: