2020-05-08 15:23:03 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-19 17:41:15 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-08 15:23:03 +10:00
|
|
|
package="au.gov.health.covidsafe">
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.bluetooth_le"
|
|
|
|
android:required="true" />
|
|
|
|
|
2020-06-19 17:41:15 +10:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-05-08 15:23:03 +10:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
|
2020-10-23 10:21:57 +11:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2020-05-08 15:23:03 +10:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
|
|
|
|
|
|
|
<application
|
2020-09-23 08:46:31 +10:00
|
|
|
android:name="au.gov.health.covidsafe.app.TracerApp"
|
2020-05-08 15:23:03 +10:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2020-06-19 17:41:15 +10:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2020-05-08 15:23:03 +10:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2020-07-03 14:26:19 +10:00
|
|
|
android:theme="@style/MyTheme.DayNight"
|
|
|
|
tools:replace="android:supportsRtl">
|
2020-05-08 15:23:03 +10:00
|
|
|
|
|
|
|
<activity
|
2020-09-23 08:46:31 +10:00
|
|
|
android:name="au.gov.health.covidsafe.ui.splash.SplashActivity"
|
2020-07-21 15:45:27 +10:00
|
|
|
android:configChanges="keyboardHidden">
|
2020-05-08 15:23:03 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.ui.onboarding.OnboardingActivity"
|
2020-07-21 15:45:27 +10:00
|
|
|
|
2020-06-19 17:41:15 +10:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.ui.onboarding.CountryCodeSelectionActivity"
|
2020-07-21 15:45:27 +10:00
|
|
|
|
2020-06-19 17:41:15 +10:00
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2020-05-08 15:23:03 +10:00
|
|
|
|
2020-09-23 08:46:31 +10:00
|
|
|
<activity android:name="au.gov.health.covidsafe.ui.webview.WebViewActivity" />
|
|
|
|
<activity android:name="au.gov.health.covidsafe.ui.devicename.DeviceNameChangePromptActivity" />
|
|
|
|
<activity android:name="au.gov.health.covidsafe.ui.connection.InternetConnectionIssuesActivity" />
|
2020-07-03 14:26:19 +10:00
|
|
|
|
2020-05-08 15:23:03 +10:00
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.HomeActivity"
|
2020-07-21 15:45:27 +10:00
|
|
|
android:launchMode="singleTask"
|
2020-09-23 08:46:31 +10:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
2020-08-05 11:27:40 +10:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="au.gov.health.covidsafe.UPGRADE_APP" />
|
2020-09-23 08:46:31 +10:00
|
|
|
<action android:name="au.gov.health.covidsafe.POSSIBLE_ISSUE" />
|
|
|
|
<action android:name="au.gov.health.covidsafe.NO_CHECKIN" />
|
|
|
|
<action android:name="au.gov.health.covidsafe.POSSIBLE_ENCOUNTER_ERROR" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-08-05 11:27:40 +10:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-05-08 15:23:03 +10:00
|
|
|
|
|
|
|
<receiver android:name="au.gov.health.covidsafe.boot.StartOnBootReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="au.gov.health.covidsafe.services.BluetoothMonitoringService"
|
|
|
|
android:foregroundServiceType="location" />
|
|
|
|
|
|
|
|
<receiver android:name="au.gov.health.covidsafe.receivers.UpgradeReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name="au.gov.health.covidsafe.receivers.PrivacyCleanerReceiver" />
|
|
|
|
|
2020-07-21 15:45:27 +10:00
|
|
|
<service
|
2020-09-23 08:46:31 +10:00
|
|
|
android:name="au.gov.health.covidsafe.notifications.CovidFirebaseMessagingService"
|
2020-07-21 15:45:27 +10:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name="au.gov.health.covidsafe.scheduler.GetMessagesJobSchedulerService"
|
2020-09-23 08:46:31 +10:00
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
2020-07-21 15:45:27 +10:00
|
|
|
|
2020-05-08 15:23:03 +10:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|