blob: cfb60a9db59930d2efffd8bdbfd6196fa0d07e7a [file] [log] [blame]
<?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="com.libremobileos.facedetect"
android:sharedUserId="android.uid.system">
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MANAGE_BIOMETRIC"
tools:ignore="ProtectedPermissions" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.FaceDetect"
tools:targetApi="31">
<activity
android:name=".ScanActivity"
android:theme="@style/Theme.FaceDetect.NoActionBar"
android:exported="false" />
<service
android:name=".FaceDetectService"
android:exported="true"
tools:ignore="ExportedService" />
</application>
</manifest>