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
Expose enable/disable debugging when CLI is required as a library.
Includes:
* Unify `debug-livesync-service` and `livesync-service` into one class. Enable said class to attach a debugger at runtime during LiveSync
* Remove redundant `debugLivesync` property from `$config` and its every usage
* Remove redundant `debugStop` code in `android-debug-service`
* Raise events in the event of inability to start/stop the app on iOS
$injector.require("usbLiveSyncService","./services/livesync/livesync-service");// The name is used in https://github.com/NativeScript/nativescript-dev-typescript
* Path where the build result is located (directory containing .ipa, .apk or .zip).
74
+
* This is required for initial checks where LiveSync will skip the rebuild in case there's already a build result and no change requiring rebuild is made since then.
75
+
* In case it is not passed, the default output for local builds will be used.
* Path where the build result is located (directory containing .ipa, .apk or .zip).
88
-
* This is required for initial checks where LiveSync will skip the rebuild in case there's already a build result and no change requiring rebuild is made since then.
89
-
* In case it is not passed, the default output for local builds will be used.
96
+
* Whether to skip preparing the native platform.
90
97
*/
91
-
outputPath?: string;
98
+
skipNativePrepare?: boolean;
92
99
93
100
/**
94
-
* Whether to skip preparing the native platform.
101
+
* Whether debugging has been enabled for this device or not
95
102
*/
96
-
skipNativePrepare?: boolean;
103
+
debugggingEnabled?: boolean;
97
104
98
105
/**
99
106
* Describes options specific for each platform, like provision for iOS, target sdk for Android, etc.
0 commit comments