Tizen IDE crashes all the time

邮差的信 提交于 2019-12-06 22:26:41

It's a bit picky about the version of xulrunner after installation too

#!/bin/bash
# Proper header for a Bash script.
XURL=http://ftp.mozilla.org/pub/mozilla.org/xulrunner/nightly/2012/03/2012-03-29-03-32-28-mozilla-1.9.2/xulrunner-1.9.2.29pre.en-US.linux-x86_64.tar.bz2

mkdir /opt/xulrunner
cd /opt/xulrunner
sudo sh -c "wget -O- $XURL | tar -xj"
sudo rm /usr/bin/xulrunner
sudo rm /usr/bin/xpcshell 
sudo ln -s /opt/xulrunner/xulrunner /usr/bin/xulrunner
sudo ln -s /opt/xulrunner/xpcshell /usr/bin/xpcshell 

echo "-Dorg.eclipse.swt.browser.DefaultType=mozilla" >> ~/tizen-wearable-sdk/ide/eclipse.ini
echo "-Dorg.eclipse.swt.browser.XULRunnerPath=/opt/xulrunner" >> ~/tizen-wearable-sdk/ide/eclipse.ini

my solution was to remove the google talk plugin (in ubuntu)

apt-get remove google-talkplugin
Anuradha Fernando

Few checks

  1. Make sure you using the latest JDK (I use 7u65-2.5 )

  2. Update the following in /ide/eclipse.ini

-Dorg.eclipse.swt.browser.DefaultType=mozilla
-Dorg.eclipse.swt.browser.XULRunnerPath=<xulrunner path>

Worked for me.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!