188 lines
8.5 KiB
XML
188 lines
8.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.android.emergency"
|
|
android:sharedUserId="com.android.emergency.uid">
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
|
|
<uses-permission android:name="android.permission.CALL_PHONE"/>
|
|
<uses-permission android:name="android.permission.CALL_PRIVILEGED"/>
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
|
<uses-permission android:name="android.permission.MANAGE_USERS"/>
|
|
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
|
|
|
|
<uses-sdk android:minSdkVersion="21"/>
|
|
|
|
<queries>
|
|
<!-- Needed to take photos as user avatar in Medical info UI -->
|
|
<intent>
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
</intent>
|
|
<!-- Needed to edit images as user avatar in Medical info UI -->
|
|
<intent>
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
<data android:mimeType="image/*" />
|
|
</intent>
|
|
</queries>
|
|
|
|
<application android:defaultToDeviceProtectedStorage="true"
|
|
android:icon="@mipmap/ic_local_hospital_24dp"
|
|
android:directBootAware="true"
|
|
android:label="@string/app_label"
|
|
android:supportsRtl="true"
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
|
tools:replace="android:appComponentFactory">
|
|
<activity android:name=".view.ViewInfoActivity"
|
|
android:theme="@style/AppThemeEmergency"
|
|
android:taskAffinity="com.android.settings"
|
|
android:showWhenLocked="true"
|
|
android:icon="@drawable/ic_launcher_settings"
|
|
android:launchMode="singleTask"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.telephony.action.EMERGENCY_ASSISTANCE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".edit.EditInfoActivity"
|
|
android:icon="@drawable/ic_launcher_settings"
|
|
android:theme="@style/AppTheme"
|
|
android:taskAffinity="com.android.settings"
|
|
android:launchMode="singleTask"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.settings.EDIT_EMERGENCY_INFO"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".EmergencyDialerTrampoline"
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
android:excludeFromRecents="true"
|
|
android:enabled="false"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.DIAL_EMERGENCY"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.DIAL_EMERGENCY"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<data android:scheme="tel"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<!-- Alias for edit activity, to allow settings suggestion to be independent from main activity -->
|
|
<activity-alias android:name=".edit.EditInfoSuggestion"
|
|
android:label="@string/app_label"
|
|
android:targetActivity=".edit.EditInfoActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION"/>
|
|
</intent-filter>
|
|
<meta-data android:name="com.android.settings.dismiss"
|
|
android:value="11,15,30"/>
|
|
<meta-data android:name="com.android.settings.title"
|
|
android:resource="@string/settings_suggestion_title"/>
|
|
<meta-data android:name="com.android.settings.summary"
|
|
android:resource="@string/settings_suggestion_body"/>
|
|
<meta-data android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_local_hospital_24dp"/>
|
|
</activity-alias>
|
|
|
|
<!-- Injected setting to edit emergency contact & medical info -->
|
|
<activity-alias
|
|
android:name="EmergencyInfoActivity"
|
|
android:targetActivity=".edit.EditInfoActivity"
|
|
android:icon="@drawable/ic_emergency_contacts_24dp"
|
|
android:label="@string/app_label"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.android.settings.action.IA_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.emergency" />
|
|
<meta-data
|
|
android:name="com.android.settings.order"
|
|
android:value="60" />
|
|
<meta-data
|
|
android:name="com.android.settings.icon"
|
|
android:resource="@drawable/ic_emergency_contacts_24dp"/>
|
|
<meta-data
|
|
android:name="com.android.settings.icon_tintable"
|
|
android:value="true" />
|
|
<meta-data
|
|
android:name="com.android.settings.summary"
|
|
android:resource="@string/injection_summary_empty"/>
|
|
<meta-data
|
|
android:name="com.android.settings.profile"
|
|
android:value="primary_profile_only" />
|
|
</activity-alias>
|
|
|
|
<activity android:name=".edit.EditMedicalInfoActivity"
|
|
android:icon="@drawable/ic_launcher_settings"
|
|
android:label="@string/medical_info_title"
|
|
android:parentActivityName="com.android.emergency.edit.EditInfoActivity"
|
|
android:theme="@style/AppTheme"
|
|
android:taskAffinity="com.android.settings"
|
|
android:launchMode="singleTask"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.emergency.EDIT_MEDICAL_INFO"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<provider android:name=".EmergencySearchIndexablesProvider"
|
|
android:authorities="com.android.emergency"
|
|
android:multiprocess="false"
|
|
android:grantUriPermissions="true"
|
|
android:permission="android.permission.READ_SEARCH_INDEXABLES"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER"/>
|
|
</intent-filter>
|
|
</provider>
|
|
|
|
<provider android:name="androidx.core.content.FileProvider"
|
|
android:authorities="com.android.emergency.files"
|
|
android:grantUriPermissions="true"
|
|
android:exported="false">
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_paths"/>
|
|
</provider>
|
|
|
|
<provider
|
|
android:name=".EmergencyGestureContentProvider"
|
|
android:authorities="com.android.emergency.gesture"
|
|
android:permission="android.permission.CALL_PRIVILEGED"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|