Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App center Error: /Users/runner/work/1/s/android/gradlew failed with return code: 1

I'm using react native to build my apps and thought to give Microsoft app center a chance.

The main issue I have is that I cannot finish the build.

This should be a non-production build that will be tested by the QA team.

This is the error I get:

like image 703
Liri Elgozi Avatar asked Aug 10 '26 13:08

Liri Elgozi


2 Answers

I have found the issue.

I was the Gradle version, there is no 7.3**

The latest version is 7.1.1 so when I changed the URL to gradle-7.1.1-all.zip It worked.

like image 115
Liri Elgozi Avatar answered Aug 12 '26 06:08

Liri Elgozi


Seems like a java compatibility issue with your project gradle!

Open your app center build config page > enable the Environment variables

Set JAVA_HOME as $(JAVA_HOME_11_X64) and click on save and build.

enter image description here

like image 40
Gurbela Avatar answered Aug 12 '26 07:08

Gurbela