We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Command failed at checkExecSyncError (node:child_process:871:11) at execSync (node:child_process:943:15) at Object.launchDebugMode (/Users/marty/tizen/philo-tizen/node_modules/@tizentv/wits/lib/appLaunchHelper.js:74:13) at /Users/marty/tizen/philo-tizen/node_modules/@tizentv/wits/command/start.js:48:43 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) { status: 1, signal: null, output: [ null, '', 'closed\n' ], pid: 80670, stdout: '', stderr: 'closed\n' }
Wits doesn't work on Tizen 3.0 (2017) devices.
In order to get it to work you need to go to @tizentv/wits/lib/appLaunchHelper.js and inside launchDebugMode, result needs to be:
@tizentv/wits/lib/appLaunchHelper.js
launchDebugMode
result
execSync(APP_LAUNCH_DEBUG_MODE_COMMAND_TIMEOUT, { encoding: 'utf-8', stdio: 'pipe' });
the regular APP_LAUNCH_DEBUG_MODE_COMMAND needs to be commented out.
APP_LAUNCH_DEBUG_MODE_COMMAND
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Wits doesn't work on Tizen 3.0 (2017) devices.
In order to get it to work you need to go to
@tizentv/wits/lib/appLaunchHelper.js
and insidelaunchDebugMode
,result
needs to be:the regular
APP_LAUNCH_DEBUG_MODE_COMMAND
needs to be commented out.The text was updated successfully, but these errors were encountered: