Skip to content

Instantly share code, notes, and snippets.

@ed-george
Created January 27, 2022 18:05
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 ed-george/1881a73bab8ab4eebb1b89865b244742 to your computer and use it in GitHub Desktop.
Save ed-george/1881a73bab8ab4eebb1b89865b244742 to your computer and use it in GitHub Desktop.
Unpicking Android Security: Part 1  -  Improper Platform Usage (Example 1)
<activity
android:name=".login.LoginActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".home.MainActivity"
android:exported="true" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment