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
// Do not dispose ios-device-lib, so the process will remain alive and the debug application (NativeScript Inspector or Chrome DevTools) will be able to connect to the socket.
149
150
// In case we dispose ios-device-lib, the socket will be closed and the code will fail when the debug application tries to read/send data to device socket.
150
151
// That's why the `$ tns debug ios --justlaunch` command will not release the terminal.
151
152
// In case we do not set it to false, the dispose will be called once the command finishes its execution, which will prevent the debugging.
@@ -189,3 +192,16 @@ export class SubscribeForNewsletterMessages {
189
192
publicstaticReviewPrivacyPolicyMsg=`You can review the Progress Software Privacy Policy at \`${PROGRESS_PRIVACY_POLICY_URL}\``;
190
193
publicstaticPromptMsg="Input your e-mail address to agree".green+" or "+"leave empty to decline".red.bold+":";
191
194
}
195
+
196
+
exportclassTemplateVersions{
197
+
publicstaticv1="v1";
198
+
publicstaticv2="v2";
199
+
}
200
+
201
+
exportclassProjectTemplateErrors{
202
+
publicstaticInvalidTemplateVersionStringFormat="The template '%s' has a NativeScript version '%s' that is not supported. Unable to create project from it.";
* Attaches on DEBUGGER_PORT_FOUND event and STARTING_IOS_APPLICATION events
23
+
* In case when DEBUGGER_PORT_FOUND event is emitted, stores the port and clears the timeout if such.
24
+
* In case when STARTING_IOS_APPLICATION event is emiited, sets the port to null and add timeout for 5000 miliseconds which checks if port is null and prints a warning.
25
+
* @param {Mobile.IDevice} device - Describes the device which logs should be parsed.
0 commit comments