我是Android开发的新手。我正在使用ADT插件运行Eclipse并安装了所有必需的依赖项。我打开Eclipse,选择“New Android Applciation”并设置好所有内容。当我运行应用程序时,收到错误消息
/home/parallels/workspace/test/AndroidManifest.xml: 2: /home/parallels/workspace/test/AndroidManifest.xml: Syntax error: newline unexpected
所以我看看Android Manifest,它只是Eclipse生成的默认代码,对吧?这有什么问题?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.test.MainActivity"
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>
答案 0 :(得分:0)
清单第一行上方是否有空白区域?那必须是最顶层的。你到目前为止还成功编译了什么?也许某些东西没有正确导入。我推荐android studio。它只是Googles修改版的eclipse,专门研究android开发。它配备了您需要的一切准备就绪。