Fixing Tizen Studio Timeout Error

Troubleshooting Tizen Studio timeout error for Tizen Web Simulator when using Chrome.

Oliver Lövström
Internet of Technology
3 min readJan 7, 2024

--

After the recent Chrome update, Tizen Studio gives a timeout error when running the Tizen Web Project with the Tizen Web Simulator. In this article, we will show how to solve this issue.

Tizen Timeout Occurred

The recent Chrome update to version 119 rollout included the deprecation of WebSQL, which Tizen’s Web Simulator relies on. See the error message:

Tizen Web Simulator: Timeout occurred
Screenshot by Oliver Lövström.

Tizen Timeout Solution

The workaround is simple. Follow these steps:

1. Install a Pre-119 Chrome Version

  • Preserve your current Chrome installation by renaming it.
  • Find and download a pre-119 Chrome version and install it.
  • (Optional) Rename your primary and secondary Chrome installations.

Now, your Applications folder should look similar to this:

Now your Applications folder should look similar to this. Two seperate Chrome installations in Applications folder.
Screenshot by Oliver Lövström.

2. Tizen Studio Configuration

  • Navigate to Settings... in Tizen Studio.
Navigate to Tizen Studio’s “Settings…”
Screenshot by Oliver Lövström.
  • Go to Tizen Studio -> Web -> Chrome and change the Location to the older Chrome installation path:
/Applications/Google Chrome Tizen.app/Contents/MacOS/Google Chrome
Go to “Tizen Studio -> Web -> Chrome” and change the “Location” to the older Chrome installation path. Implement the crucial flag under “Extra parameters”.
Screenshot by Oliver Lövström.
  • Add the crucial flag under Extra parameters:
--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'

This instructs Chrome to launch without updating it.

  • Launch your project using the Tizen Web Simulator:
Launch your project in the Tizen Web Simulator: Run As, Tizen Web Simulator Application.
Screenshot by Oliver Lövström.

Success! The Tizen Web Simulator should now work:

Success! The Tizen Web Simulator should now be operational.
Screenshot by Oliver Lövström.

Conclusion

With this quick workaround, you can restore Tizen Studio to full functionality like before the Chrome update.

Further Reading

If you want to learn more about programming and, specifically, Python and Java, see the following course:

Note: If you use my links to order, I’ll get a small kickback. So, if you’re inclined to order anything, feel free to click above.

--

--