-
Notifications
You must be signed in to change notification settings - Fork 53
Android - plugin 1.2.0.0 and 3 dimensions build #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Could you share the excerpt from your |
That is (more or less) my gradle flavors and build types android {
//....
flavorDimensions 'brand', 'environment'
productFlavors {
brandA {
dimension 'brand'
// ...
}
brandB {
dimension 'brand'
// ...
}
local {
dimension 'environment'
// ...
}
development {
dimension 'environment'
// ...
}
production {
dimension 'environment'
// ...
}
}
// ....
buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources true
useProguard true
proguardFiles // FILES HERE
signingConfig // CONFIG
}
debug {
// ...
}
ci {
initWith debug
// ...
}
}
} |
so you can substitue brandA (or brandB) with app In this case tasks would look like |
I have exactly the same problem.
whereas it should detect:
|
@mannodermaus could you be more specific on how to copy the filter as workaround? |
@santanaluiz Thank you! This snippet should help to reproduce this inside a test environment. Edit: I can indeed reproduce this locally. Will work on a fix and report back afterwards! |
A fix has been merged to master, and will be included in the next release. If you could, please check if the latest |
Any idea when 1.2.0.1 will be released? |
I was hoping to get some clarification on the snapshot, because the applied change works at least for me. I was aiming for the second half of this week for the bugfix release! |
The fix has been included in the new |
Hi,
I have a build with multiple dimensions and I'm having problems to add JUnit 5 (with AS 3.3 canary).
I've followed this wiki page
Problem is, it can not find extension and I don't see how to solve this:
The text was updated successfully, but these errors were encountered: