I've a (non-google maps) app that I want to install on a 1.5 phone. However, it was originally built for 2.1, and when I set the target as 1.5 I get some errors:
1. 'invalid resource directory name' - the directory exists and is unchanged, the contents are listed in the Eclipse browser. Errors shown on re/drawable-hdpi, re/drawable-ldpi and re/drawable-mdpi 2. 'R cannot be resolved'. This appears to be the fact that R.java is no longer present. I've fixed this by importing android.R (not sure why it needed to be done again), but now setContentView(R.layout.main); cannot be resolved. I see that I still don't have an R.java. A bit confused here :) -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

