Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter AzureDevOps Setup

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!

like image 210
blackheart dv Avatar asked May 16 '20 11:05

blackheart dv


People also ask

How do I set up azures DevOps pipeline?

Create your first Java pipelineSign-in to your Azure DevOps organization and go to your project. Go to Pipelines, and then select New pipeline. Do the steps of the wizard by first selecting GitHub as the location of your source code. You might be redirected to GitHub to sign in.

What is Azure DevOps pipeline?

Many pipeline choices are available, such as the Azure DevOps pipeline, a cloud service that offers a place to build and test code automatically. The Azure DevOps build pipeline integrates well with resources such as Bitbucket Cloud, Azure Repos Git & TFVC, GitHub, GitHub Enterprise, and Subversion.


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.

like image 52
Levi Lu-MSFT Avatar answered Oct 02 '22 23:10

Levi Lu-MSFT