4

With ReactNative CameraRoll, you can save a photo/video to an existing album on your device's camera roll. Is there a way to create the album, if it does not yet exist, before saving to it?

Micaela
  • 61
  • 3

1 Answers1

0

When you use the react native react-native-cameraroll/react-native-cameraroll package and call CameraRoll.save({type: "photo", album: "newAlbumTest"}), (where "newAlbumTest" is an album that did not exist before) this will automatically create a new album on the user's CameraRoll.

Aaron Landy
  • 51
  • 1
  • 2