Running Java application in Android Studio

前端 未结 2 1963
再見小時候
再見小時候 2020-12-30 10:38

I created new libgdx project and i want to run desktop application in Android Studio. Is there something to do with run configurations? In Eclipse i can just choose Run as J

相关标签:
2条回答
  • 2020-12-30 11:16

    Ok, i did it. Here is the solution https://github.com/libgdx/libgdx/wiki/Gradle-and-Intellij-IDEA#running-your-project

    Run -> Edit Configurations..., click the plus (+) button and select Application.

    Set the Name to 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/ (or your_project_path/core/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.

    0 讨论(0)
  • 2020-12-30 11:24

    Right click on the main method (or anywhere in the main class) and select Run.

    0 讨论(0)
提交回复
热议问题