2023-12-07 01:36:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
2023-12-20 03:12:30 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
2023-12-07 01:36:00 +00:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2023-12-10 08:27:28 +00:00
|
|
|
android:name=".LacertaApplication"
|
2023-12-07 01:36:00 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.Lacerta"
|
|
|
|
tools:targetApi="31">
|
|
|
|
<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>
|
2023-12-21 02:47:33 +00:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2023-12-21 02:48:19 +00:00
|
|
|
android:resource="@xml/provider_path" />
|
2023-12-21 02:47:33 +00:00
|
|
|
</provider>
|
2023-12-07 01:36:00 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|