2020-05-12 14:52:56 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-07-06 21:23:28 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2020-05-12 14:52:56 +02:00
|
|
|
|
2020-05-16 07:32:32 +02:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
2020-05-23 10:31:17 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2024-07-05 04:36:30 +02:00
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
2024-07-04 00:33:14 +02:00
|
|
|
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2020-06-24 11:11:09 +02:00
|
|
|
android:theme="@style/baseTheme">
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2020-06-17 20:42:45 +02:00
|
|
|
<activity android:name=".HomeActivity"
|
2022-08-01 15:48:40 +02:00
|
|
|
android:exported="true"
|
2020-05-12 14:52:56 +02:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-06-16 16:24:52 +02:00
|
|
|
<activity android:name=".tutorial.TutorialActivity"
|
2020-05-16 14:29:11 +02:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
|
|
|
</activity>
|
2020-06-17 20:42:45 +02:00
|
|
|
<activity android:name=".list.ListActivity"
|
2020-05-14 21:31:54 +02:00
|
|
|
android:screenOrientation="portrait"
|
2024-07-20 00:21:26 +02:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
2020-05-14 21:31:54 +02:00
|
|
|
tools:ignore="LockedOrientationActivity">
|
2020-05-15 07:51:48 +02:00
|
|
|
</activity>
|
2020-06-16 16:24:52 +02:00
|
|
|
<activity android:name=".settings.SettingsActivity"
|
2020-05-15 07:51:48 +02:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
tools:ignore="LockedOrientationActivity">
|
2020-05-14 21:31:54 +02:00
|
|
|
</activity>
|
2020-05-12 14:52:56 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|