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 | |
Pierre-Hugues Husson | df1fd45 | 2017-12-09 01:29:34 +0100 | [diff] [blame] | 4 | <uses-permission android:name="android.permission.CHANGE_OVERLAY_PACKAGES" /> |
Pierre-Hugues Husson | a767e95 | 2017-12-09 00:52:13 +0100 | [diff] [blame] | 5 | <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> |