Created
January 27, 2022 18:05
-
-
Save ed-george/1881a73bab8ab4eebb1b89865b244742 to your computer and use it in GitHub Desktop.
Unpicking Android Security: Part 1 - Improper Platform Usage (Example 1)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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