[android-developers] email pdf attachment 0kb !

2012-05-30 Thread Jags
i have a pdf file in /data/data/mypkg/pdfs/myfile.pdf i am using this url debugged and saw it. it is world_readable (how to verify in adb shell, BTW) i use following code to send attachment but mail reaches with a pdf file attached with 0kb size what could be the issue ? i can adb pull and

Re: [android-developers] email pdf attachment 0kb !

2012-05-30 Thread dEEPESH PPM
Dear Jag, I have the same problem when send an attachment to the email. I solved this by saving the pdf file in the sd card. Regards Deepesh On Thu, May 31, 2012 at 1:15 AM, Jags jag...@gmail.com wrote: i have a pdf file in /data/data/mypkg/pdfs/myfile.pdf i am using this url debugged and

Re: [android-developers] email pdf attachment 0kb !

2012-05-30 Thread asheesh arya
try this code for sending email- with attachment import java.io.File; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.util.Log; import android.view.View; import