テストには Samsung Galaxy S7 を使用します。
携帯電話で gluon アプリケーションをコンパイルして起動する理由がわかりません。クラッシュします。私は SingleViewProject で試しましたが、同じ問題があります。
先週、私はこの問題を抱えていませんでした。
私の成績ファイル
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.8'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.gluonapplication.GluonApplication'
dependencies {
compile 'com.gluonhq:charm:2.1.1'
androidRuntime 'com.gluonhq:charm-android:2.1.1'
iosRuntime 'com.gluonhq:charm-ios:2.1.1'
desktopRuntime 'com.gluonhq:charm-desktop:2.1.1'
}
jfxmobile {
android {
manifest = 'src/android/AndroidManifest.xml'
androidSdk = "/Users/Alexandre/Library/Android/sdk"
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'io.datafx.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
}
}
スタックトレース
Process: com.gluonapplication, PID: 20944
java.lang.RuntimeException: Did not create correct launcher.
...
Caused by: java.lang.RuntimeException: Could not find /javafx.platform.properties on classpath.
私を助けるアイデアはありますか?