我正在关注this页面,以创建一个带视频播放的测试应用。
Eclipse
已准备好并已安装Gluon
。
已创建SingleView
Gluon
Project
。
在Gluon Mobile Settings
我添加了视频;我检查了build.gradle
所以文件看起来像:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.11'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.gluonapplication.GluonMultimediaApplication'
dependencies {
compile 'com.gluonhq:charm:5.0.0'
}
jfxmobile {
downConfig {
version = '3.8.0'
// Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
plugins 'display', 'lifecycle', 'statusbar', 'storage', 'video'
}
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
我还通过默认BasicView
从上面的链接“复制并粘贴”了BasicView
。
注意:我必须更改构造函数,因为View
构造函数不接受String
...
注意:
Project and External Dependencies
Eclipse
显示了魅力下载插件列表,但不视频注意:
gradle dependencies
向我显示视频服务的版本(3.6.0)
我缺少什么?
更新:
gradle clean
,gradle --refresh-dependencies
没有任何影响(由于gradle dependencies
向我显示VIDEO是依赖项,这似乎很疯狂?!
答案 0 :(得分:1)
项目人民币 - > Gradle - >刷新Gradle项目