mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-23 14:31:30 +01:00
81 lines
3.6 KiB
XML
81 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
<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"
|
|
android:theme="@style/launcherBaseTheme">
|
|
|
|
<activity
|
|
android:name=".ui.HomeActivity"
|
|
android:exported="true"
|
|
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
|
|
android:name="de.jrpie.android.launcher.ui.tutorial.TutorialActivity"
|
|
android:configChanges="orientation|screenSize" >
|
|
</activity>
|
|
<activity
|
|
android:name="de.jrpie.android.launcher.ui.list.ListActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:windowSoftInputMode="adjustResize" >
|
|
</activity>
|
|
<activity
|
|
android:name="de.jrpie.android.launcher.ui.settings.SettingsActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:windowSoftInputMode="adjustNothing"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<receiver android:name=".actions.lock.LauncherDeviceAdmin"
|
|
android:exported="true"
|
|
android:label="@string/app_name"
|
|
android:description="@string/device_admin_description"
|
|
android:permission="android.permission.BIND_DEVICE_ADMIN">
|
|
|
|
<meta-data android:name="android.app.device_admin"
|
|
android:resource="@xml/device_admin_config" />
|
|
<intent-filter>
|
|
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service android:name=".actions.lock.LauncherAccessibilityService"
|
|
android:exported="true"
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
|
|
android:label="@string/accessibility_service_name">
|
|
<intent-filter>
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="android.accessibilityservice"
|
|
android:resource="@xml/accessibility_service_config" />
|
|
</service>
|
|
</application>
|
|
</manifest>
|