以下の build.gradle を検討してください。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b9'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
}
mainClassName = 'com.rameses.Main'
jfxmobile {
android {
manifest = 'src/android/AndroidManifest.xml'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
}
}
そして、新しい依存関係を追加したい
dependencies {
compile files('libs/custom.jar')
}
質問 : 2 つの依存関係を一緒にマージする方法は? 以下のコードのようなものを試しましたが、機能せず、エラーがスローされました。何か案が?
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b9',
compile files('libs/custom.jar')
}