当前位置: 首页 > 知识库问答 >
问题:

Android, Azure Devops在运行管道##[错误]错误:进程'/用户/运行者/工作/1/s/gradlew'失败,退出代码为1

景书
2023-03-14

Android, Azure Devops在运行管道##[错误]错误:进程'/用户/运行者/工作/1/s/gradlew'失败,退出代码为1

在locale系统中,所有工作apk都生成,但当在azure devops上运行管道时,它显示错误

FAILURE: Build failed with an exception.

* Where: Build file '/Users/runner/work/1/s/app/build.gradle' line: 2

* What went wrong: An exception occurred applying plugin request [id: 
'com.android.application']
 > Failed to apply plugin 'com.android.internal.application'.
   > Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.

我已经在使用Java 11了

我寻找相同的,但没有得到任何解决方案。

共有2个答案

邵浩大
2023-03-14

我有一个同样的问题,我解决了:

    - task: JavaToolInstaller@0
      inputs:
        versionSpec: '11'
        jdkArchitectureOption: 'x64'
        jdkSourceOption: 'PreInstalled'
汲昊空
2023-03-14

我通过在azure管道中为maven添加任务解决了这个问题。yml

steps:
  - task: Maven@3
    inputs:
      mavenPomFile: 'pom.xml'
      publishJUnitResults: false
      javaHomeOption: 'JDKVersion'
      jdkVersionOption: '1.11'
      mavenVersionOption: 'Default'
      mavenOptions: '-Xmx3072m'

希望这将有助于其他。。。

 类似资料: