Files
Android/demo/registration/src/main/AndroidManifest.xml
2026-03-18 13:15:49 -04:00

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<application
android:name=".RegistrationApplication"
android:backupAgent=".absbackup.RegistrationBackupAgent"
android:allowBackup="true"
android:fullBackupOnly="false"
android:icon="@mipmap/ic_launcher"
android:label="Registration Sample"
android:theme="@android:style/Theme.Material.NoActionBar"
android:supportsRtl="true">
<!-- Disable Firebase Analytics -->
<meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
<meta-data android:name="firebase_messaging_auto_init_enabled" android:value="false" />
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- FCM Service for receiving push challenges -->
<service
android:name=".fcm.FcmReceiveService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>