我按照http://docs.gluonhq.com/charm/4.0.1/#_getting_started上的说明操作。我正在使用eclipse 4.5.2和JDK 1.8.0_102。我还从https://developer.android.com/studio/index.html#Other下载了带有24/25 API级别SDK的Android Studio。这是我做的:
gradle -v
返回正确的信息。 打开了“显示视图”菜单
并选择了Gradle Tasks
gradle任务视图与教程不同:
我选择了GluonTest/application/run
任务,它在桌面上运行良好。但是,我无法找到androidInstall
和launchIOSDevice
任务,如图所示。
这是我的gradle.build文件:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.1.1'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'gluon.main.GluonApplication'
dependencies {
compile 'com.gluonhq:charm:4.0.1'
}
jfxmobile {
downConfig {
version = '3.0.0'
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
android {
manifest = 'src/android/AndroidManifest.xml'
androidSdk = 'C:/Users/Mark/AppData/Local/Android/sdk'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
我唯一改变的是添加行androidSdk = 'C:/Users/Mark/AppData/Local/Android/sdk'
。
我知道我无法构建iOS项目但我应该能够为Android构建。我该怎么做?
答案 0 :(得分:3)
更新Eclipse Mars之后,我可以重现您的问题,并且可以轻松获得所有任务的解决方案:
基于此thread,似乎有公共和私人任务。
因此,默认情况下只显示公共任务(添加到任何类型组中的任务):
单击任务视图右侧的向下箭头图标:
选择Show All Tasks
:
您将有一个新的小组:other
,其中包含android
,launchIOSDevice
等缺失的任务: