Tag: 胶子手机

使用IntelliJ的Gluon / JavaFXPorts的Android应用程序 – Android设置不完整

我刚刚在IntelliJ上创建了一个简单的应用程序,并且想知道为什么在我的AndroidManifest.xml编辑器中有这么多的红色。 我注意到,模块设置似乎有点关闭。 由于我不是IntelliJ上的专家,所以在打破Gradle或其他方面之前,我宁愿问一下。 简而言之:我如何设置项目,以便我拥有完整的Android支持,支持库和日志视图集成。 提前致谢。 #edit为了显示我的例子,这里是build.gradle文件。 也许这有帮助。 此外,我正在使用IntelliJ IDEA 2017.2.5。 buildscript { ext.kotlin_version = '1.1.4-3' repositories { jcenter() mavenCentral() mavenLocal() } dependencies { classpath 'org.javafxports:jfxmobile-plugin:1.3.8' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } plugins { id "com.github.ben-manes.versions" version "0.15.0" } dependencyUpdates.resolutionStrategy = { componentSelection { rules -> rules.all { ComponentSelection selection -> boolean rejected = ['alpha', 'alpha-preview', 'beta', 'rc', […]