How i can develop an app which will not appear in launching menu (neither its icon nor launcher).
I will launch it by some other ways.
How i can develop an app which will not appear in launching menu (neither
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do not have any activities with an
<intent-filter>for theMAINaction andLAUNCHERcategory.On Android 3.1+, such “other ways” may not work. The user has to manually launch one of your activities for anything else of your app to work (e.g.,
BroadcastReceiver).