I had the same problem. In my environment, the reason was that the Intellij community started as a 32-bit executable file, and the Android Monitor tool started as a 64-bit exe. So, a clean solution is to run Intellij with a 64-bit JVM:
- define the IDEA_JDK environment variable pointing to the path of the 64-bit JDK (for example, C: \ Program Files \ Java \ jdk1.6.0_43)
- change the shortcut used to start Intellij to start
idea.bat (instead of idea.exe )
When idea.bat finds the environment variable %IDEA_JDK% , it starts Intellij using a 64-bit JVM.
This solved the problem (in my environment).
Gio
source share