Question
I encountered an issue with Tizen Studio (version 1.1.1, Windows 64-bit) where it crashed during debugging, forcing me to terminate it abruptly. After this incident, Tizen Studio would not launch properly.
I tried the following troubleshooting steps:
- Uninstalled and reinstalled Tizen Studio
- Deleted the
.metadatafolder - Modified the
eclipse.inifile
Despite these efforts, Tizen Studio still fails to launch—it only shows the loading screen briefly before disappearing. Below is a partial log of the error messages:
[.log file - partial content]
!SESSION 2017-03-19 18:33:43.520
eclipse.buildId=1.1.1
java.version=1.8.0_121
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en
Command-line arguments: -os win32 -ws win32 -arch x86_64 -clean
!ENTRY org.eclipse.update.configurator 4 0 2017-03-19 18:33:46.565
!MESSAGE Could not install bundle plugins/com.ibm.icu_54.1.1.v201501272100.jar
A bundle is already installed with the name "com.ibm.icu" and version "54.1.1.v201501272100"
!ENTRY org.eclipse.update.configurator 4 0 2017-03-19 18:33:46.565
!MESSAGE Could not install bundle plugins/com.jcraft.jsch_0.1.53.v201508180515.jar
A bundle is already installed with the name "com.jcraft.jsch" and version "0.1.53.v201508180515"
!ENTRY org.eclipse.update.configurator 4 0 2017-03-19 18:33:46.570
!MESSAGE Could not install bundle plugins/com.sun.el_2.2.0.v201303151357.jar
A bundle is already installed with the name "com.sun.el" and version "2.2.0.v201303151357"
!ENTRY org.eclipse.update.configurator 4 0 2017-03-19 18:33:46.575
!MESSAGE Could not install bundle plugins/javaewah_0.7.9.v201401101600.jar
A bundle is already installed with the name "javaewah" and version "0.7.9.v201401101600"
...(additional log entries omitted for brevity)
How can I resolve this issue?
Answer
Problem Understanding
The issue arises due to residual configuration files or data from the previous installation of Tizen Studio. Even after uninstalling and reinstalling, these remnants can cause conflicts, preventing the IDE from launching properly.
Solution Methods
-
Manual Cleanup of Residual Files:
- Uninstall Tizen Studio completely.
- Manually delete the following folders:
tizen-studio-datatizen-studioworkspace(backup this folder if it contains important projects)
- Reinstall Tizen Studio.
-
Verify Java Installation:
- Ensure that Java 8 (1.8.0) is installed and properly configured.
- Check the
JAVA_HOMEenvironment variable to ensure it points to the correct Java installation directory.
-
Check Logs for Additional Clues:
- Review the full log file for any additional error messages that might indicate other underlying issues.
Additional Tips
- Backup Important Data: Always back up your workspace and project files before performing any cleanup or reinstallation.
- Use Latest Version: Consider upgrading to the latest version of Tizen Studio, as newer versions may have resolved similar issues.