Commit eebc72a3 authored by Jakob Andersen's avatar Jakob Andersen Committed by GitHub

Update path to built .apk. (#8137)

parent a816611d
...@@ -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}/build/app.apk').length(); releaseSizeInBytes = await file('${sampleDir.path}/android/app/build/outputs/apk/app.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