Commit 1ad346f5 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Add workaround for aapt cruncher issue to complex_layout app (#10679)

See https://github.com/flutter/flutter/issues/8986
parent e329356f
......@@ -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 CI, see https://github.com/flutter/flutter/issues/8986"
cruncherEnabled false
}
}
}
flutter {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment