launcher/app/src/main/AndroidManifest.xml

57 lines
2.3 KiB
XML
Raw Normal View History

<?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">
<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" />
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<application
android:name=".Application"
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">
<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"
android:configChanges="orientation|screenSize"
android:theme="@style/launcherHomeTheme"
android:launchMode="singleTask" >
<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>
<activity
2024-09-11 21:07:18 +02:00
android:name="de.jrpie.android.launcher.ui.tutorial.TutorialActivity"
android:configChanges="orientation|screenSize" >
2024-09-11 10:49:45 +02:00
</activity>
<activity
2024-09-11 21:07:18 +02:00
android:name="de.jrpie.android.launcher.ui.list.ListActivity"
android:windowSoftInputMode="adjustResize" >
2024-09-11 10:49:45 +02:00
</activity>
<activity
2024-09-11 21:07:18 +02:00
android:name="de.jrpie.android.launcher.ui.settings.SettingsActivity"
android:configChanges="orientation|screenSize"
android:exported="true" >
<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"/>
</intent-filter>
2020-05-14 21:31:54 +02:00
</activity>
2024-08-02 02:44:35 +02:00
</application>
</manifest>