Update: After I removed and reinstalled bundle problem only remains on emulator
I\'ve just installed the android development bundle on my windows 8 laptop. I\'m tryi
If there is a newer version (compare to the version code defined in your manifest.xml) of the same Application in the target emulator, you will get error as you mentioned.
Couldn't load memtrack module (No such file or directory)
failed to load memtrack module: -2
I faced this error several days ago. if your real device or emulator already contains older version of application you are trying to run, then uninstall this old version and run again.It has resolved my issue.
I got the same error because of a missing Semicolon in the java file ";". So do check for proper closing of the code Statements
I was facing the same issue, make sure you're running the project in the right emulator, sometimes Eclipse doesn't ask you about the emulator that it will use.
Go to the Run menu, Run Configurations, in the left list pick Android Application and then the application that you're trying to run. In the left panel pick the "Target" tab and choose the option "Always prompt to pick device" and try to run again.
Make sure to pick the right emulator, in my case I had recently installed blue stacks and Eclipse was trying to run the application on it without prompting me, instead running it on the regular emulator.