MuNitCat
MuNitCat
> > facing the same issue, if there is any other hacky way or anything that would be great! > > Has the problem been solved? See if this helps...
出现原因: react-native-nitro-modules 缺少 /headers/nitromodules/ 与 /headers/nitromodules/NitroModules/ 导致的 当我加上这些文件夹后, 每次变动依赖后,构建项目都没问题了 两个处理方法, 选择一个即可: 两个patch 选择一个就行了 方法1: 补丁 `@baronha+react-native-multiple-image-picker+2.2.3.patch` ``` diff --git a/node_modules/@baronha/react-native-multiple-image-picker/android/build.gradle b/node_modules/@baronha/react-native-multiple-image-picker/android/build.gradle index 492cd51..c3ead5e 100644 --- a/node_modules/@baronha/react-native-multiple-image-picker/android/build.gradle +++ b/node_modules/@baronha/react-native-multiple-image-picker/android/build.gradle @@ -18,6...
有点记不清是哪一个来着了,需要在info.plist 里面进行设置, 这两个中的一个来着 设置以后这些第三方SDK会显示对应的支持的语言
npx react-native info info Fetching system and libraries information... System: OS: macOS 14.5 CPU: (8) arm64 Apple M1 Memory: 110.13 MB / 16.00 GB Shell: version: "5.9" path: /bin/zsh Binaries:...
I find in this, `node_modules/@baronha/react-native-multiple-image-picker/android/src/main/java/com/margelo/nitro/multipleimagepicker/MultipleImagePickerImp.kt` ``` val showGif = config.mediaType != MediaType.VIDEO // add this to fix PictureSelector.create(activity) .openGallery(chooseMode) .setImageEngine(imageEngine) .setSelectedData(dataList) .setSelectorUIStyle(style) .isGif(showGif) // add this to fix .apply ```