blob: 086d9c4da7e522a93663e1a33fdc50d31ccc4f56 [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:supportsRtl="true">
Akshay Kannancdb6c142016-01-20 18:25:44 -080025 <activity
26 android:name=".ViewInfoActivity"
mariagpuyolab50ae12016-03-07 10:37:35 -080027 android:theme="@style/AppThemeEmergency"
Akshay Kannancdb6c142016-01-20 18:25:44 -080028 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
mariagpuyolab50ae12016-03-07 10:37:35 -080036 android:name=".EditInfoActivity"
37 android:theme="@style/AppTheme">
Akshay Kannancdb6c142016-01-20 18:25:44 -080038 <intent-filter>
mariagpuyol4aca4eb2016-01-28 14:58:46 -080039 <action android:name="android.settings.EDIT_EMERGENGY_INFO" />
mariagpuyola1702de2016-01-26 10:30:27 -080040 <category android:name="android.intent.category.DEFAULT" />
41 </intent-filter>
Akshay Kannancdb6c142016-01-20 18:25:44 -080042 </activity>
mariagpuyola2a997e2016-02-18 11:25:29 -080043 <!-- TODO: Change the icon to the app's icon once ready -->
44 <activity
45 android:name=".SetupWizardEditInfoActivity"
mariagpuyolab50ae12016-03-07 10:37:35 -080046 android:icon="@drawable/ic_menu_add_dark"
47 android:theme="@style/AppTheme">
mariagpuyola2a997e2016-02-18 11:25:29 -080048 <intent-filter android:priority="10">
49 <action android:name="android.intent.action.MAIN" />
50 <category android:name="com.android.settings.suggested.category.EMERGENCY_INFO" />
51 </intent-filter>
52
53 <meta-data
54 android:name="com.android.settings.title"
55 android:resource="@string/emergency_info_title" />
56 <meta-data
57 android:name="com.android.settings.summary"
58 android:resource="@string/emergency_info_summary" />
59 </activity>
Akshay Kannancdb6c142016-01-20 18:25:44 -080060 </application>
61
Akshay Kannan44ef39d2016-01-26 09:08:41 -080062</manifest>