Pierre-Hugues Husson | a767e95 | 2017-12-09 00:52:13 +0100 | [diff] [blame] | 1 | <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> |