You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case Gradle's version is with three numbers ("2.2.3" for example), our
current check is failing and makes the doctor command unusable. Compare
current gradle version with min required one only after they are in the
same format.
this.$logger.warn(`WARNING: Gradle version is lower than ${DoctorService.MIN_SUPPORTED_GRADLE_VERSION}.`);
71
71
this.$logger.out("You will not be able to build your projects for Android or run them in the emulator or on a connected device."+EOL
72
72
+`To be able to build for Android and run apps in the emulator or on a connected device, verify that you have at least ${DoctorService.MIN_SUPPORTED_GRADLE_VERSION} version installed.`);
@@ -106,5 +106,14 @@ class DoctorService implements IDoctorService {
106
106
this.$logger.out("TIP: To avoid setting up the necessary environment variables, you can use the Homebrew package manager to install the Android SDK and its dependencies."+EOL);
0 commit comments