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

  1. Open or navigate terminal at where you want to create new project.
  2. Run fast create <ComponentName>.
  3. Enter the package name.
  4. Enter author name.
  5. Select language (Java or Kotlin) [Default: Java].
  6. 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