beans/app/src/main/AndroidManifest.xml

50 lines
1.7 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"
xmlns:tools="http://schemas.android.com/tools">
<application
android:hardwareAccelerated="false"
2023-03-21 14:16:14 +01:00
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.Beendroid"
tools:targetApi="31"
tools:replace="android:allowBackup"
>
<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"
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"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".activity.StatActivity"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".activity.SettingsActivity"
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>