I've been struggling with implicit intent, for which I had
No Activity found to handle Intent
After hours of debugging, I have just realized that my ContentProvider getType() was returning a vnd.google... MIME instead of a vnd.android...
Now, I am wondering: How could I spot this mistake more quickly? One string is in the code, the other in an XML file, it is hard to write unit tests. Also PackageManager does the intent resolution on his side, as a black box, and I don't know how to determine why some components are resolved and other discarded.
My Question is: How can I simulate the PackageManager implicit intent resolution?