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 when android platform is specified, checks only android related things. In case when iOS platform is specified, checks only iOS related things. When no platform is specified, checks both Android and iOS things. This will improve the time {N} CLI needs to check if environment is correctly configured for platform specific commands. This also will fix failing cloud builds.
message: "Local builds for iOS can be executed only on a macOS system. To build for iOS on a different operating system, you can use the NativeScript cloud infrastructure.",
@@ -144,46 +204,9 @@ export class Doctor implements NativeScriptDoctor.IDoctor {
144
204
);
145
205
}
146
206
147
-
result=result.concat(
148
-
this.processSysInfoItem({
149
-
item: sysInfoData.javacVersion,
150
-
infoMessage: "The Java Development Kit (JDK) is installed and is configured properly.",
151
-
warningMessage: "The Java Development Kit (JDK) is not installed or is not configured properly.",
152
-
additionalInformation: "You will not be able to work with the Android SDK and you might not be able"+EOL
153
-
+"to perform some Android-related operations. To ensure that you can develop and"+EOL
154
-
+"test your apps for Android, verify that you have installed the JDK as"+EOL
155
-
+"described in http://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html (for JDK 8).",
156
-
platforms: [Constants.ANDROID_PLATFORM_NAME]
157
-
}),
158
-
this.processSysInfoItem({
159
-
item: sysInfoData.gitVer,
160
-
infoMessage: "Git is installed and is configured properly.",
161
-
warningMessage: "Git is not installed or not configured properly.",
162
-
additionalInformation: "You will not be able to create and work with Screen Builder projects."+EOL
163
-
+"To be able to work with Screen Builder projects, download and install Git as described"+EOL
164
-
+"in https://git-scm.com/downloads and add the git executable to your PATH.",
165
-
platforms: Constants.SUPPORTED_PLATFORMS
166
-
})
167
-
);
168
-
169
-
if(!this.hostInfo.isDarwin){
170
-
result.push({
171
-
message: "Local builds for iOS can be executed only on a macOS system. To build for iOS on a different operating system, you can use the NativeScript cloud infrastructure.",
0 commit comments