• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. P

    Apps Rest wifi problem

    I am accessing a restful web service in my Android app.The service is runned on my home computer on a Tomcat server.When I use my office wifi connection it won't connect to the service and it works perfectly via mobile internet.I can acces other web sites using the same wifi connection.Can...
  2. P

    Root S-OFF problem

    I have rooted HTC Desire and Runnymede AIO v6.5 rom intalled but it's S-ON.I want to perform S-OFF procedure but Alpharev method doesn't work,phone freezes with the message:"Normal NAND detected.Non PVT4".HBOOT version is 0.83 so Revolutionary method is out of the question.Can anyone tell me how...
  3. P

    Apps Axis2 web service Unknown type problem

    This is my class where I encapsulate these parameters that I want to send via web service: public class GPSInfo implements KvmSerializable { private String latitude, longitude, info1, info2, info3; public String getLongitude() { return longitude; } public void...
  4. P

    Apps Javamail in android app

    Hi!I am using javamail api in my project where I fetch email messages from a pop3 folder.But when I fetch a particular message,only thing I can read from it are subject and inputstream.When I invoke getReceivedDate() method,it returns null.Can anyone tell me why?
  5. P

    Apps Google api java client problem

    I am trying to manipulate with my own google calendar but didn't get further from the attempt to add new event.I am using this classes : /calendar-v2-atom-oauth-sample/src/com/google/ - google-api-java-client - Project Hosting on Google Code and this code also: final AccountManager manager...
  6. P

    Apps Calendar app problem

    Hi!I am trying to install Calendar app on my emulator since it has none.After installing the Calendar.apk and CalendarProvider.apk files,and opening Calendar app from the menu,the error message appears : "com.android.calendar has stopped unexpectedly".Can anyone tell how to install Calendar app...
  7. P

    Apps gdata api jars

    I found this example for accessing google calendar Android – Use ATOM/GData API to access the Google Calendar Show me the code! – By Davanum Srinivas but I cannot find all the necessary jar files.Can anyone tell me which ones I need and where to download them?Thanks
  8. P

    Apps Classdef not found exception

    Hi.I am trying to use google api for interacting with google calendar : CalendarService myService = new CalendarService( "Moj kalendar"); try { myService.setUserCredentials("maymail@gmail.com", "pass"); URL postUrl = new URL(...
  9. P

    Apps Unable to create calendar event

    I am trying to create a calendar event using this code: ContentValues event = new ContentValues(); event.put("calendar_id", calId); event.put("title", subject); event.put("description", ""); event.put("eventLocation", ""); long startTime...
  10. P

    Apps Class not found exception

    I am trying to send an email using javamail api.I have mail.jar,activation.jar and additionnal.jar added to the classpath.But when the app reaches the line where I create a MimeMessage object,it crashes and ClassNotFoundException is thrown for class java.awt.datatransfer.Transferable.Can anyone...
  11. P

    Apps Detect contacts and calendar events

    Hi!I am new to Android app development.Can anyone explain to me the best way to detect new,updated and deleted contacts and calendar events.I want to perform some action when,for example, a new contact is created or deleted or updated.Does anyone know how to do that?Thanks!