-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
App Fails to Function Independently On Other Devices After Build: WorkerW not found Error #28
Comments
UpdateI installed Node.js and Visual Studio (to set up Rust) on my friend's laptop, but the error persists, so it doesn't appear to be related to missing dependencies as initially suspected. Additionally, I deleted the |
This error is throwing by rust which indicates that all dependencies exists. However, this probably issue with windows. Maybe I know the?
|
I meant the desktop icons. not the app icon. but thank you its more then enough. |
Yes the desktop icons were visible but i had to hide them manually because the wallpaper itself is clickable and i dont want any conflict when clicking, [ so, they are hidden manually ] In my laptop, they were visible when i was testing, once i finished, i did hide them |
Hi @meslzy,
After building the app, the function
attach()
fails to execute properly and throws the following error:WorkerW not found
This issue only occurs on my friend's laptop, which does not have Rust or Node.js installed. I am unsure if the error is caused by missing dependencies, such as Rust, VS Code, or Node.js, or if it stems from another problem. However, the expectation is that the app should operate independently after being built, without requiring any additional tools or dependencies on the devices where it is used.
How I Identified the Exception Message
When my friend first tried running the app, it close immediately after launching it.
To debug this, I wrapped critical sections of the code in
try-catch
blocks and added a custom error handler function,onFatalError
. This function logs errors to an external JSON file and gracefully terminates the app. Below is the relevant portion of the code:This setup captured the following error in the log file:
The error message suggests that the problem occurs specifically within the
attach()
function.Additional Notes
The expectation is that the app should be fully self-contained after being built and should run on any compatible device without additional setup.
The text was updated successfully, but these errors were encountered: