revert-dabc3590
Nirothipan 8 years ago
parent b1e8687751
commit d786b7d839

@ -329,7 +329,7 @@ public class TryIt {
System.out.println("\nAvailable AVDs in the system\n"); System.out.println("\nAvailable AVDs in the system\n");
int count = 1; int count = 1;
for (String device : devices) { for (String device : devices) {
System.out.println(count + " - - " + device); System.out.println(count + ") " + device);
count++; count++;
} }
System.out.print("\nEnter AVD number to start (eg: 1) :"); System.out.print("\nEnter AVD number to start (eg: 1) :");

@ -1,3 +1,4 @@
@echo off
echo Welcome echo Welcome
SET sdk_tools_url="https://dl.google.com/android/repository/tools_r25.2.5-windows.zip" SET sdk_tools_url="https://dl.google.com/android/repository/tools_r25.2.5-windows.zip"
@ -7,12 +8,12 @@ SET platform_url="https://dl.google.com/android/repository/platform-23_r03.zip"
SET sys_img_url="https://dl.google.com/android/repository/sys-img/android/x86-23_r09.zip" SET sys_img_url="https://dl.google.com/android/repository/sys-img/android/x86-23_r09.zip"
SET haxm_url="https://dl.google.com/android/repository/extras/intel/haxm-windows_r6_0_5.zip" SET haxm_url="https://dl.google.com/android/repository/extras/intel/haxm-windows_r6_0_5.zip"
java\ java^
-Dsdk_tools_url=%sdk_tools_url%\ -Dsdk_tools_url=%sdk_tools_url%^
-Dplatform_tools_url=%platform_tools_url%\ -Dplatform_tools_url=%platform_tools_url%^
-Dbuild_tools_url=%build_tools_url%\ -Dbuild_tools_url=%build_tools_url%^
-Dplatform_url=%platform_url%\ -Dplatform_url=%platform_url%^
-Dsys_img_url=%sys_img_url%\ -Dsys_img_url=%sys_img_url%^
-Dhaxm_url=%haxm_url%\ -Dhaxm_url=%haxm_url%^
-jar EmulatorJava.jar -jar EmulatorJava.jar
echo echo

Loading…
Cancel
Save