blob: 94045097f9efa137f486def53a38a5ab2400f042 [file] [log] [blame]
Akshay Kannancdb6c142016-01-20 18:25:44 -08001<?xml version="1.0" encoding="utf-8"?>
mariagpuyola2a997e2016-02-18 11:25:29 -08002<!-- Copyright (C) 2007 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-->
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" />
21
22 <application
mariagpuyolaf026242016-02-19 16:48:19 -080023 android:label="@string/app_label"
mariagpuyol4358edd2016-02-23 10:07:00 -080024 android:theme="@style/AppTheme"
25 android:supportsRtl="true">
Akshay Kannancdb6c142016-01-20 18:25:44 -080026 <activity
27 android:name=".ViewInfoActivity"
28 android:showOnLockScreen="true">
29 <intent-filter>
30 <action android:name="android.telephony.action.EMERGENCY_ASSISTANCE" />
31 <category android:name="android.intent.category.DEFAULT" />
32 </intent-filter>
33 </activity>
34
mariagpuyola2a997e2016-02-18 11:25:29 -080035 <activity
36 android:name=".EditInfoActivity">
Akshay Kannancdb6c142016-01-20 18:25:44 -080037 <intent-filter>
mariagpuyol4aca4eb2016-01-28 14:58:46 -080038 <action android:name="android.settings.EDIT_EMERGENGY_INFO" />
mariagpuyola1702de2016-01-26 10:30:27 -080039 <category android:name="android.intent.category.DEFAULT" />
40 </intent-filter>
Akshay Kannancdb6c142016-01-20 18:25:44 -080041 </activity>
mariagpuyola2a997e2016-02-18 11:25:29 -080042 <!-- TODO: Change the icon to the app's icon once ready -->
43 <activity
44 android:name=".SetupWizardEditInfoActivity"
45 android:icon="@drawable/ic_menu_add_dark">
46 <intent-filter android:priority="10">
47 <action android:name="android.intent.action.MAIN" />
48 <category android:name="com.android.settings.suggested.category.EMERGENCY_INFO" />
49 </intent-filter>
50
51 <meta-data
52 android:name="com.android.settings.title"
53 android:resource="@string/emergency_info_title" />
54 <meta-data
55 android:name="com.android.settings.summary"
56 android:resource="@string/emergency_info_summary" />
57 </activity>
Akshay Kannancdb6c142016-01-20 18:25:44 -080058 </application>
59
Akshay Kannan44ef39d2016-01-26 09:08:41 -080060</manifest>