Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check if android app is installed from web page browser

I have an Android app and I'm building a corresponding website. I would like to write a code in my website home page "index.php" which check if my app is installed direct the user to thanks page url , or if the app isn't installed redirect user to download page

Does someone know how to implement this procedure?

Thanks in advance for your help.

like image 631
Dr.Mezo Avatar asked Sep 17 '25 17:09

Dr.Mezo


1 Answers

Yes, you can do if the user has accessed your webpage from Chrome browser(Chrome 59+).

You need to create the Webapp manifest for your website and configure your app's package name. Now from your website, you can check whether your app is installed or not.

You can find the documentation here.

like image 195
Kamalakannan J Avatar answered Sep 20 '25 06:09

Kamalakannan J