2024-10-15 13:47:40 +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">
|
2024-10-15 16:49:28 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2024-11-03 17:54:53 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2024-10-15 13:47:40 +00:00
|
|
|
<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:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/Theme.NoteVault"
|
2024-11-03 17:54:53 +00:00
|
|
|
android:usesCleartextTraffic="true"
|
2024-10-15 13:47:40 +00:00
|
|
|
tools:targetApi="31">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/Theme.NoteVault.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2024-10-15 16:49:28 +00:00
|
|
|
|
2024-10-31 19:24:52 +00:00
|
|
|
<activity android:name=".ui.home.FullScreenImageActivity"
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar">
|
|
|
|
<!-- Intent Filter hinzufügen, wenn Activity vom Launcher oder externen Apps aufgerufen werden soll -->
|
|
|
|
</activity>
|
|
|
|
|
2024-10-15 13:47:40 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|