I am trying to create an application that will run in the device but it will not be visible in “Application Manager”. means I don’t want any user to see that particular application is running in his device.
How can I do that??
I am trying to create an application that will run in the device but
Share
It Sounds like you are trying to design your app like plugin,
For the above use the following link could have everything to match your expectations,
Background running application service
Anyway if you are having activity and you dont want to show it,
then you can remove the
from the android manifest under activity category tag.
But removing launcher category will not shows your app in the application list only.
It cannot remove it from application manager. So anyone can see your app in the Settings-Applications-Manage Applications.
Untill unless it needs to be a indeed process to hide from UI please follow the things.
basically hiding an app from user doesn’t make sense that much.
Enjoy coding…