I am new in android so facing some problems. At the time of installation I want to check that an app is installed or not. And how can I show the message that "Please install the required app".
Thanks in advance
I am new in android so facing some problems. At the time of installation I want to check that an app is installed or not. And how can I show the message that "Please install the required app".
Thanks in advance
There is no way for your code to run at the time of installation because, by definition, your code is not yet on the device. And there is no way at the present time to specify some sort of dependency on another app that the Play Store (or any other distribution channel AFAIK) will honor.
Once the code is on the device, and the user runs your launcher activity, you can see if the other app is installed and, if not, prompt the user to install it.