Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pipelines: Minimum supported Gradle version is 4.10.1. Current version is 4.4

I have updated top-level build.gradle file : from

classpath 'com.android.tools.build:gradle:3.1.4'

to

classpath 'com.android.tools.build:gradle:3.3.0'

And now cant build project on Bitbucket-Pipelines: Error is:

FAILURE: Build failed with an exception.
* Where:
Build file '/opt/atlassian/pipelines/agent/build/app/build.gradle' line: 1
* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Minimum supported Gradle version is 4.10.1. Current version is 4.4. If using the gradle wrapper, try editing the distributionUrl in /opt/atlassian/pipelines/agent/build/gradle/wrapper/gradle-wrapper.properties to gradle-4.10.1-all.zip
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 37s
like image 571
NickUnuchek Avatar asked Jan 26 '23 19:01

NickUnuchek


1 Answers

Minimum supported Gradle version is 4.10.1. Current version is 4.4.

The statement itself says the solution

Please change inside project>gradle>wrapper>gradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

to

distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
like image 190
Vir Rajpurohit Avatar answered Jan 31 '23 20:01

Vir Rajpurohit