Reputation: 2801
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
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