blob: 0bbacad4956e90c3028c856f7239a6e1745ce11f [file] [log] [blame]
Akshay Kannancdb6c142016-01-20 18:25:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.android.emergency">
4
5 <uses-permission android:name="android.permission.READ_CONTACTS" />
6
7 <application
8 android:label="@string/app_name"
9 android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
10 <activity
11 android:name=".ViewInfoActivity"
12 android:showOnLockScreen="true">
13 <intent-filter>
14 <action android:name="android.telephony.action.EMERGENCY_ASSISTANCE" />
15 <category android:name="android.intent.category.DEFAULT" />
16 </intent-filter>
17 </activity>
18
19 <activity android:name=".EditInfoActivity">
20 <intent-filter>
21 <action android:name="android.intent.action.MAIN" />
22 <category android:name="android.intent.category.LAUNCHER" />
23 </intent-filter>
24 </activity>
25 </application>
26
27</manifest>