[android-developers] Android binary SMS sending and receiving is not working

2011-02-16 Thread Ganesh Pisal
I am using SmsManager sendDataMessage funtion to send byte[] to another device. I was using port to send message. I was working fine, but suddenly after one day or so it stoped working.(without single line of change). I tried to set different ports - 80, 8080, 16001, 12345 But still it is no

[android-developers] Re: Default browser comms

2011-02-03 Thread Ganesh Pisal
You got any solution for same.. if yes. Please tell me. On Jan 16, 11:31 am, kypriakos wrote: > Hi all, > > I use the default browser as a REST service client running > an ajax script. Outside the browser I intercept the outgoing > Web Service call and I route it myself through peers. I sent > th

[android-developers] Re: Communicating with the browser

2011-02-03 Thread Ganesh Pisal
Hi, I am trying to do same thing. I set Browser proxy to localhost and 8080. Written native application which listens to 8080 port continuously. I am getting HTTP Request made my native browser. I am logging requests and doing HTTP connection for same request from my application. Once I get respon

[android-developers] Android Calender API

2010-06-15 Thread Ganesh Pisal
I searched lot on Android Calender API's. I want to proggramatically add, remove calender events. Where I can find detailed calender API? Regards, Ganesh Creating Android knowledge base - http://ganeshpisal.blogspot.com/ -- You received this message because you are subscribed to the Google Gro

[android-developers] Re: How to delete a inbox message from a specific sender

2010-06-15 Thread Ganesh Pisal
SMS/MMS Inbox parsing: Uri uriSms = Uri.parse("content://sms/inbox"); Cursor c = getContentResolver().query(uriSms, null,null,null,null); This will help you to parse messages from inbox. No idea about message deletion. Regards, Ganesh Pisal Creating Android knowledge b