<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.dankal.dankal_launcher"> <application android:name=".MyApplication" android:backupAgent="com.android.launcher3.LauncherBackupAgent" android:debuggable="true" android:fullBackupContent="@xml/backupscheme" android:fullBackupOnly="true" android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:largeHeap="@bool/config_largeHeap" android:restoreAnyVersion="true" android:supportsRtl="true" android:theme="@style/LauncherTheme" tools:replace="android:icon"> <!-- Main launcher activity. When extending only change the name, and keep all the attributes and intent filters the same --> <!-- The settings activity. When extending keep the intent filter present --> <activity android:name=".PackageManageActivity" android:autoRemoveFromRecents="true" android:theme="@android:style/Theme.DeviceDefault.Settings"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".SetActivity" android:exported="true"> </activity> <service android:name="com.android.launcher3.accessibility.PermissionOpenAccessiblityService" android:description="@string/permission_autoopen_service_description" android:label="@string/permission_manager_accessibility_service_label" android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> <intent-filter> <action android:name="android.accessibilityservice.AccessibilityService" /> </intent-filter> <meta-data android:name="android.accessibilityservice" android:resource="@xml/accessibility_service_config" /> </service> <!-- The settings provider contains Home's data, like the workspace favorites. The permissions should be changed to what is defined above. The authorities should also be changed to represent the package name. --> </application> </manifest>