Re: [android-developers] Programmatically discover ContentProviders in the current application

2010-12-13 Thread Mark Carter
Thanks Kostya. I did see those other parameters but was confused by what it would mean for a content provider to be "hosted by the given process". Does it only return ContentProviders that have already been started in the given process? I will give it a try though... On 14 December 2010 02:37, K

Re: [android-developers] Programmatically discover ContentProviders in the current application

2010-12-13 Thread Kostya Vasilyev
Mark, Have you tried specifying first or second parameters - process name or the uid? You can get the latter by calling: android.os.Process.myUid(), which doesn't require a Context, so it's particularly suited to use within a library. -- Kostya 13.12.2010 21:23, Mark Carter пишет: I'm aw