Newer
Older
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.rki.coronawarnapp">
<uses-sdk tools:overrideLibrary="com.google.zxing.client.android" />
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="true" />
<uses-feature android:name="android.hardware.bluetooth" />
<uses-permission
android:name="android.permission.BLUETOOTH"
android:required="true" />
<uses-permission
android:name="android.permission.INTERNET"
android:required="true" />
<application
android:name="de.rki.coronawarnapp.CoronaWarnApplication"
android:allowBackup="false"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
android:supportsRtl="true"
android:theme="@style/AppTheme">
<receiver
android:name=".receiver.ExposureStateUpdateReceiver"
android:permission="com.google.android.gms.nearby.exposurenotification.EXPOSURE_CALLBACK">
<intent-filter>
<action android:name="com.google.android.gms.exposurenotification.ACTION_EXPOSURE_STATE_UPDATED" />
</intent-filter>
</receiver>
<activity
android:name=".ui.LauncherActivity"
android:theme="@style/AppTheme.Launcher">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ui.main.MainActivity"
android:exported="false"
android:theme="@style/AppTheme.Main" />
<activity
android:name=".ui.onboarding.OnboardingActivity"
android:exported="false"
android:theme="@style/AppTheme.Onboarding" />
<activity
android:name="com.journeyapps.barcodescanner.CaptureActivity"
android:exported="false"
android:screenOrientation="fullSensor"
tools:replace="screenOrientation" />
</application>
</manifest>