2014-11-06 68 views
0

我後,我跑我的應用程序這個occours: PKG:/data/local/tmp/com.example.calculator.app 失敗[INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]爲什麼INSTALL_PARSE_FAILED_MANIFEST_MALFORMED發生?

我可能刪除或更改的東西,我不知道是什麼...

我的清單:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.calculator.app" > 

    <application 

     android:icon="@drawable/studenticon128" 
     android:label="@string/app_name" 
     android:theme="@style/SelectedStyle" > 
     <activity 
      android:theme="@style/SelectedStyle" 
      android:name="com.example.calculator.app.MainScreen" 
      android:label="@string/app_name" > 
      > 
      <meta-data android:name="android.support.UI_OPTIONS" 
       /> 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 


     <activity 

      android:uiOptions="splitActionBarWhenNarrow" 
      android:name="com.example.calculator.app.Analysis" 
      android:label="@string/app_name" 

      android:parentActivityName="com.example.calculator.app.MainScreen"> 
      <meta-data 
       android:name="android.support.PARENT_ACTIVITY" 
       android:value="com.example.calculator.app.MainScreen" 
       /> 
      <meta-data android:name="android.support.UI_OPTIONS" 
       android:value="splitActionBarWhenNarrow"/> 
      <intent-filter> 
       <action android:name="android.intent.action.ANALYSIS" /> 

       <category android:name="android.intent.category.DEFAULT" /> 
      </intent-filter> 
     </activity> 


    </application> 

</manifest> 

任何想法的人?

+0

粘貼你的logcat,看看是什麼導致了這個錯誤 – 2014-11-06 19:44:45

+0

我的logcat是空的。 – 2014-11-06 20:07:36

回答

1

你只需要在第一個活動

+0

我刪除了「>」號但它沒有解決問題 – 2014-11-06 20:00:12

1
<meta-data android:name="android.support.UI_OPTIONS" 
      /> 

meta-data去掉一個 「>」 需要一個android:valueandroid:resource屬性。

+0

謝謝你解決了這個問題! – 2014-11-06 20:15:43