Reputation: 43528
I want to develop an android application.
When installing the application, I do not want that the application logo added in the "Applications" menu neither in the "Home". I want that my application run as a daemon and configurable from the "settings" and could stop/start it from the "settings" too
Is it possible to do that with Android?
Upvotes: 0
Views: 85
Reputation: 75629
Hm, judging based on "icon" being called "logo" etc I bet you got not much experience with the platform, but yes, you can have app not listed but that's usually implies certain other limitations as well. So "choose right tool for the task" case here. If you want to run in fully "stealath" mode you need to be system app which means you need to have own ROM as well as no external app can be system app on most devices (rooted is the exception but that's other story)
Upvotes: 2
Reputation: 1006869
Only by making your own custom ROM mod, containing your own custom build of Android. SDK applications cannot modify the Settings app. Also, your app's daemon will never run, because nothing exists on the device that would start it.
Upvotes: 4