Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 533 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 533 Bytes

Bitbucket Pipelines

This image can be used to test and build Android APKs developed with Flutter. Here is an example bitbucket-pipelines.yml for Bitbucket Pipelines including caches for gradle and gradlewrapper:

image: mortenboye/flutter-android-sdk

pipelines:
  default:
    - step:
        caches:
          - gradle
          - gradlewrapper
        script:
          - echo "Building APK..."
          - flutter doctor
          - flutter -v build apk

definitions:
  caches:
    gradlewrapper: ~/.gradle/wrapper