0

私は 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>

助言がありますか?私はたくさんのものを試しました(ご覧のとおり、大文字などには何もありません...)

4

3 に答える 3