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
Here are some related issues in the RN repo: [Issue 30202](https://github.com/facebook/react-native/pull/30202) and [Issue 29178](https://github.com/facebook/react-native/pull/29178). This bug could be fixed in a future version of react native, but a workaround I've found is to do the following:
49
49
50
+
<imgsrc="./files/resolve-error-iOS.png">
51
+
50
52
1. Open your `ios/project.xcworkspace` project.
51
53
2. In the project navigator panel (located on the right side of Xcode), select your project group (i.e. the item with the blueprint icon).
52
54
3. The Xcode project editor should appear. In the left panel, under the "Project" section, select your project (if it isn't already selected).
@@ -61,18 +63,22 @@ Here are some related issues in the RN repo: [Issue 30202](https://github.com/fa
61
63
- Try clearing out Xcode's `derivedData` directory: `rm -rf ~/Library/Developer/Xcode/DerivedData/*` (check out this [gist](https://gist.github.com/maciekish/66b6deaa7bc979d0a16c50784e16d697) for instructions on how to clean up Xcode)
62
64
- Try clearing out the `Cocoapods` cache: `rm -rf "${HOME}/Library/Caches/CocoaPods"` (and then try running `pod install` again).
63
65
64
-
<imgsrc="./files/resolve-error-iOS.png">
65
-
66
66
### Android
67
67
68
+
> Add this lines in `settings.gradle` then `Sync Project with Gradle Files`
69
+
70
+
```
71
+
include ':picture_library'
72
+
project(':picture_library').projectDir = new File(rootProject.projectDir, '../node_modules/@baronha/react-native-multiple-image-picker/picture_library')
| emptyMessage | string | No albums | iOS | Show string when gallery empty |
122
128
| maximumMessageTitle | string | Notification | iOS | The title of the alert when the user chooses to exceed the specified number of pictures |
123
129
| messageTitleButton | string | Notification | iOS | The title of button in the alert when the user chooses to exceed the specified number of pictures |
124
-
| maximumMessage | string | You have selected the maximum number of media allowed | iOS | The description of the alert when the user chooses to exceed the specified number of pictures |
125
130
| tapHereToChange | string | Tap here to change | iOS | The sub-title in navigation bar (under albums's name in iOS) |
131
+
| maximumMessage | string | You have selected the maximum number of media allowed | Both | The description of the alert when the user chooses to exceed the specified number of pictures |
132
+
| maximumVideoMessage | string | You have selected the maximum number of media allowed | Both | The description of the alert when the user chooses to exceed the specified number of videos |
126
133
127
134
#### selectedAssets (Important)
128
135
@@ -150,7 +157,6 @@ Get an Array value only. If you want React Native Multiple Image Picker to re-se
"description": "react-native-multiple-image-picker enables application to pick images and videos from multiple smart album in iOS/Android, similar to the current facebook app.",
0 commit comments