Android Development wrote: > 1. I cannot find a way to initiate a GPRS connection without having > to use the browser. I want to send packets transparently.
Just use sockets, or HttpClient, or whatever. You do not need to "initiate a GPRS connection". > 2. Is there no way for starting a GPRS connection, like the > WiFiManager provides for WiFi connections? Just use sockets, or HttpClient, or whatever. You do not need to start a GPRS connection, as it is always on if it is available (i.e., not somehow disabled by the user) and WiFi is not active. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Training: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

