lilya
lilya

Reputation: 21

Android App without launch icons

I start to create small apps android that run in background, but I can not find how to put without launch icon, can you help me? Thank you

Upvotes: 0

Views: 152

Answers (2)

okarakose
okarakose

Reputation: 3742

You can delete this line in your AndroidManifest.xml file.

<category android:name="android.intent.category.LAUNCHER" />

Upvotes: 1

Ahmad
Ahmad

Reputation: 72553

Delete that from your manifest:

 <category android:name="android.intent.category.LAUNCHER" />

Upvotes: 1

Related Questions