我是 Java 和 android SDK 的初学者,我处理了一些问题,最终能够运行我的应用程序,然后我得到了这个错误,我就是想不通。
所以这是控制台:
[2013-09-17 19:59:23 - AndroidFlow] 安装错误:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED [2013-09-17 19:59:23 - AndroidFlow] 请检查 logcat 输出以获取更多详细信息。[2013-09-17 19:59:23 - AndroidFlow] 发布取消!
(对不起,文本碎片,它不适合在同一行)
这是 logcat 快照:
另外,这是清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.domiq.androidapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service android:enabled="true"
android:exported="false"
android:isolatedProcess="false"
android:label="flow service"
android:name="com.domiq.androidapp.appservice"
android:permission="string"
android:process="string" >
</service>
<activity
android:name="com.domiq.androidappp"
android:label="androidapp" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
有什么建议么?我已经尝试了很多东西(因为你可以看到没有大写字母等......)