HI all, I have two separate projects each compiling and executing fine on Android devices (currently this code calls for Android 1.6 so I am running on that). I needed to reuse some of the classes from one project into another so I brought over their source code and recompiled. Things compile fine but during the installation of the apk I get the [INSTALL_FAILURE_DEXOPT]. This means that either there's no space left to install this on the device (which is not the case here) or the verification failed. What would cause a verification error in this case? I see below that the Package has a mismatched uid on disk vs in settings? What does that designate?
Thanks in advance D/AndroidRuntime( 499): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<< D/AndroidRuntime( 499): CheckJNI is OFF D/AndroidRuntime( 499): --- registering native functions --- I/jdwp ( 499): received file descriptor 20 from ADB D/ddm-heap( 499): Got feature list request D/PackageParser( 85): Scanning package: /data/app/vmdl13009.tmp D/dalvikvm( 85): GC freed 19996 objects / 964408 bytes in 247ms E/PackageManager( 85): Package com.WebCP_16 has mismatched uid: 10044 on disk, 10047 in settings I/PackageManager( 85): /data/app/vmdl13009.tmp changed; unpacking D/installd( 53): DexInv: --- BEGIN '/data/app/vmdl13009.tmp' --- W/dalvikvm( 506): partial write in inflate (24536 vs 32768) W/dalvikvm( 506): DexOptZ: extraction of classes.dex from /data/app/ vmdl13009.tmp failed W/installd( 53): DexInv: --- END '/data/app/vmdl13009.tmp' --- status=0xff00, process failed E/installd( 53): dexopt failed on '/data/dalvik-cache/ data@[email protected]@classes.dex' res = 65280 W/PackageManager( 85): Package couldn't be installed in /data/app/ com.WebCP_16.apk D/AndroidRuntime( 499): Shutting down VM D/dalvikvm( 499): DestroyJavaVM waiting for non-daemon threads to exit -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

