How to make android recognise app as wallpaper app

107 Views Asked by At

I have created a wallpaper application and everything works fine except it won't show in the list of "apply wallpapers from" option on other apps. Is there anything to make android recognise the app as a Wallpaper app.

The app should show on the list

1

There are 1 best solutions below

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

Add this in your Manifest File