Disable AAPT cruncher on Windows for channel integration test (#9639)

It causes the test to be flaky, see https://github.com/flutter/flutter/issues/8986.
This commit is contained in:
Michael Goderbauer 2017-04-27 09:59:31 -07:00 committed by GitHub
parent 2891772846
commit 36f7a26641

View File

@ -33,6 +33,14 @@ android {
signingConfig signingConfigs.debug
}
}
aaptOptions {
// TODO(goderbauer): remove when https://github.com/flutter/flutter/issues/8986 is resolved.
if(System.getenv("FLUTTER_CI_WIN")) {
println "AAPT cruncher disabled when running on Win CI."
cruncherEnabled false
}
}
}
flutter {