When I used to install on Android 7.1.2 it works fine. But on Samsung Android Version 8.1.0 it crashes. Then I later change the code as below
Intent intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT,
new ComponentName(this,LiveWallPaperService.class));
startActivity (intent)
Calling service using startActivity (intent)
crashes in 8.1.0.
So, I used, startService ( intent )
.
It starts a Custom Wallpaper service class(LiveWallPaperService
).
But it does not call WallpaperService and draw wallpaper as in Android 7.1.2 version