user1166635
user1166635

Reputation: 2801

How to hide an application icon from a device's menu?

I have the following question - I need that my user can't see my application's icon on his menu, only in his list of programms installed. Is it possible?

Upvotes: 1

Views: 177

Answers (1)

cstrutton
cstrutton

Reputation: 6197

In your AndroidManifest.xml

remove the following line (which tells android to show the app in the launcher):

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

Upvotes: 2

Related Questions