Skip to content

Instantly share code, notes, and snippets.

@dgalling
Created August 16, 2012 03:53
Show Gist options
  • Save dgalling/3366494 to your computer and use it in GitHub Desktop.
Save dgalling/3366494 to your computer and use it in GitHub Desktop.
Correct Android Manifest
<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