blob: 7df39924195c698200e55f9dc19ee6d9e08bc608 [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"
17 package="com.android.emergency">
18
Akshay Kannan44ef39d2016-01-26 09:08:41 -080019 <uses-permission android:name="android.permission.CALL_PHONE" />
Akshay Kannancdb6c142016-01-20 18:25:44 -080020 <uses-permission android:name="android.permission.READ_CONTACTS" />
mariagpuyol3c109f12016-03-11 11:23:12 -080021 <uses-permission android:name="android.permission.MANAGE_USERS" />
Akshay Kannancdb6c142016-01-20 18:25:44 -080022
23 <application
mariagpuyolaf026242016-02-19 16:48:19 -080024 android:label="@string/app_label"
mariagpuyol4358edd2016-02-23 10:07:00 -080025 android:supportsRtl="true">
Akshay Kannancdb6c142016-01-20 18:25:44 -080026 <activity
mariagpuyol58748352016-03-09 15:36:28 -080027 android:name=".view.ViewInfoActivity"
mariagpuyolab50ae12016-03-07 10:37:35 -080028 android:theme="@style/AppThemeEmergency"
Akshay Kannancdb6c142016-01-20 18:25:44 -080029 android:showOnLockScreen="true">
30 <intent-filter>
31 <action android:name="android.telephony.action.EMERGENCY_ASSISTANCE" />
32 <category android:name="android.intent.category.DEFAULT" />
33 </intent-filter>
34 </activity>
35
mariagpuyola2a997e2016-02-18 11:25:29 -080036 <activity
mariagpuyol58748352016-03-09 15:36:28 -080037 android:name=".edit.EditInfoActivity"
mariagpuyol4b75daf2016-03-08 15:16:57 -080038 android:label="@string/edit_emergency_info_label"
mariagpuyol3c109f12016-03-11 11:23:12 -080039 android:theme="@style/AppTheme"
40 android:launchMode="singleTask">
Akshay Kannancdb6c142016-01-20 18:25:44 -080041 <intent-filter>
mariagpuyol4aca4eb2016-01-28 14:58:46 -080042 <action android:name="android.settings.EDIT_EMERGENGY_INFO" />
mariagpuyola1702de2016-01-26 10:30:27 -080043 <category android:name="android.intent.category.DEFAULT" />
44 </intent-filter>
Akshay Kannancdb6c142016-01-20 18:25:44 -080045 </activity>
46 </application>
47
Akshay Kannan44ef39d2016-01-26 09:08:41 -080048</manifest>