From my app, I'm trying to check if another app is installed (in my example, Google Maps). So I tried to use:
Linking.canOpenURL('comgooglemaps://?daddr=' + address + '&directionsmode=walking').then(supported => {...}).catch(err => console.error('An error occurred', err));
But it returns that it's not supported so it's like Google Maps is not installed. Do you know a way to solve this issue?