Skip to main content

Android Guide

Development build

To create a development build,

  1. Follow the quickstart guide to create a new app with the app builder and install all the dependencies
  2. Run npm start in the project root. This will launch the CLI
  3. Select Build in the main menu
    Linux_Build
  4. Select Android in the platforms menu
    Android_Platform
  5. Select Development in the build menu
    Linux_Type_Development
  6. This will launch the development edition of the Android application on your system

Production build

To create a production build,

  1. Follow the quickstart guide to create a new app with the app builder and install all the dependencies
  2. Run npm start in the project root. This will launch the CLI
  3. Select Build in the main menu
    Linux_Build
  4. Select Android in the platforms menu
    Android_Platform
  5. Select Production in the build menu
    Linux_Type_Production
  6. This will build the production edition of the Android application on your system
  7. The binary will be located at agora-app-builder/<PRODUCT_ID>/android/app/build/outputs/apk/release

Production build with code signing

To create a production build with code signing,

  1. Set up environment variables for code signing by following this guide

  2. Continue building for production by following the above guide