beans/app/src/main/AndroidManifest.xml

52 lines
1.8 KiB
XML
Raw Normal View History

2023-03-21 14:16:14 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2024-06-28 22:55:49 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="2"
android:versionName="1.0c">
2023-03-21 14:16:14 +01:00
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
2024-04-10 21:06:42 +02:00
android:hardwareAccelerated="false"
2024-04-10 21:09:44 +02:00
android:icon="@mipmap/ic_launcher_round"
2023-03-21 14:16:14 +01:00
android:label="@string/app_name"
android:supportsRtl="true"
2024-04-03 01:32:02 +02:00
android:theme="@style/Theme.Beans"
tools:replace="android:allowBackup"
2024-04-10 21:06:42 +02:00
tools:targetApi="31">
<profileable android:shell="true" />
2023-03-21 14:16:14 +01:00
<activity
2023-04-06 23:03:54 +02:00
android:name=".activity.MainActivity"
2024-04-10 21:06:42 +02:00
android:exported="true">
2023-03-21 14:16:14 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.EditActivity"
2024-04-10 21:06:42 +02:00
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
2024-04-10 21:06:42 +02:00
android:name=".activity.StatsActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".activity.SettingsActivity"
2024-04-10 21:06:42 +02:00
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
2023-03-21 14:16:14 +01:00
</application>
</manifest>