Raphael wrote: > Please file a bug at b.android.com and we'll have a look. A small > code/apk snippet would be ideal too.
Filed as: http://code.google.com/p/android/issues/detail?id=2806 I tested this code under 1.5_r1 and 1.5_r2: package com.commonsware.android; import android.app.Activity; import android.os.Bundle; import com.google.android.maps.GeoPoint; public class GeoPointBug extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); GeoPoint status=new GeoPoint(0, 0); finish(); } } 1.5_r1 compiles fine. 1.5_r2 fails with: [javac] class file for com.google.map.MapPoint not found This sure feels like it's somehow a bug in my environments. I've tried it on two different PCs, one using a freshly-downloaded 1.5_r2, and they both give the error. Any advice would be greatly appreciated. Thanks! -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Looking for Android opportunties? http://wiki.andmob.org/hado --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

