2022-04-17 01:52:45 +00:00
|
|
|
<?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.android.wallpaper">
|
|
|
|
|
|
|
|
<uses-sdk android:targetSdkVersion="32" android:minSdkVersion="28"/>
|
|
|
|
|
2021-10-06 05:40:58 +00:00
|
|
|
<uses-permission android:name="android.permission.BIND_WALLPAPER" />
|
2021-12-28 10:34:15 +00:00
|
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
|
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
2021-10-06 05:40:58 +00:00
|
|
|
|
2021-10-06 02:12:40 +00:00
|
|
|
<queries>
|
|
|
|
<!-- Intent filter with action used to discover launcher -->
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
2019-11-01 22:17:08 +00:00
|
|
|
<uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
|
|
|
|
<uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
|
|
|
|
|
2022-04-17 01:52:45 +00:00
|
|
|
<application
|
|
|
|
tools:replace="android:icon,android:name"
|
|
|
|
android:extractNativeLibs="false"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:icon="@drawable/ic_home"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:requiredForAllUsers="true"
|
|
|
|
android:restoreAnyVersion="true"
|
|
|
|
android:supportsRtl="true"
|
2022-09-12 12:42:50 +00:00
|
|
|
android:name="co.aospa.android.customization.picker.AospaCustomizationPickerApplication"
|
2022-04-17 01:52:45 +00:00
|
|
|
android:theme="@style/CustomizationTheme">
|
|
|
|
<activity
|
|
|
|
tools:node="replace"
|
|
|
|
android:name="com.android.wallpaper.picker.CustomizationPickerActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:relinquishTaskIdentity="true"
|
|
|
|
android:resizeableActivity="false"
|
|
|
|
android:theme="@style/CustomizationTheme.NoActionBar"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
2022-08-16 05:23:57 +00:00
|
|
|
<activity
|
|
|
|
tools:node="replace"
|
|
|
|
android:name="com.android.wallpaper.picker.PassThroughCustomizationPickerActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:resizeableActivity="false"
|
|
|
|
android:theme="@style/CustomizationTheme.NoActionBar"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
tools:node="replace"
|
|
|
|
android:name="com.android.wallpaper.picker.TrampolinePickerActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:relinquishTaskIdentity="true"
|
|
|
|
android:resizeableActivity="false"
|
|
|
|
android:theme="@style/CustomizationTheme.NoActionBar"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
2022-04-17 01:52:45 +00:00
|
|
|
<activity-alias
|
2022-09-12 12:42:50 +00:00
|
|
|
android:name="co.aospa.android.customization.picker.AospaCustomizationPickerActivity"
|
2022-08-16 05:23:57 +00:00
|
|
|
android:targetActivity="com.android.wallpaper.picker.TrampolinePickerActivity"
|
2022-04-17 01:52:45 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
2022-04-27 03:51:11 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2022-04-17 01:52:45 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
2022-04-12 18:58:29 +00:00
|
|
|
<provider android:name="com.google.android.apps.wallpaper.provider.RecentWallpapersProvider"
|
|
|
|
android:permission="android.permission.MONITOR_INPUT"
|
|
|
|
android:exported="true"
|
|
|
|
android:authorities="com.google.android.apps.wallpaper.recents"/>
|
2022-08-16 05:23:57 +00:00
|
|
|
|
2022-04-17 01:52:45 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|