I am trying to have a content provider class exist in a library for sharing data between applications. Then each app can put something like the following in its manifest:
<provider android:name="com.pkg.lib.ContentProviderExtension" android:authorities="com.somecommonprefix.appnamecontentprovidername />
I then loop through all content providers to get the matching content providers with the matching prefix.
Then I can query any of them to get/insert data.
Note: I do not see any issue when I don’t use a library and have a separate ContentProvider class per app in its own namespace.
When I moved the logic into a class in a library the first content provider in the list works as expected but all subsequent queries to other providers hit the first context provider that was passed into the query method. I know it is the first one in the list because I uninstalled the previous app in the list and saw the same behavior.
Example: I first query the content provider living in app1:
Uri uri = Uri.parse("content://somecommonprefix.app1/data");
Cursor cursor = managedQuery(uri, null, mode, null, null);
When I go to hit app2’s content provider:
Uri uri = Uri.parse("content://somecommonprefix.app2/data");
Cursor cursor = managedQuery(uri, null, mode, null, null);
It will hit app1 again. I get the same behavior when using getContentResolver().query(…) as well
I am testing on a Galaxy S II.
I cannot find any documentation saying I cannot do this. Does anyone know of any workarounds?