Reputation: 3024
I am running into a problem creating an android emulator from the command line. When I run the android command the messages below output.
Starting Android SDK and AVD Manager
SWT folder 'lib\x86_64' does not exist
Please set ANDROID_SWT to point to the folder containing swt.jar for platform
I've already:
I've already successfully set this up on my primary development unit. The system I am installing on now runs 64-bit Windows 7 (same as my other development unit).
Upvotes: 3
Views: 942
Reputation: 37241
I had the exact same error message show up when I was trying to get Android up and running. However after looking around online I found a command which fixed my problem.
Try running this from the command line:
android create avd --target 2 --name my_avd
Upvotes: 2