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.

i am trying to allow the user to upload photos via share intent. but i get an exception:tag scaleimagetask.run no content provider /mnt/sdcard/pic.png do ineed to add something to the manifest or do something else?

my code:

{
    Intent sharingIntent = new Intent(Intent.ACTION_SEND);
    Uri phototUri = Uri.parse(path);
    sharingIntent.setData(photootUri);
    sharingIntent.setType("image/png");
    sharingIntent.putExtra(Intent.EXTRA_STREAM, photootUri);
    getContext().startActivity(Intent.createChooser(sharingIntent, "Share image using"));
}
share|improve this question
Please also post the whole stack trace of the exception. – Marc Bernstein Sep 20 '11 at 17:24
tag: scaleimagetask.run fileNotFound no content provider /mnt/sdcard/pic.png – goote Sep 21 '11 at 8:02
Yes I already saw that exception in the post. What I'm asking for is the entire stack trace that shows line numbers and classes. – Marc Bernstein Sep 21 '11 at 19:37
this was the only line. it was when i was in the facebook or message app. my question is simple. do i have to add a provider tag to my manifest when using the share intent? please answer only if you know – goote Sep 27 '11 at 10:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.