Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
TvToast displays a custom Toast on Android TV devices. It does so by modifying the Toast.getView()'s message TextView.
On Android 30+ it is no longer allowed to access toast's view via getView() and it led to crashes (see #2161). Custom toasts were disabled for devices running API 30+
We should try to build custom toasts on API 30+ devices as well, probably by doing the same thing we do for mobile LeakCanary custom toast.
The text was updated successfully, but these errors were encountered:
@pyricau and @Armaxis I want to help here can we discuss how should we handle this issue. As if the toast is triggered in background app will crash
Please let me know.
Problem description
TvToast displays a custom Toast on Android TV devices. It does so by modifying the
Toast.getView()'s message TextView.On Android 30+ it is no longer allowed to access toast's view via
getView()and it led to crashes (see #2161). Custom toasts were disabled for devices running API 30+We should try to build custom toasts on API 30+ devices as well, probably by doing the same thing we do for mobile LeakCanary custom toast.
The text was updated successfully, but these errors were encountered: