Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Lets say I have installed a third party app & I want to access the content provider which is in that app.

How would I know the authority part of the URI?

I mean how can I know what the developer have assigned for android:authorities="" for provider with in manifest file?

share|improve this question

1 Answer

up vote 0 down vote accepted

After looking at the documentation, you can grab the content providers on a device by using:

public abstract List queryContentProviders (String processName, int uid, int flags)

This implies that you grab the processName/UID of the application you're looking for.

Learn more here: http://developer.android.com/reference/android/content/pm/PackageManager.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.