Ultimately I'm trying to see the icons of other apps installed on the device. The app icons can be gathered with PackageManager.getApplicationIcon(packageName)
on the Android native side, but this returns a Drawable. https://developer.android.com/reference/android/content/pm/PackageManager.html#getApplicationIcon%28java.lang.String%29
How can I display that Drawable in my React Native app? Not worried about iOS cross-compatibility.