hi,
i have working eclipse project.
eclipse builder works just fine.
one of my class extends BaseAdapter:
...
import android.view.BaseAdapter;
class Foo extends BaseAdapter {
...
}
but when using ant i got 'undefined symbol BaseAdapter' error.
note that import was successful so i think classpath is ok.
when i changed to:
class Foo extends android.view.BaseAdapter {
...
}
ant also builds without errors...
anybody got such strange errors?
pskink
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---