Skip to content

Gradle and Intellij IDEA

Mario Zechner edited this page Mar 24, 2014 · 5 revisions

You just generated your libgdx project, now it's time to start developing its guts in Intellij IDEA! Before you can import your project into Eclipse, make sure you setup your development environment!

Importing Your Project

Go to Import Project, navigate to your project folder and select the build.gradle file. Hit OK. In the next dialog, leave all settings as they are and hit OK again. Intellij IDEA will now import your project. This can take a while on the first time, as it downloads the Gradle wrapper and some dependencies.

Running Your Project

  • Desktop: Run -> Edit Configurations..., click the plus (+) button and select Application. Set the Nameto Desktop.Set the field Use classpath of module to desktop, then click on the button of the Main class field and select the DesktopLauncher class. Set the Working directory to your android/assets/ folder! Click Apply and then OK. You have now created a run configuration for your desktop project. You can now select the configuration and run it.
  • Android: A configuration for the Android project should be automatically created on project import. As such, you only have to select the configuration and run it!
  • iOS: Run -> Edit Configurations..., click the plus (+) button and select Gradle. Set the Name to iOS, set the Gradle Project to ios, set the Tasks to launchIPhoneSimulator (alternatives are launchIPadSimulator and launchIOSDevicefor provisioned devices). Click Apply and then OK. You have now created a run configuration for your iOS project. You can now select the configuration and run it. The first run will take a bit longer as RoboVM has to compile the entire JDK for iOS. Subsequent runs will compile considerably faster!

Packaging your Project

  • HTML: Run -> Edit Configurations..., click the plus (+) button and select Gradle. Set the Name to HTML, set the Gradle Project to gwt, set the Tasks to superDev. Click Apply and then OK. You have now created a run configuration for your GWT project. You can now select the configuration and run it. Follow the build process in the console. This will take a while, as your Java code is compiled to Javascript. Once you see the message The code server is ready, fire up your browser and go to http://localhost:9876. Drag the Dev Mode Onbookmarklet to your browser bar. You only have to do this once! Next, go to http://localhost:8080/gwt. This is your app running in the browser! When you change any of your Java code, just click the Dev Mode On bookmarklet while you are on the site and the server at port 9876 will recompile your code and reload the page!

Debugging Your Project

Follow the steps for running the project, but instead of launching via the run (Play) button, launch your configuration via the debug (bug) button. Note that RoboVM currently does not support debugging. Debuggin of the GWT build can be done in the browser as follows:

Run the superDev Gradle task as before. Go to http://localhost:8080/gwt, click on the Dev Mode On boorkmarklet and hit Compile. In Chrome, press F12 to bring up the developer tools, go to the sources tab and find the Java file you want to debug. Set breakpoints, step and inspect variables using the power of source maps!

super dev mode

Packaging your Project

It's easiest to package your application from the command line, or using the Gradle task within Intellij IDEA. To see the relevant Gradle tasks, check the Gradle command line documentation.

Table of Contents

a note from the translation

Wiki Style Guide

Clone this wiki locally