Noyal Jose
Noyal Jose

Reputation: 217

How to make android recognise app as wallpaper app

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

Upvotes: -1

Views: 98

Answers (1)

Khalid Khan
Khalid Khan

Reputation: 3185

<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

Upvotes: 0

Related Questions