Commit f8238185 authored by Yegor's avatar Yegor Committed by Ian Hickson

fix size Android tests broken by #8759 (#8796)

parent 054b5669
...@@ -36,7 +36,7 @@ TaskFunction createBasicMaterialAppSizeTest() { ...@@ -36,7 +36,7 @@ TaskFunction createBasicMaterialAppSizeTest() {
releaseSizeInBytes = await file('${sampleDir.path}/build/app.ipa').length(); releaseSizeInBytes = await file('${sampleDir.path}/build/app.ipa').length();
} else { } else {
await flutter('build', options: <String>['apk', '--release']); await flutter('build', options: <String>['apk', '--release']);
releaseSizeInBytes = await file('${sampleDir.path}/android/app/build/outputs/apk/app.apk').length(); releaseSizeInBytes = await file('${sampleDir.path}/build/app/outputs/apk/app-release.apk').length();
} }
}); });
}); });
......
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