Cannot load 64-bit SWT libraries on 32-bit JVM ( replacing SWT file )

Eclipse is launching your application with whatever JRE you defined in your launch configuration. Since you’re running the 32-bit Eclipse, you’re running/debugging against its 32-bit SWT libraries, and you’ll need to run a 32-bit JRE. Your 64-bit JRE is, for whatever reason, your default Installed JRE. To change this, first make sure you have a … Read more

JavaScript Editor Plugin for Eclipse [duplicate]

Complete the following steps in Eclipse to get plugins for JavaScript files: Open Eclipse -> Go to “Help” -> “Install New Software” Select the repository for your version of Eclipse. I have Juno so I selected http://download.eclipse.org/releases/juno Expand “Programming Languages” -> Check the box next to “JavaScript Development Tools” Click “Next” -> “Next” -> Accept … Read more

Eclipse fonts and background color

To change background colour Open menu *Windows → Preferences → General → Editors → Text Editors Browse Appearance color options Select background color options, uncheck default, change to black Select background color options, uncheck default, change to colour of choice To change text colours Open Java → Editor → Syntax Colouring Select element from Java … Read more

Android Device Chooser — device not showing up

First, make sure that the Android ADB can “talk to” your device. Open a Windows Command Prompt (cmd.exe)/Mac Terminal. Go to the folder (via cd) where ADB.exe is in, e.g, C:\Android\android-sdk\platform-tools. Type adb devices If your device is listed (serial number is displayed), go to the second check. Otherwise, this means ADB currently can’t talk … Read more