I am having trouble while opening the gallery using linking on android devices. It works perfectly on iOS. I am using this.
openPhotos = () =>{
switch(Platform.OS){
case "ios":
Linking.openURL("photos-redirect://");
break;
case "android":
Linking.openURL("content://media/internal/images/media");
break;
default:
console.log("Could not open gallery app");
}
}
A pop is shown on android, and after selecting photos, a black screen appears.here is the screenshot for the same.