Hi, We are getting the “No installed build tools found. Please install the Android build tools version 30.0.3” recently in azure devops pipeline. Is there a way we can install the build tools through a task in Azure pipeline?
That’s more a very Android specific question.
If you don’t get an answer here, you might ask in some Android community instead, or in an Azure community.
I’m not really into Android development, but as far as I remember, the Android Gradle Plugin requires that these tools are already installed at configuration time. So it probably is not possible within the same build. Maybe you could somehow trick it by installing it from a buildSrc
build or similar. But maybe it is cleaner to do it in an Azure DevOps specific way.
Hi, we are having the same problem, have you found a solution?