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.
Asked
Active
Viewed 93 times
1 Answers
0
<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

Khalid Khan
- 3,017
- 1
- 11
- 27