Make my app appear in the change wallpaper list

126 Views Asked by At

I am making a wallpaper app, and I want to add my app to the default app list, so when user wants to change his background, my app will appear as option. Can someone please help me out

enter image description here

1

There are 1 best solutions below

2
On BEST ANSWER

Use:

<intent-filter>
    <action android:name="android.intent.action.SET_WALLPAPER" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

More info here:

action.SET_WALLPAPER

Hope this helps u out.