I was setting up an Azure DevOps Pipelines but, my build is failing and shows an error.
Error :
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
YAML file content is as given below.
trigger:
- develop
pool:
  vmImage: 'macos-latest'
steps:
- task: Gradle@2
  inputs:
    workingDirectory: ''
    gradleWrapperFile: 'gradlew'
    gradleOptions: '-Xmx3072m'
    publishJUnitResults: false
    testResultsFiles: '**/TEST-*.xml'
    tasks: 'assembleDebug --info'
Can anyone help me fix this?