Is there any way (intent) to know if my application is installed ?
I followed the below link, but my application don’t get the intent when my app is installed
Is there any way (intent) to know if my application is installed ? I
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to execute any code from app A, it has to be already installed (it’s obvious, isn’t it?), so you can’t check from your app A whether your app APP is installed or not.
It’s like if you want to know when you are dead: after you die, it will be impossible to know it. On the other hand, someone else can know when you die… same for the Android scenario: an app B can know whether app A is installed or not (by using
getInstalledPackagesor intents or whatever).