I use simple code for call Live Wallpaper installer.
Intent intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
if( intent.resolveActivity(getPackageManager()) != null ) {
intent.putExtra( WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, new ComponentName(this, WallpaperServiceMy.class));
startActivityForResult( intent, RC_SET_WALLPAPER );
}
This is works for example, for Galaxy A32 (Android 13) but not work for A51, A71 etc.
Users complain: they can not install my Live Wallpaper.
What can I do?