I'm using eclipse 3.4.1 , I want to install gwt using eclipse plugins.
If you want to install the Google Plugin for Eclipse (which includes the GWT SDK), see these instructions.
Related
I upgraded to WebStorm 2019.3 a few days ago and now the bundled Material theme shows the error 'Incompatible with the current WebStorm version'. In the Marketplace tab the version of Material theme is 4.10.0 Dez. 01, 2019. As it is bundled I can't de-install it. Any hints how to rid of the error or this theme?
Screenshot of Settings - Plugins:
Has to be some glitch as that's a 3rd party plugin and JetBrains will NOT bundle such plugins (but may offer on fresh install). I've just installed trial of WebStorm 2019.3 on Windows and that plugin was offered as a custom install -- it's not bundled for sure.
Solution -- reinstall plugin to fix this issue. For this:
Close IDE
Locate plugins folder (check https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs to locate plugins folder that is specific for your OS)
Manually delete that plugin file (could also be a folder; depends on plugin)
Launch IDE and check if plugin is still listed there (should not be listed now)
Install Material Theme UI plugin again using Plugins screen
I have followed the instructions in https://github.com/mbats/eclipse-buildroot-bundle/wiki/Tutorial-:-How-to-activate-and-install-the-Buildroot-Eclipse-plugin-%3F for installing the plugin.
Buildroot's server for eclipse plugins (https://buildroot.org/downloads/eclipse/) does'nt contain plugin for eclipse MARS version (v4.5).
I tried to install the 'Luna' version (v4.4) plugin but I got my toolchain list corrupted.
I tried starting-up eclipse with the -clean flag in the 'eclipse.ini' file but it didnt help either.
How can I make eclipse "register" buildroot plugin for eclipse versions higher than 4.4 ?
The plugin supports at most Eclipse Luna at the moment. Work is on-going to support higher versions.
How do you install griffon version 2.5? If I run
sdk list griffon
it shows me version 1.5 as latest version.
Griffon 2.x is not available as an sdk candidate because it no longer has a command line of its own. You either use gradle or maven to build Griffon 2.x projects. You have the option to initialize a project using lazybones however that's not a hard requirement, you can create the project from scratch if you like.
Be warned that IntelliJ has a Griffon plugin. This plugin does not work with Griffon 2.x (http://griffon-framework.org/tutorials/1_getting_started.html#_tutorial_1_4) and its usage is discouraged.
AFAIK there's no lazybones support in IntelliJ for project creation.
I try to install nodeclipse on Titanium Studio, I added the link http://www.nodeclipse.org/updates/, I got all the packages, but when I install them, Titanium warns me that lot of them already exist, and I let him install the other ones.
But after the installation ends, and restarting Titanium, i dont find the Node.js support.
That happened too on Aptana Studio.
here is the video showing that:
http://youtu.be/Lho06QBjRWY
Google drive pictures:
https://drive.google.com/folderview?id=0B-Iu7VFIRkh4VnNic0g5OHNIZzQ&usp=sharing
You don't need to install ALL plugins. E.g. latest Mylyn and EGit may be not compatible with Aptana that run on Eclipse 3.x API.
If you don't know what to install, there is picture on http://www.nodeclipse.org/updates/
Below is Enide-Recommended-Set-for-Nodejs for example.
(source: nodeclipse.org)
Also look at Enide Studio 2014 http://www.nodeclipse.org/enide/studio/2014/
Here is Enide Studio 2014.17 for win32 with ADT (Android tools) installed,
that I use
If there are still questions, raise issue on https://github.com/nodeclipse/nodeclipse-1/
I am developing an HTML/CSS/JS app with Phonegap Build (using phonegap 2.9.0) and I am trying to check the network connection of the device.
I included the plugin in the config.xml file like this :
<gap:plugin name="org.apache.cordova.network-information" />
But when I compile on Phonegap Build I get :
plugin unsupported: org.apache.cordova.network-information
Can you help me figure this out?
I am not sure I want to updgrade to phonegap version 3.0.0 because it doesn't support Blackberry...
it seems that Phonegap 2.9.0 doesn't need to load this plugin, like other core plugins :
http://community.phonegap.com/nitobi/topics/phonegap_build_plugin_unsupported_org_apache_cordova_network_information?rfm=1
You don't need to use a plugin. Providing you are creating this app in HTML5 and Javascript, you can simply call the function:
if navigator.onLine; <!--PERFORM A FUNCTION--> else;
Read more on it here:
http://www.w3schools.com/jsref/prop_nav_online.asp
Worked for me on my phone gap build.