- JavaFX Material Design Library download jar
- JFoenix android build download
- JFoenix Site
- Released builds are available from Maven Central
JFoenix is an open source Java library, that implements Google Material Design using Java components.
To build JFoenix, we created an Ant file named build.xml and build.bat. JFoenix uses Java version 1.8 u60. Using the command line, you need to move to the JFoenix/make directory and run the batch file build.bat by typing:
build.bat
To run the main demo, go to the JFoenix/make directory and run the batch file run-demo.bat :
run-demo.bat
NOTE : You need to update the build.bat to point to Java 1.8 and Apache Ant directories.
NOTE : Linux is also supported. In the make directory, use ./build.sh
and ./run-demo.sh
, respectively.
To build JFoenix, execute the following command:
gradlew build
To run the main demo, execute the following command:
gradlew run
NOTE : You need to set JAVA_HOME environment variable to point to Java 1.8 directory.
NOTE : JFoenix requires Java 1.8 u60 and above.
You can download the source code of the library and build it as mentioned previously. Building JFoenix will generate jfoenix.jar under the build/dist folder. To use JFoenix, import jfoenix.jar into your project and start using the new material design Java components :).
repositories {
mavenCentral()
}
Reference the repository from this location using:
dependencies {
compile 'com.jfoenix:jfoenix:1.0.0'
}