18

I am new to android development. I want to make one background application, so that it keeps running in background, and it's without any UI, and even its icon do not appear on desktop. In short it's a stealth application.
Is it possible?

Tuti
  • 105
  • 7
Mudassir
  • 255
  • 2
  • 4
  • 12

2 Answers2

18

This is certainly possible. To create an app that does not have an icon in the launch pad, just remove the Activity with the android.intent.category.LAUNCHER category from the AndroidManifest.xml.

To implement your background application it strongly depends on what you want to do. You can create a Service for long running tasks, BroadcastReceivers to react to specific events or Activities with intent filters.

Be aware, however, that your application will be visible in both the file system and in the settings under 'Manage Applications'.

Josef Pfleger
  • 74,165
  • 16
  • 97
  • 99
  • 5
    Hi, I read [here](http://stackoverflow.com/questions/8531926/how-to-start-a-service-when-apk-is-installed-for-the-first-time) that after installation the app is in stopped mode and does not do anything until it is started by user interaction, for example by clicking its icon. Now, if the app does not have a UI or icon, and is supposed to run as a stealth application, how does it start its service? Should the user boot the phone after installation of the app? – zardosht Nov 12 '13 at 12:35
8

Yeah it's possible look up Service

Read more about the service in tutorials

ServicesDemo - Using Android Services

How Android Services Work

Android Service creation and consumption

Pentium10
  • 204,586
  • 122
  • 423
  • 502