Henrique Silva | a77c0af | 2018-11-03 10:17:36 -0300 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?>
|
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 | package="org.pixelexperience.ambient.play.history"
|
| 4 | android:versionCode="1"
|
| 5 | android:versionName="1.0">
|
| 6 |
|
| 7 | <permission
|
| 8 | android:name="org.pixelexperience.ambient.play.history.MANAGE_HISTORY"
|
| 9 | android:protectionLevel="signature|privileged" />
|
| 10 |
|
| 11 | <uses-sdk
|
| 12 | android:minSdkVersion="28"
|
| 13 | android:targetSdkVersion="28" />
|
| 14 |
|
| 15 | <application
|
| 16 | android:allowBackup="false"
|
| 17 | android:icon="@drawable/ic_launcher"
|
| 18 | android:label="@string/app_name">
|
| 19 | <provider
|
| 20 | android:name=".AmbientPlayHistoryProvider"
|
| 21 | android:authorities="org.pixelexperience.ambient.play.history.provider"
|
| 22 | android:exported="true"
|
| 23 | android:readPermission="org.pixelexperience.ambient.play.history.MANAGE_HISTORY" />
|
| 24 | </application>
|
| 25 |
|
| 26 | </manifest> |