blob: 3d1e5649b62ec49fe5d9ea330303d45e8c944610 [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"
Henrique Silvab1ae4ca2018-11-03 17:39:02 -030017 android:allowClearUserData="false"
Henrique Silvaa77c0af2018-11-03 10:17:36 -030018 android:icon="@drawable/ic_launcher"
19 android:label="@string/app_name">
20 <provider
21 android:name=".AmbientPlayHistoryProvider"
22 android:authorities="org.pixelexperience.ambient.play.history.provider"
23 android:exported="true"
24 android:readPermission="org.pixelexperience.ambient.play.history.MANAGE_HISTORY" />
25 </application>
26
Henrique Silvab1ae4ca2018-11-03 17:39:02 -030027</manifest>