I have just received the following error:
<span>* What went wrong:<br></span><span>Task 'mytask' not found in root project 'myproject' and its subprojects.</span><span>FAILURE: Build failed with an exception.</span>
This is the relevant bitbucket-pipelines.yml code:
image: mingc/android-build-box:latest
pipelines:
branches:
master:
- parallel:
- step:
name: Build Debug
caches:
- gradle
script:
- bash ./gradlew assembleMyAppDebug
artifacts:
- app/build/outputs/**
I have made 2 changes to my build.config, which are:
ndk {
abiFilters "armeabi-v7a", "armeabi" // includes ARM SO files only, so no x86 SO file
}and adding += to flavourDimensons and changing the name, i.e. it was
flavorDimensions "default"
and is now
flavorDimensions += "base_url"
Could either of those changes cause an issue? And if not, any advice on what may be happening here or on how I may be able to get more information?