I'm using an intent URL to launch an app from mobile Chrome, or if the app is not installed fallback to a URL. It's described at https://developer.chrome.com/multidevice/android/intents.
Now I have encountered an app that exists with two different package names.
Is there any URL syntax or other solution that lets me try two different package names before falling back to a URL?
The preferred solution would:
- Try to open package name A.
- If A does not exist, try to open package name B.
- If neither was installed, go to fallback URL in mobile Chrome.