Missing start tag "xml" [message #522037] |
Fri, 19 March 2010 14:24  |
Eclipse User |
|
|
|
I'm trying this tutorial: Using Google Maps in Android | mobiForge
Developing in Eclipse and in the AndroidManifest.xml file I copy and pasted directly from the tutorial, I even tried manually typing it. Eclipse keeps telling me that the " </xml> " at the end of the file is "missing start tag" and it isn't.
Any ideas?
Here's my xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.learn2develop.GooglMaps"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name="com.google.android.maps" />
<activity android:name=".MapsActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
</xml>
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.03496 seconds