1
我正在關注的MapView教程Android的網站AndroidManifest.xml;無法包括外部庫
[2010-08-22 11:12:24 - com.android.ide.eclipse.adt.internal.project.AndroidManifestParser] Parser exception for /MeCercana/AndroidManifest.xml: Open quote is expected for attribute "android:name" associated with an element type "uses-library".
[2010-08-22 11:12:24 - MeCercana] Error in an XML file: aborting build.
我外部地圖API中複製的指示,我的XML文件看起來如下
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jameselsey"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<uses-library android:name=」com.google.android.maps」 />
<activity android:name=".Mecercana"
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>
</manifest>
但是,當我嘗試編譯並運行時,出現以下錯誤
我無法查看我的XML出了什麼問題?