I have downloaded and extracted the latest Android SDK. I used the AVD manager and installed ALL available packages (if if I won't need all of them). I have eclipse installed, and set up with ADT. I have the android SDK path set up correctly in eclipse. I have an AVD defined for the testing with the emulator.
Now, I can successfully create a new Android Project (hello world) which works just fine in the emulator. I have fiddled with a few Hello World tutorials, all with success... Now for the problems...
1) In the Eclipse console window, I always have these 2 errors: (again, everything appears to work fine!)
[2011-03-11 19:17:08 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read /AndroidManifest.xml: java.io.FileNotFoundException: /AndroidManifest.xml (No such file or directory)
[2011-03-11 19:17:08 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read /AndroidManifest.xml: java.io.FileNotFoundException: /AndroidManifest.xml (No such file or directory)
2) I downloaded the MMS sources with git. I want to modify the stock MMS application. I create a new Android project and chose to "Create project from existing source", where I point it to the MMS source directory. When I try to run it, I get hundreds of errors (I'll paste a few here)
Description Resource Path Location Type
AcknowledgeInd cannot be resolved to a type RetrieveTransaction.java /ConversationList/src/com/android/mms/transaction line 222 Java Problem
Description Resource Path Location Type
Addr cannot be resolved AddressUtils.java /ConversationList/src/com/android/mms/util line 47 Java Problem
How can I fix these errors?
thanks!