Kuroba
Kuroba copied to clipboard
Gallery app not showing up
I have this gallery app (Simple Gallery) that is not showing up on Kuroba anymore after I updated from Android 9 to 10, any idea what could this be? If the issue is 100% not on your side, could you give a brief explanation of what is exactly this picker asking for so I can report to dev? Thanks.
Looking at the Simple Gallery source, it looks like they do handle the exact Intent that we send; here's the code for that:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
I would think that no behavior would change, but I think the OS is the one that figures out whether or not an intent can be handled by an application; maybe the newer OS version doesn't like the MIME type or we need to add in extra flags to the resolution intent before the constructed intents for the picker or something. All the code relevant can be found in ImagePickDelegate, in the function call pickLocalFile. If there's any info about changes between 9 and 10 for Intent handling, that would also be useful.