I am trying to add my application to the "install as" list that appears in the gallery when I select an image. If the user opens the image in the gallery, there is a button for set as. when the user touches it, he will receive a list. In other words, if he wants to use this image in my application. I tried:
<intent-filter>
<action android:name="android.intent.action.SET_WALLPAPER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
but I got nothing.


user3375707
source
share