Fixed
Status Update
Comments
uc...@google.com <uc...@google.com>
hu...@google.com <hu...@google.com>
hu...@google.com <hu...@google.com> #4
Created a bug for documentation update: b/138800246
Description
Studio doesn't respect testOptions.animationsDisabled. This is documented as intended, but means local test runs are always slower in these projects.
The only way I've found to set it in a way that's respected by both is to create a fake runner argument, and inject the parameter:
android {
defaultConfig {
testInstrumentationRunnerArgument 'thisisignored', 'thisisignored --no-window-animation'
}
}