D:\hjd\panorama-app-rn\node_modules\react-native\React\AppSetup\RCTAppSetupUtils.mm里面用到了FKUserDefaultsPlugin
时间: 2023-07-06 18:33:58 浏览: 137
是的,你是对的。FKUserDefaultsPlugin 是 React Native 框架中用来处理 NSUserDefaults 的第三方库。实际上,React Native 框架中已经集成了 FKUserDefaultsPlugin 库,所以你并不需要自己手动安装它。
可能你的问题出现在 FKUserDefaultsPlugin 库的版本上。你可以尝试升级 React Native 框架,以确保你使用的是最新版本的 FKUserDefaultsPlugin 库。
另外,你也可以尝试在项目的 Podfile 文件中添加以下依赖项:
```
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'RCTText',
'RCTImage',
'RCTNetwork',
'RCTWebSocket',
'RCTAnimation',
'RCTLinkingIOS',
'RCTSettings',
'RCTVibration',
'RCTActionSheet',
'RCTBlob',
'RCTGeolocation',
'RCTImagePickerIOS',
'RCTPushNotification',
'RCTSettings',
'RCTStatusBar',
'RCTVibration',
'RCTLinkingIOS',
'RCTImageEditing',
'RCTFBSDK',
'RCTAsyncLocalStorage',
'RCTBlob',
'RCTCameraRoll',
'RCTImageStore',
'RCTLocationObserver',
'RCTNetInfo',
'RCTSettings',
'RCTText',
'RCTTiming',
'RCTWebSocket',
'RCTAdSupport',
'RCTAppState',
'RCTCamera',
'RCTClipboard',
'RCTDeviceEventEmitter',
'RCTFBSDKShareDialog',
'RCTImageLoader',
'RCTKeyboard',
'RCTLinking',
'RCTNativeModule',
'RCTPermissions',
'RCTPhotoLibrary',
'RCTShare',
'RCTSourceCode',
'RCTTest',
'RCTTVNavigation',
'RCTTVRemoteHandler',
'RCTView',
'RCTWebSocketObserver'
]
```
这将确保你的项目使用的是 React Native 框架的最新版本,并且已经包含了最新版本的 FKUserDefaultsPlugin 库。
阅读全文