blob: 9c8a25bd5bf55c7983afd5b9029ce435a86de767 [file] [log] [blame]
Akshay Kannancdb6c142016-01-20 18:25:44 -08001<?xml version="1.0" encoding="utf-8"?>
mariagpuyolea078ed2016-03-07 20:02:10 -08002<!-- Copyright (C) 2016 The Android Open Source Project
mariagpuyola2a997e2016-02-18 11:25:29 -08003
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-->
Akshay Kannancdb6c142016-01-20 18:25:44 -080016<manifest xmlns:android="http://schemas.android.com/apk/res/android"
mariagpuyol476a25f2016-04-04 11:47:50 -070017 package="com.android.emergency"
18 android:sharedUserId="com.android.emergency.uid">
Akshay Kannancdb6c142016-01-20 18:25:44 -080019
Akshay Kannan44ef39d2016-01-26 09:08:41 -080020 <uses-permission android:name="android.permission.CALL_PHONE" />
Akshay Kannancdb6c142016-01-20 18:25:44 -080021 <uses-permission android:name="android.permission.READ_CONTACTS" />
mariagpuyol3c109f12016-03-11 11:23:12 -080022 <uses-permission android:name="android.permission.MANAGE_USERS" />
Akshay Kannancdb6c142016-01-20 18:25:44 -080023
24 <application
mariagpuyol39bfbc52016-03-16 18:12:42 -070025 android:defaultToDeviceProtectedStorage="true"
mariagpuyol85fac1c2016-03-30 13:22:47 -070026 android:icon="@mipmap/ic_local_hospital_24dp"
mariagpuyol39bfbc52016-03-16 18:12:42 -070027 android:directBootAware="true"
mariagpuyolaf026242016-02-19 16:48:19 -080028 android:label="@string/app_label"
mariagpuyol4358edd2016-02-23 10:07:00 -080029 android:supportsRtl="true">
Akshay Kannancdb6c142016-01-20 18:25:44 -080030 <activity
mariagpuyol58748352016-03-09 15:36:28 -080031 android:name=".view.ViewInfoActivity"
mariagpuyolab50ae12016-03-07 10:37:35 -080032 android:theme="@style/AppThemeEmergency"
mariagpuyolded933e2016-03-30 14:35:54 -070033 android:taskAffinity="com.android.settings"
mariagpuyolecf06292016-03-24 18:33:42 -070034 android:showOnLockScreen="true"
mariagpuyol85fac1c2016-03-30 13:22:47 -070035 android:icon="@mipmap/ic_launcher_settings"
mariagpuyolecf06292016-03-24 18:33:42 -070036 android:launchMode="singleTask">
Akshay Kannancdb6c142016-01-20 18:25:44 -080037 <intent-filter>
38 <action android:name="android.telephony.action.EMERGENCY_ASSISTANCE" />
39 <category android:name="android.intent.category.DEFAULT" />
40 </intent-filter>
41 </activity>
42
mariagpuyola2a997e2016-02-18 11:25:29 -080043 <activity
mariagpuyol58748352016-03-09 15:36:28 -080044 android:name=".edit.EditInfoActivity"
mariagpuyol85fac1c2016-03-30 13:22:47 -070045 android:icon="@mipmap/ic_launcher_settings"
mariagpuyol3c109f12016-03-11 11:23:12 -080046 android:theme="@style/AppTheme"
mariagpuyolded933e2016-03-30 14:35:54 -070047 android:taskAffinity="com.android.settings"
mariagpuyol3c109f12016-03-11 11:23:12 -080048 android:launchMode="singleTask">
Akshay Kannancdb6c142016-01-20 18:25:44 -080049 <intent-filter>
mariagpuyol4aca4eb2016-01-28 14:58:46 -080050 <action android:name="android.settings.EDIT_EMERGENGY_INFO" />
mariagpuyola1702de2016-01-26 10:30:27 -080051 <category android:name="android.intent.category.DEFAULT" />
52 </intent-filter>
mariagpuyol7ee3df32016-03-30 12:14:39 -070053 <intent-filter>
54 <action android:name="android.emergency.EDIT_EMERGENCY_CONTACTS" />
55 <category android:name="android.intent.category.DEFAULT" />
56 </intent-filter>
Akshay Kannancdb6c142016-01-20 18:25:44 -080057 </activity>
mariagpuyol8d971522016-04-07 17:31:41 -070058
Akshay Kannancdb6c142016-01-20 18:25:44 -080059 </application>
60
Akshay Kannan44ef39d2016-01-26 09:08:41 -080061</manifest>