Failure [INSTALL_PARSE_.......

SoyEli

Active Member
Licensed User
Longtime User
I keep getting this error, Please help

Only does it with 1 apk that I made.
did the " Restart ADB Server " 3 times.

Thank you:
------------------------------------------
Parsing code. 0.03
Compiling code. 0.06
Compiling layouts code. 0.02
Generating R file. 0.13
Compiling generated Java code. 1.05
Convert byte code - optimized dex. 5.09
Optimized dexer failed. Switching to Standard dexer.
Packaging files. 0.42
Copying libraries resources 0.02
Found 4 resource files.
Signing package file (private key) 0.58
ZipAlign file. 0.03
Installing file to device. Error
pkg: /data/local/tmp/PkgName.apk
Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]

Restarting ADB Server may solve this problem.
Tools - Restart ADB Server. Device serial: LG-MS770-17f0bc3
 
Last edited:

SoyEli

Active Member
Licensed User
Longtime User
Thank you for the help:


-------------------
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: Manifest Editor
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.

AddManifestText( <permission
android:name="$PACKAGE$.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>)

AddApplicationText(<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAdbDoNewxAtYWSgFpUOVS6zFHCF9Iia3Abk"/>)
 
Upvote 0

SoyEli

Active Member
Licensed User
Longtime User
This did it:

"Does your package name include any non-lowercase letters?"

THANK YOU ALL for the help:
 
Upvote 0
Top