Merge pull request #776 from Nirothipan/master

Fixes Default parameters not working on Virtual Android Device installation
revert-dabc3590
Madhawa Perera 7 years ago committed by GitHub
commit e7a5392aa2

@ -494,17 +494,29 @@ public class TryIt {
/** /**
* This method gets the Android SDK location if available and sets the SDK path else downloads the SDK. * This method gets the Android SDK location if available and sets the SDK path else downloads the SDK.
*/ */
private int count = 0;
private void setAndroidSDK() { private void setAndroidSDK() {
sdkConfigFile = new File("sdkConfigLocation"); sdkConfigFile = new File("sdkConfigLocation");
if (!(sdkConfigFile.exists() && !sdkConfigFile.isDirectory())) { if (!(sdkConfigFile.exists() && !sdkConfigFile.isDirectory())) {
//TODO //TODO
Scanner read = new Scanner(System.in, StandardCharsets.UTF_8.toString()); Scanner read = new Scanner(System.in, StandardCharsets.UTF_8.toString());
System.out.print("Do you have an Android SDK installed on your computer (y/N) ? : "); System.out.print("Do you have an Android SDK installed on your computer (y/n) ? : ");
String response = read.next().toLowerCase(); String response = read.nextLine().toLowerCase();
if (response.matches("y")) { if (response.matches("y")) {
setSDKPath(); setSDKPath();
} else { } else if (response.matches("n") ) {
getAndroidSDK(); getAndroidSDK();
} else {
if (count < 5) {
System.out.println("Please enter a valid parameter .");
count++;
setAndroidSDK();
return;
} else {
System.out.println("Terminating process");
System.exit(1);
}
} }
} else { } else {
Scanner scanner = null; Scanner scanner = null;

Loading…
Cancel
Save