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" />
|
2024-09-11 10:49:45 +02:00
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
2024-07-05 04:36:30 +02:00
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
2024-08-02 22:32:35 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES" />
|
2024-09-06 13:32:38 +02:00
|
|
|
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
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
|
2024-09-09 21:23:01 +02:00
|
|
|
android:name=".Application"
|
2020-05-12 14:52:56 +02:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2024-07-20 01:06:02 +02:00
|
|
|
android:theme="@style/launcherBaseTheme">
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2024-09-01 21:11:32 +02:00
|
|
|
<activity
|
2024-09-11 21:07:18 +02:00
|
|
|
android:name=".ui.HomeActivity"
|
2024-09-10 19:54:53 +02:00
|
|
|
android:exported="true"
|
2024-09-11 10:49:45 +02:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:clearTaskOnLaunch="true"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2024-09-11 21:47:00 +02:00
|
|
|
android:theme="@style/launcherHomeTheme"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:launchMode="singleTask" >
|
2020-05-12 14:52:56 +02:00
|
|
|
<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>
|
2024-09-01 21:11:32 +02:00
|
|
|
<activity
|
2024-09-11 21:07:18 +02:00
|
|
|
android:name="de.jrpie.android.launcher.ui.tutorial.TutorialActivity"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:configChanges="orientation|screenSize" >
|
2024-09-11 10:49:45 +02:00
|
|
|
</activity>
|
2024-09-01 21:11:32 +02:00
|
|
|
<activity
|
2024-09-11 21:07:18 +02:00
|
|
|
android:name="de.jrpie.android.launcher.ui.list.ListActivity"
|
2024-10-04 15:47:28 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" >
|
2024-09-11 10:49:45 +02:00
|
|
|
</activity>
|
2024-09-01 21:11:32 +02:00
|
|
|
<activity
|
2024-09-11 21:07:18 +02:00
|
|
|
android:name="de.jrpie.android.launcher.ui.settings.SettingsActivity"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2024-09-13 17:25:14 +02:00
|
|
|
android:windowSoftInputMode="adjustNothing"
|
2024-09-11 13:06:55 +02:00
|
|
|
android:exported="true" >
|
2024-08-28 09:55:53 +02:00
|
|
|
<intent-filter>
|
2024-09-11 10:49:45 +02:00
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2024-08-28 09:55:53 +02:00
|
|
|
</intent-filter>
|
2020-05-14 21:31:54 +02:00
|
|
|
</activity>
|
2024-10-26 22:32:15 +08:00
|
|
|
<service android:name=".actions.LauncherAccessibilityService"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accessibilityservice"
|
|
|
|
android:resource="@xml/accessibility_service_config" />
|
|
|
|
</service>
|
2020-05-12 14:52:56 +02:00
|
|
|
</application>
|
|
|
|
|
2024-09-01 21:11:32 +02:00
|
|
|
</manifest>
|