mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-09 19:10:42 +00:00
Issue #4873: Only build fennecProduction build types with GeckoView Beta.
This commit is contained in:
parent
4f51af07ae
commit
00ead7e31f
@ -90,6 +90,7 @@ android {
|
||||
// | fenixNightly | ✅ | ✅ | Built with both, but only the "geckoNightly" one is published to Google Play
|
||||
// | fenixBeta | ❌ | ✅ | Fenix Beta ships with GV Beta
|
||||
// | fenixProduction | ❌ | ✅ | Fenix Production ships with GV Beta
|
||||
// | fennecProduction | ❌ | ✅ | Fenix build to replace production Firefox builds
|
||||
//
|
||||
|
||||
def flavors = flavors*.name.toString().toLowerCase()
|
||||
@ -101,6 +102,10 @@ android {
|
||||
if (buildType.name == 'fenixProduction' && flavors.contains("geckonightly")) {
|
||||
setIgnore true
|
||||
}
|
||||
|
||||
if (buildType.name == 'fennecProduction' && flavors.contains("geckonightly")) {
|
||||
setIgnore true
|
||||
}
|
||||
}
|
||||
|
||||
testOptions {
|
||||
|
Loading…
Reference in New Issue
Block a user