Reputation: 21
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
Reputation: 3742
You can delete this line in your AndroidManifest.xml file.
<category android:name="android.intent.category.LAUNCHER" />
Upvotes: 1
Reputation: 72553
Delete that from your manifest:
<category android:name="android.intent.category.LAUNCHER" />
Upvotes: 1