javafx - ANDROID_HOME not specified -


this error getting

failure: build failed exception.

  • what went wrong: android_home not specified. either set gradle property, system environment variable or directly in build.gradle setting extension jfxmobile.android.androidsdk.

  • try: run --stacktrace option stack trace. run --info or --debug option more log output.

build failed

i think, have add android path on build.gradle . here setting android part:

jfxmobile {     android { //        signingconfig { //            storefile file("") //            storepassword '' //            keyalias '' //            keypassword '' //        }         applicationpackage = 'my.package.app.name'         manifest = 'src/android/androidmanifest.xml'         resdirectory = 'src/android/res'         androidsdk ="$system.env.home/android-sdks" // bassicly path android sdk     } } 

try it.

regards,

ivan


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -