mobile-android/app/src/debug/AndroidManifest.xml
2020-05-26 17:19:36 +10:00

31 lines
1.1 KiB
XML

<?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">
<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"/>
</application>
</manifest>