blob: 94e5fd4d5576de71a991430fcfba1c29dbe68890 [file] [log] [blame]
Pierre-Hugues Hussona767e952017-12-09 00:52:13 +01001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="me.phh.treble.overlaypicker">
3
Pierre-Hugues Hussondf1fd452017-12-09 01:29:34 +01004 <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES" />
Pierre-Hugues Hussona767e952017-12-09 00:52:13 +01005 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
6 <application
7 android:label="@string/app_label">
8
9 <receiver android:name=".Starter">
10 <intent-filter>
11 <action android:name="android.intent.action.BOOT_COMPLETED"/>
12 </intent-filter>
13 </receiver>
14 </application>
15
16</manifest>