Tuesday, 15 April 2014

android - Fix INSTALL_PARSE_FAILED_MANIFEST_MALFORMED -



android - Fix INSTALL_PARSE_FAILED_MANIFEST_MALFORMED -

after searching 3 hours on web couldn't find solution app , i'm having error says : install_parse_failed_manifest_malformed .. help ! way tried test before , works great !! suggestions ?

this manifest file :

<uses-sdk android:minsdkversion="8" android:targetsdkversion="19" /> <application android:allowbackup="true" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/apptheme" android:name=""> <activity android:name="com.abdullahadhaim.itc.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> <activity android:name="com.google.ads.adactivity" android:configchanges="keyboard|keyboardhidden|orientation|screenlayout|uimode|screensize|smallestscreensize" /> <activity android:name="com.abdullahadhaim.itc.two" android:label="@string/title_activity_two" > </activity> <activity android:name="com.abdullahadhaim.itc.three" android:label="@string/title_activity_three" > </activity> <activity android:name="com.abdullahadhaim.itc.four" android:label="@string/title_activity_four" > </activity> <activity android:name="com.abdullahadhaim.itc.five" android:label="@string/title_activity_five" > </activity> <activity android:name="com.abdullahadhaim.itc.six" android:label="@string/title_activity_six" > </activity> <activity android:name="com.abdullahadhaim.itc.seven" android:label="@string/title_activity_seven" > </activity> <activity android:name="com.abdullahadhaim.itc.eight" android:label="@string/title_activity_eight" > </activity> <activity android:name="com.abdullahadhaim.itc.end" android:label="@string/title_activity_end" > </activity> </application> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" />

looks manifest file missing lines :

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.abdullahadhaim.itc" android:versioncode="1" android:versionname="1.0">

try add together them, clean-up project , build it

android android-manifest fixed

No comments:

Post a Comment