Created
August 16, 2012 03:53
-
-
Save dgalling/3366494 to your computer and use it in GitHub Desktop.
Correct Android Manifest
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
<manifest ...> | |
<permission android:name="com.example.project.EXAMPLE_PERMISSION" android:protectionLevel="signature"/> | |
<uses-permission android:name="com.example.project.EXAMPLE_PERMISSION"/> | |
<application ...> | |
<provider android:name=".ExampleProvider" android:grantUriPermissions="false" android:permission="com.example.project.EXAMPLE_PERMISSION"/> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment