Fledge

Automatically build, test, sign and release your Flutter app to both Apple and Google stores.

Supports public and private build servers in the cloud (Travis, Cirrus, etc...) and in-house (Jenkins, GitLab, etc...).

There are many steps involved each time an app, or an app upgrade, is delivered to both stores. Fledge exists to document and automate these steps.

Quick start

For example, with GitHub and Travis:

  1. Install Fledge

    $ pub global activate fledge
    
  2. Add secrets
    Set your secret variables in:

    https://travis-ci.org/<your name>/<your repo>/settings
    

travis_secret_env
These variables are used for signing and uploading to both stores.

  1. Add app to Fledge
    Install the Travis config file and Fastlane files

    $ fledge config -b travis
    
  2. Start a beta
    Run pipeline on Travis

    $ fledge beta
    

    This will build your app, upload to both store consoles and release to beta testers.

  3. Release to users

    $ fledge release
    

    This will release the app to users.

Documentation

As with any mobile app, there are several one-time setup tasks (most of which you have to do anyway… even without a CICD tool).

To avoid having to gather together all the bits and pieces of information required to deliver a Flutter app, the Fledge project has created complete documentation to walk you thru all the setup tasks for the more common scenarios.

One of the reasons the Fledge projects exists is to document these one-time setup tasks and progressively automate them where possible (and then remove from documentation).

View the documentation site for complete usage and configuration information.

Demo

For a demo of Fledge in action see: https://github.com/mmcc007/todo. Links are included to view the pipeline on Travis that delivers betas and releases to both stores.

The demo app was delivered automatically to both Google and Apple stores using a Fledge pipeline.

You can download the demo app to your android or iOS device:
GitErDone
GitErDone

Fledge trace-back feature

This feature allows you to track what version of your app is running on any device. Useful for support and bug-fixing.

To use the Fledge trace-back feature, tap on the app title 'GitErDone' to view the 'About'.

On an android device you will see:
android_screenshot

On an iOS device you will see:
ios_screenshot

You can then trace back to the Fledge pipeline that delivered the app (click on image below for link to actual pipeline):
fledge_pipeline

GitHub

https://github.com/mmcc007/fledge