在Android Studio中运行Java应用程序

我创建了新的libgdx项目,并且想在Android

Studio中运行桌面应用程序。与运行配置有关吗?在Eclipse中,我可以选择“以Java应用程序运行”。

回答:

好吧,我做到了。这是解决方案https://github.com/libgdx/libgdx/wiki/Gradle-and-Intellij-

IDEA#running-your-project

Run -> Edit Configurations...,单击加号(+)按钮并选择应用程序。

将名称设置为Desktop

将字段设置Use classpath of moduledesktop,然后单击字段的按钮Main

class并选择DesktopLauncher类别。

将设置Working

directory为您android/assets/(或your_project_path/core/assets/)文件夹!

单击Apply,然后单击确定OK

现在,您已经为桌面项目创建了运行配置。现在,您可以选择配置并运行它。

以上是 在Android Studio中运行Java应用程序 的全部内容, 来源链接: utcz.com/qa/412089.html

回到顶部