'Is there a way to get scheme url of an installed app? (Android)
From the mobile web, I am trying to open an application that I installed from the store.
So far, I found out that apps can be opened by scheme URLs and deep links, but couldn't find out a way to get the scheme URL of the app implemented by others.
The best I can do for now is open the google play store link. Is there a way to open the app directly?
Solution 1:[1]
Seems like I didn't need the scheme URL after all.
I just needed to go to the google play store site and get the app id,
Then
location.href = market://launch?id={APP_ID};
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | user3062950 |
