Flutter AzureDevOps Setup

Viewed 10928

I am a new flutter developer. I would like to find out whether I am able to use Azure DevOps with FLutter? How do I set it up, so I am able to build and deploy for both IOS and Andriod? I do not have a Mac so I was hoping I could use DevOps tools to help build and Deploy IOS and Andriod apps all in one automated manner! Thank you!

1 Answers

You can use Azure DevOps for Flutter project CI/CD.

1, First, you need to install Flutter extension to your Azure organization from Visual Studio MarketPlace.

2, Then, you need to create an azure pipeline for the Flutter project.

To create a YAML pipeline, you can refer to this tutorial. Please check out the official document for more information about the Azure pipeline.

3, Add Flutter tasks in your pipeline to build your flutter project.

4, Deploy your app with deployment tasks(e.g. App Center Distribute task or Apple App Store)

This blog shares a detailed tutorial. You can check it out.

Related