TreKing wrote: > > 11clock wrote: > >> The error is in the file AndroidManifest.xml. The error is, "The markup >> in the document following the root element must be well-formed." The code >> that gives this error is below. >> >> </manifest><manifest xmlns:android=" >> http://schemas.android.com/apk/res/android" >> > > If that's exactly what your XML looks like, starting with an end tag (the > "</manifest>") is probably a likely culprit. > > 11clock, you should be familiar with terms like "well formed" and "valid" when you deal with XML.
There are many resources on the Web to help with such things. In an incomplete nutshell, "well formed" means that the XML syntax is right, that is, begin tags and end tags properly match up, sections don't "cross over" each other (where the end tag for the first begin tag precedes the end tag for the second begin tag, violating strict nesting), attributes are quote enclosed, and such rules. "Valid" means that the XML document conforms to its declared schema. The XML you showed in your post is blatantly ill formed. Just like your error message says. -- Lew -- 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

