codenameakshay / async_wallpaper

https://pub.dev/packages/async_wallpaper
MIT License
22 stars 21 forks source link

setLiveWallpaper feature decrease supported device #28

Open cool2apps opened 1 year ago

cool2apps commented 1 year ago

Is your feature request related to a problem? Please describe. setLiveWallpaper feature decreases supported device dramatically on play store.

Describe the solution you'd like There should be a method to disable Live Wallpaper feature.

Describe alternatives you've considered I guess this package adds the line below to AndroidManifest.xml

    <uses-feature android:name="android.software.live_wallpaper" android:required="true"/>

If we can change it like below, this will solve the problem.

    <uses-feature android:name="android.software.live_wallpaper" android:required="false"/>

Additional context