0

以下の 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')
}
4

1 に答える 1

1

次のようにビルド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')
//other dependencies - go here
}
于 2015-07-16T08:23:22.113 に答える