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" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
|
|
|
<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
|
|
|
|
android:name="au.gov.health.covidsafe.TracerApp"
|
2020-06-19 17:41:15 +10:00
|
|
|
tools:replace="android:supportsRtl"
|
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-06-19 17:41:15 +10:00
|
|
|
android:theme="@style/MyTheme.DayNight">
|
2020-05-08 15:23:03 +10:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.SplashActivity"
|
|
|
|
android:configChanges="keyboardHidden"
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
<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-06-19 17:41:15 +10:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.ui.onboarding.CountryCodeSelectionActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
2020-05-08 15:23:03 +10:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.WebViewActivity"
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.HomeActivity"
|
2020-06-19 17:41:15 +10:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
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" />
|
|
|
|
|
|
|
|
<service android:name="au.gov.health.covidsafe.services.SensorMonitoringService" />
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|