Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 993 Bytes

File metadata and controls

26 lines (20 loc) · 993 Bytes

Docker image with Android SDK and Flutter

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: martinlowinski/flutter-android-sdk

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

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