Skip to content
Hemanth Krishna edited this page Sep 17, 2020 · 5 revisions

AppBrickie Wiki

Build and debug android apps with Ease.

Resources

Input Parameters Available

Input Param Description Required Default
chatid The Unique Id Generated by you on the @AppBrickieBot Telegram Bot yes
type Flutter Build or Native Build "flutter" or "native" "native"
packagename The Name of your app no app-debug.apk
abi [Only for Flutter] Specifies the target abi of your app no Generate Fat Apk
firebase Contents of your google-services.json file yes (if your app uses firebase services)
keystore The OpenSSL generated dump of your keystore file no
keystorePassword Password of your keystore file no
keyAlias Alias of the key used for signing the app no
keyPassword Password of your keyAlias no

In YAML file

inputs:
  chatid:
    description: "The Place to send the App"
    requried: true
  packagename:
    description: "Name of your app"
    requried: false
  type:
    description: "The Framework that you are using to build your app"
    requried: true
    default: "native"
  abi:
    description: "Target ABI for flutter builds"
    requried: false
  firebase:
    description: "Contents of your google-services.json file"
    requried: false
  keystore:
    description: "The text dump you generated of your keystore"
    requried: false
  keystorePassword:
    description: "Password of your keystore file"
    requried: false
  keyAlias:
    description: "Key alias of your key that needs to be signed"
    requried: false
  keyPassword: 
    description: "Password of the key in your keystore file"
    requried: false

Limitations

Telegram limits bot file uploads to a maximum of 50mb, hence if your app build exceeds this size it will not be delivered on Telegram.

Alternatives that could be used:

  • Temporary Blob Storage Mechanism
  • Push the build to repository itself and send the link
Clone this wiki locally