[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-08-25 Thread NickT
The same with me (IOException - service not avavilable on coder.getFromLocationName). I posted a query on the andev forum, a few people had the same problem but no solutions. I came to the conclusion that Google feel obliged to support apps on phones that exist but don't want to encourage

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-08-16 Thread santoash
im running into the same issue with Geocoder in Android 2.2 level 8 as well. any update on this? please let me know. thanks! On Aug 9, 12:02 pm, Spiral jmri...@gmail.com wrote: You can include me in this discussion. I am seeing the same problem with the Geocoder. -- You received this message

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-08-16 Thread shookie10
Hi, I am seeing the same issue. Geocoder was working fine in emulators up to level 7 (2.1). When I try the same on level 8 (2.2) i get the IOException: Service not available. Can anyone at Google confirm that this is an issue? On Aug 15, 7:27 pm, santoash santo...@gmail.com wrote: im running

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-08-09 Thread Spiral
You can include me in this discussion. I am seeing the same problem with the Geocoder. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-07-28 Thread Ismo Laitela
I'm also experiencing 0 results with level 7. Trying to feed address' coordinates obtained from maps.google.com also returns 0 results while on device the same app is finding address on every run. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-07-08 Thread Matthias
any progress on this anyone? this is really annoying, I basically can't test our app on 2.2 since we heavily rely on the Geocoder. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-07-07 Thread Adam Ness
I'm seeing a similar issue in all of the following emulator versions: My code: Geocoder geoCoder = new Geocoder(mActivity ); try{ ListAddress addresses = geoCoder.getFromLocation( 33.76175, -118.19647,1); address =

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-07-02 Thread Mathias Lin
I confirm the same issues on the emulator with API 2.2 and API 2.1 level 8, but it works ok with API 2.1 level 7. -- Mathias On Jun 27, 4:30 am, Malcolm malcolm.mur...@gmail.com wrote: Richard, Joining this discussion late. I hit a similar problem when developing on a Mac using Eclipse and

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-06-29 Thread Malcolm
Richard, Joining this discussion late. I hit a similar problem when developing on a Mac using Eclipse and a level 8 (SDK 2.2 plus Google APIs) target. I was using code like this, based on an example in Reto Meier's book Professional Android 2 Application Development ---

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-06-08 Thread Richard
Thanks for a response ! As nobody else has anything to say I'm stumped ;-) Is it possible Google is blocking location services based on my ip's geographic location (e.g. Australia) when using the emulator ? To repeat myself, I've tested it on AVDs: 2.1 2.2 using both API level 7 8. 2.1 Level

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-06-08 Thread Richard
public void run() { while (updateLocality) { try { Location l = currentLocation; // lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); Log.v(TAG, gecoding current location + Lat: +

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-06-07 Thread Kugelschlag
I have seen the same issue when I updated from 2.1 and API Level 7 (where it works) to 2.2 API Level 8 (where it does not). Seems to be in the level 8 package. I also noticed quite a bit of slowdown in the map view scrolling after updating to 2.2. Anybody else see this? Tested on Windows 7