I would like to develop an Android app using the Gluon Mobile framework.
I installed the Gluon plugin in my Netbeans IDE, created a sample project and built it successfully.
Now I would like to deploy the app to an Android device. I'm referring to the online documentation [1]: http://docs.gluonhq.com/charm/4.2.0/#_getting_started
As in [1], section "2.1.3. Android", I downloaded Android Studio 2.2.3 and installed the build-tools version 23.0.1 and the SDK Platform for API 21 from the Android SDK Manager.
However I can't see/install the "Android Support Library" from the Extras menu (Yes, I marked the "Obsolete" box).
Not surprisingly, I get the following error message, when I use "right click on my Netbeans-Project -> Tasks -> android -> android":
FAILURE: Build failed with an exception.
- What went wrong:
Failed to capture snapshot of input files for task 'mergeClassesIntoJar' during up-to-date check.
java.io.FileNotFoundException: C:\Users...\AppData\Local\Android\sdk\extras\android\support\multidex\library\libs\android-support-multidex.jar (Das System kann den angegebenen Pfad nicht finden)
Indeed, the file "android-support-multidex.jar" is not available since the "Android Support Library" is not installed.
How can I install the "Android Support Library"?
Any help is very much appreciated!
Answer
It has been asked here and here, but since the answers are in different contexts, maybe it's worthy having a summary here.
Up until version 1.2.0, the jfxmobile plugin has been working with the obsolete Android Support Library.
Now this library is not only obsolete but not available any more for download.
The current version of the jfxmobile plugin is 1.3.2, and it includes the required changes to work without that library, and use the multidex-1.0.1.aar
library instead.
To make it work, just follow these steps:
Open the Android SDK Manager and make sure you have installed
Extras/Google Repository
andExtras/Android Support Repository
.Make sure you have this library:
ANDROID_HOME/extras/android/m2repository/com/android/support/multidex/1.0.1/multidex-1.0.1.aar
.
Now on your project:
Update the
build.gradle
file of your project to use the jfxmobile plugin current 1.3.2 versionIf you add to the android configuration the android SDK path, you should move it to a properties file. For that, just create a properties file under
C:\Users\
, and add the\.gradle\gradle.properties ANDROID_HOME
variable:ANDROID_HOME=C:/
. And remove the/sdk androidSdk
from the android block if it was added.Save and reload your project so the new configuration takes place (On the projects tab, root of the project, right click, Reload Project).
EDIT
If you are on Windows, make sure that Android SDK is installed under a location where gradle will have enough permissions to create folders and extract the .aar file.
No comments:
Post a Comment