using the latest version of react-native-image-picker
launchImageLibrary => no timestamp and no location on ios
launchCamera=> no timestamp and no location on both ios & android
Please assist
This is because of the check on this line https://github.com/react-native-community/react-native-image-picker/blob/master/ios/ImagePickerManager.m#L207
Permissions to the photo library are not requested for newer iOS version. So you don't need permissions to select an image from the Library but you need permissions to get timestamp and location data.
I will submit a PR to resolve the issue with the photo library not returning data. When using launchCamera you have to capture location and timestamp yourself in your js code
@levipro any updates?
+1
+1