Re: [android-developers] Android SDK Error in AndroidManifest.xml

2012-07-19 Thread TreKing
On Mon, Jul 16, 2012 at 7:31 PM, 11clock justinpries...@yahoo.com 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.

 /manifestmanifest 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.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Android SDK Error in AndroidManifest.xml

2012-07-19 Thread Lew
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.

 /manifestmanifest 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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android SDK Error in AndroidManifest.xml

2012-07-19 Thread 11clock
I've installed the Android SDK and I've started making my Hello World 
project in Eclipse Indigo. However, my project has an error and I haven't 
even done anything yet,

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.

/manifestmanifest 
xmlns:android=http://schemas.android.com/apk/res/android;
package=com.tutorial.quotereader
android:versionCode=1
android:versionName=1.0 

uses-sdk
android:minSdkVersion=8
android:targetSdkVersion=15 /

application
android:icon=@drawable/ic_launcher
android:label=@string/app_name
android:theme=@style/AppTheme 
activity
android:name=.MainActivity
android:label=@string/title_activity_main 
intent-filter
action android:name=android.intent.action.MAIN /

category android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
/application

/manifest

Since I've only started learning how to develop for Android, and I'm 
following a tutorial, I have no idea how to fix this problem. Can someone 
help me?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Android SDK Error

2010-11-24 Thread TreKing
On Mon, Nov 22, 2010 at 1:11 AM, JCC jijoe...@gmail.com wrote:

 I'm trying to get the android SDK running on my computer so I can
 start working on some apps but when I open the android sdk and avd
 manager and try to download a package, I get the following error:
 XML verification failed for
 http://dl-ssl.google.com/android/repository/repository.xml.
 Error: The markup declarations contained or pointed to by the document
 type declaration must be well-formed.
 Failed to fetch URL
 http://dl-ssl.google.com/android/repository/repository.xml,
 reason: Unknown
 Failed to parse XML document


Did you try https?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Android SDK Error

2010-11-22 Thread JCC
I'm trying to get the android SDK running on my computer so I can
start working on some apps but when I open the android sdk and avd
manager and try to download a package, I get the following error:
XML verification failed for 
http://dl-ssl.google.com/android/repository/repository.xml.
Error: The markup declarations contained or pointed to by the document
type declaration must be well-formed.
Failed to fetch URL http://dl-ssl.google.com/android/repository/repository.xml,
reason: Unknown
Failed to parse XML document

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en