Trevor Johns | 5a6b719 | 2016-06-15 10:57:45 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?><!-- |
| 2 | Copyright 2013 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.example.android.directboot" |
| 19 | android:versionCode="1" |
| 20 | android:versionName="1.0"> |
| 21 | |
| 22 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 23 | |
| 24 | <application |
| 25 | android:allowBackup="true" |
| 26 | android:label="@string/app_name" |
| 27 | android:icon="@mipmap/ic_launcher" |
| 28 | android:theme="@style/Theme.AppCompat.Light" |
| 29 | > |
| 30 | |
| 31 | <activity |
| 32 | android:name=".MainActivity" |
| 33 | android:label="@string/app_name" |
| 34 | > |
| 35 | <intent-filter> |
| 36 | <action android:name="android.intent.action.MAIN" /> |
| 37 | <category android:name="android.intent.category.LAUNCHER" /> |
| 38 | </intent-filter> |
| 39 | </activity> |
| 40 | |
| 41 | <receiver android:name=".BootBroadcastReceiver" |
| 42 | android:exported="false" |
| 43 | android:directBootAware="true"> |
| 44 | <!-- Listening the BOOT_COMPLETED action for legacy pre-N devices --> |
| 45 | <intent-filter> |
| 46 | <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" /> |
| 47 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 48 | </intent-filter> |
| 49 | </receiver> |
| 50 | |
| 51 | <service android:name=".alarms.AlarmIntentService" |
| 52 | android:exported="false" |
| 53 | android:directBootAware="true"/> |
| 54 | </application> |
| 55 | </manifest> |