Created
January 27, 2022 18:09
-
-
Save ed-george/1a4edf58024d217719f7a7afbba03a0d to your computer and use it in GitHub Desktop.
Unpicking Android Security: Part 1 - Improper Platform Usage (Example 3)
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
<!-- In the main application --> | |
<permission android:name="dev.spght.permission.example.MY_PERMISSION" | |
android:protectionLevel="signature" | |
android:label="A custom permission" /> | |
<!-- In the secondary application --> | |
<uses-permission android:name="dev.spght.permission.example.MY_PERMISSION"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment