Failed to load memtrack -2 module

I am writing code for an Android application for eclipse. However, I encountered an error:

Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED. Please check logcat output for more details. Launch canceled! 

None of the posted answers (changing things in lower case / ensuring closing all, etc.) fixes this problem.

StackTrace Error:

 Couldn't load memtrack module (No such file or directory) Failed to load memtrack module: -2. 

Does anyone know what that means?

Thanks Z

+8
android eclipse logcat
source share
1 answer

I know this question is quite old, but today I ran into the same problem with the same error from Logcat: failed to load memtrack module: -2 or couldn't load memtrack module (No such file or directory) after checking the question. seems to come from AndroidManifest.xml from declaring the next attribute inside the manifest tag

<manifest android:installLocation="preferExternal">

the value of the attribute is misleading, since I assume that if it does not find an external location (SD card), the package will simply be installed in the internal memory, but apparently this is not so. Therefore, either make sure that there is external storage, or delete the attribute.

+1
source share

All Articles