Credit: The idea of the installation process and the project structures is inspired by RUSH. Thanks a ton, Shreyash
Features
- Annotations less source codes.
- Java 8 support, including lambda expressions (
()->
). - Support for Kotlin language to writte extension components.
- Support for Multi-component in extension.
- Integration of new red helper/drop-down blocks.
- Up-to-date ProGuard library 7.6.0.
- All @annotations will be removed from built aix.
- Optimizer to optimize aix size even without ProGuard.
- It generates a smaller size of extension.
- Ability to declare manifest attributes in AndroidManifest.xml.
- Support for Code suggestions on VSCode, Eclipse, IntelliJ IDEA and Android Studio.
- Filter Mit App Inventor provided classes to reduce the aix size.
- Support for project migration to FAST from Rush, extension-template & App Inventor source based extension.
- Support for Jetifier to make Android Support libraries compatible with AndroidX.
Supported OS
- Windows
- Linux
- MacOS
- Android (Termux, UserLand, etc)
Requirements
- Only Java is required to run the FAST. (JDK 8 or 11 is recommended).
How to install?
Windows Only
- Run the the below command on Windows PowerShell.
iwr https://raw.githubusercontent.com/jewelshkjony/fast-cli/main/scripts/install/win.ps1 -useb | iex
- The installation is successful. Youโre now good to use the FAST CLI.
Linux, MacOS & Android Termux
- Run the the below command on terminal.
curl https://raw.githubusercontent.com/jewelshkjony/fast-cli/main/scripts/install/install.sh -fsSL | sh
- The installation is successful. Youโre now good to use the FAST CLI.
How to update the FAST
Windows Only
- Make sure that FAST is already installed on your system.
- Run the the below command on Windows PowerShell.
iwr https://raw.githubusercontent.com/jewelshkjony/fast-cli/main/scripts/update/win.ps1 -useb | iex
- Done. Check the version of updated FAST.
Linux, MacOS & Android Termux
- Make sure that FAST is already installed on your system.
- Run the the below command on terminal.
curl https://raw.githubusercontent.com/jewelshkjony/fast-cli/main/scripts/update/install.sh -fsSL | sh
- Done. Check the version of updated FAST.
How to create a new FAST project
- Open terminal at where you want to create a new FAST project.
- Run
fast create <ProjectName>
- Enter the package name.
- Enter author name.
- Done.
How to declare the component class
- You need to annotate with @DesignerComponent to declare extension component classes.
Example:
@DesignerComponent(
version = 1,
versionName = "1.0",
description = "Developed by JEWEL by Fast.",
iconName = "icon.png"
)
- Required attributes:
version
,iconName
- Optional attributes:
versionName
,description
,designerHelpDescription
,helpUrl
,licenseName
- Ignored attributes:
category
,androidMinSdk
How to build a FAST project
- Open termanl at where the FAST project is.
- Run
fast build
to build the project. - Done. The compiled extension should be inside the out directory.
How to compile with ProGuard?
- Make sure that the proguard attribute is enabled on the
fast.yml
config file. Ex.proguard: true
- Run the build command with
-r
as an additional argument. Ex.fast build -r
Want to share an idea?
Please share your ideas here.
Getting issues?
Please open an issue here.
For additional support
Please send me a private message or comment below.
Release Notes
Please read the release notes from here.
Donation
I have dedicated a significant amount of time and effort into developing the FAST. If you find my work beneficial and would like to show your appreciation, you may consider making a donation here.
Thanks a lot to all the beta testers of FAST. Without their feedback and help, it would have been impossible to make FAST a stable compiler.