blob: b5f85da82b3e84ae62014f427f13dff1727bb372 [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
4 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
5 <application
6 android:label="@string/app_label">
7
8 <receiver android:name=".Starter">
9 <intent-filter>
10 <action android:name="android.intent.action.BOOT_COMPLETED"/>
11 </intent-filter>
12 </receiver>
13 </application>
14
15</manifest>