Re: [android-developers] Import package does not work...

2011-01-28 Thread Marko Mijatovic
OK Thanks! -- 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, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Import package does not work...

2011-01-27 Thread Marko Mijatovic
Hi! I code android app that uses Google Maps. I added uses-library android:name=com.google.android.maps/ in manifest file, and when in java class try to import that package, I get: The import com.google cannot be resolved. What can I do to fix this? Thnx -- You received this message because

Re: [android-developers] Import package does not work...

2011-01-27 Thread TreKing
On Thu, Jan 27, 2011 at 5:32 AM, Marko Mijatovic jom...@gmail.com wrote: What can I do to fix this? Include the library in your project. The manifest entry is for Android to be aware of it. To build, Eclipse has to know about it too. I'm sure you can find info on this topic on the interwebs.