I want to hide my Application in Android’s Application Manager.
Is it possible ?
How I can achieve this ?
Thanks.
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 mean Settings->Applications->Manage Application, then you can’t hide your application from there. Even pre-installed application are listed there (though use cannot do some operation on them, like uninstall or move to sdcard). Ability to hide 3rd party apps from user in this place would be considered as security flow. Somebody could install some malicious app and user couldn’t even see it.
If you want to hide your application from Application Launcher, then just do not include
android.intent.category.LAUNCHERin any of your activities. For more readIntents and intents-filtersandIntent.CATEGORY_LAUNCHERdocumentation.