我正在关注 youtube 上的教程...一切都很好,直到我在 Gradle 任务中双击“android”来构建 apk...起初我遇到以下错误:
无法使用 Gradle 分发版“ https://services.gradle.org/distributions/gradle-2.2.1-all.zip ”执行构建。 我已经安装了所有东西(sdk,gradle ...)
现在我得到了这个:
配置的compileSdkVersion无效:21(C:/Users/Hayden/AppData/Local/Android/sdk/platforms/android-21
无法使用 Gradle 分发版“ https://services.gradle.org/distributions/gradle-2.2.1-all.zip ”执行构建。
提前致谢!
** 摇篮 **
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b10'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
}
mainClassName = 'com.twentyOneStudios.FxApplication'
jfxmobile {
android {
manifest = 'src/android/AndroidManifest.xml'
androidSdk = 'C:/Users/Hayden/AppData/Local/Android/sdk'
}
}
IDE 是 e(fx)clipse 4.5 Mars。