Available Commands
From v2.2.0+, FAST-CLI provides a total of 7 commands to help you create, build, and manage your App Inventor extensions.
create
This command is for creating a new FAST extension project.
Basic Usage
- Open or navigate terminal at where you want to create new project.
- Run
fast create <ComponentName>
. - Enter the package name.
- Enter author name.
- Select language (Java or Kotlin) [Default: Java].
- Done.
Example
fast create MyExtension
Advanced Usage
Here is one more way to create a project within a single line of commands:
fast create <ComponentName> -p <PackageName> -a <AuthorName> -l <Java|Kotlin> -dir <WorkingDirectory>
Options:
-l
is an optional argument. [Default: Java]-dir
is an optional argument. [Default: Current Directory]
Example
fast create MyExtension -p com.example.myextension -a "John Doe" -l Kotlin