I want to limit which apps unauthorized users use on my phone... I want to create a simple webpage which will contain a list links to only the android apps that I want...
<html>
<body>
<a href="../link/to/app">Calculator</a>
<a href="../link/to/app">Chrome</a>
<a href="../link/to/app">Wikipedia</a>
<a href="../link/to/app">WordWeb</a>
<a href="../link/to/app">GoogleEarth</a>
<a href="../link/to/app">GoogleMaps</a>
<a href="../link/to/app">YouTube</a>
</body>
</html>
I don't want to use some app locker or minimalist launcher. I'll remove all apps from the app drawer and just pin this webpage to the homescreen. When the icon is clicked, webpage opens in a browser, user clicks on links to open the app, the app launches...
I don't want this to work globally... Just a local webpage... (location of app installation changes on different phones).
How can I find the href to locally installed apps?