blob: c3511ce4fa26dc0ec813d68e046afba4f7db71cb [file] [log] [blame]
Henrique Silvaa77c0af2018-11-03 10:17:36 -03001<?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>