95 lines
3.9 KiB
XML
95 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="de.polyfish0.pamauth"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="28"
|
|
android:targetSdkVersion="35" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
|
|
<permission
|
|
android:name="de.polyfish0.pamauth.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="de.polyfish0.pamauth.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:debuggable="true"
|
|
android:extractNativeLibs="false"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:testOnly="true"
|
|
android:theme="@style/Theme.PAMAuth" >
|
|
<service
|
|
android:name="de.polyfish0.pamauth.services.PAMServerService"
|
|
android:exported="false"
|
|
android:foregroundServiceType="dataSync" />
|
|
|
|
<activity
|
|
android:name="de.polyfish0.pamauth.MainActivity"
|
|
android:exported="true"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/Theme.PAMAuth" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="androidx.compose.ui.tooling.PreviewActivity"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name="androidx.activity.ComponentActivity"
|
|
android:exported="true" />
|
|
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="de.polyfish0.pamauth.androidx-startup"
|
|
android:exported="false" >
|
|
<meta-data
|
|
android:name="androidx.emoji2.text.EmojiCompatInitializer"
|
|
android:value="androidx.startup" />
|
|
<meta-data
|
|
android:name="androidx.lifecycle.ProcessLifecycleInitializer"
|
|
android:value="androidx.startup" />
|
|
<meta-data
|
|
android:name="androidx.profileinstaller.ProfileInstallerInitializer"
|
|
android:value="androidx.startup" />
|
|
</provider>
|
|
|
|
<receiver
|
|
android:name="androidx.profileinstaller.ProfileInstallReceiver"
|
|
android:directBootAware="false"
|
|
android:enabled="true"
|
|
android:exported="true"
|
|
android:permission="android.permission.DUMP" >
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.SKIP_FILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.SAVE_PROFILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
|
|
</manifest> |