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"
|
|
|
|
package="au.gov.health.covidsafe">
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".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">
|
2020-05-26 17:19:36 +10:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="au.gov.health.covidsafe.PeekActivity"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/MyTheme.DayNightDebug"/>
|
|
|
|
|
2020-05-08 15:23:03 +10:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|