mirror of
https://github.com/AU-COVIDSafe/mobile-android.git
synced 2025-04-09 16:24:58 +00:00
76 lines
3 KiB
XML
76 lines
3 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="au.gov.health.covidsafe">
|
||
|
|
||
|
<uses-feature
|
||
|
android:name="android.hardware.bluetooth_le"
|
||
|
android:required="true" />
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||
|
<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"
|
||
|
android:allowBackup="false"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@style/MyTheme.DayNight"
|
||
|
android:networkSecurityConfig="@xml/network_security_config">
|
||
|
|
||
|
<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"
|
||
|
android:windowSoftInputMode="adjustPan"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<activity
|
||
|
android:name="au.gov.health.covidsafe.WebViewActivity"
|
||
|
android:screenOrientation="portrait" />
|
||
|
<activity
|
||
|
android:name="au.gov.health.covidsafe.HomeActivity"
|
||
|
android:windowSoftInputMode="adjustPan"
|
||
|
android:screenOrientation="portrait" />
|
||
|
|
||
|
<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>
|