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
additionalInformation: `You are using CocoaPods version ${sysInfoData.cocoaPodsVer} which does not support Xcode ${sysInfoData.xcodeVer} yet.${EOL}${EOL}You can update your cocoapods by running $sudo gem install cocoapods from a terminal.${EOL}${EOL}In order for the NativeScript CLI to be able to work correctly with this setup you need to install xcproj command line tool and add it to your PATH.Xcproj can be installed with homebrew by running $ brew install xcproj from the terminal`,
88
+
platforms: [Constants.IOS_PLATFORM_NAME]
76
89
});
77
90
}
78
91
@@ -81,7 +94,8 @@ export class Doctor {
81
94
if(!isCocoaPodsWorkingCorrectly){
82
95
result.push({
83
96
warning: "WARNING: There was a problem with CocoaPods",
84
-
additionalInformation: "Verify that CocoaPods are configured properly."
97
+
additionalInformation: "Verify that CocoaPods are configured properly.",
98
+
platforms: [Constants.IOS_PLATFORM_NAME]
85
99
});
86
100
}
87
101
}
@@ -90,13 +104,15 @@ export class Doctor {
90
104
result.push({
91
105
warning: `WARNING: Your current CocoaPods version is earlier than ${Doctor.MIN_SUPPORTED_POD_VERSION}.`,
92
106
additionalInformation: "You will not be able to build your projects for iOS if they contain plugin with CocoaPod file."+EOL
93
-
+`To be able to build such projects, verify that you have at least ${Doctor.MIN_SUPPORTED_POD_VERSION} version installed.`
107
+
+`To be able to build such projects, verify that you have at least ${Doctor.MIN_SUPPORTED_POD_VERSION} version installed.`,
108
+
platforms: [Constants.IOS_PLATFORM_NAME]
94
109
});
95
110
}
96
111
}else{
97
112
result.push({
98
113
warning: "NOTE: You can develop for iOS only on Mac OS X systems.",
99
-
additionalInformation: "To be able to work with iOS devices and projects, you need Mac OS X Mavericks or later."+EOL
114
+
additionalInformation: "To be able to work with iOS devices and projects, you need Mac OS X Mavericks or later."+EOL,
115
+
platforms: [Constants.IOS_PLATFORM_NAME]
100
116
});
101
117
}
102
118
@@ -107,7 +123,8 @@ export class Doctor {
107
123
+"to perform some Android-related operations. To ensure that you can develop and"+EOL
108
124
+"test your apps for Android, verify that you have installed the JDK as"+EOL
109
125
+"described in http://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html (for JDK 8)"+EOL
0 commit comments