Skip to content

Instantly share code, notes, and snippets.

@luckycreationsindia
Last active March 15, 2016 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckycreationsindia/16d21ce304b5f1fc1d5c to your computer and use it in GitHub Desktop.
Save luckycreationsindia/16d21ce304b5f1fc1d5c to your computer and use it in GitHub Desktop.
A Sample Snippet to Hide App in Android - Manifest Method
<activity
android:name="com.lcigroup.hideapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" /> //If APP requires broadcast receiver add this line
<!—
<category android:name="android.intent.category.LAUNCHER" /> //By commenting this the APP will not be shown in launcher
-->
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment