hey24sheep / azure-flutter-tasks

Easily build and deploy with latest Flutter build tasks for Azure DevOps Pipelines Tasks
https://marketplace.visualstudio.com/items?itemName=Hey24sheep.flutter
MIT License
89 stars 22 forks source link

Flutter build fails Java 11 required #88

Closed ElaineBSchwaner closed 1 year ago

ElaineBSchwaner commented 1 year ago

Hello, colleagues!

Everything was going well. But I had to upgrade gradle to use Firebase, now it is failing build due to this error:

How can I use Java 11 with this plugin?

Thank you!

ElaineBSchwaner commented 1 year ago

I got it.

Just had to add this before FlutterInstall@0:

      - task: JavaToolInstaller@0
        inputs:
          versionSpec: '11'
          jdkArchitectureOption: 'x64'
          jdkSourceOption: 'PreInstalled'