fix apk location for devicelab (#54697)

This commit is contained in:
Jonah Williams 2020-04-13 16:56:27 -07:00 committed by GitHub
parent db36d3b98a
commit 6cb74eeac8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -416,13 +416,8 @@ class CompileTest {
watch.start();
await flutter('build', options: options);
watch.stop();
String apkPath = '$cwd/build/app/outputs/apk/app.apk';
File apk = file(apkPath);
if (!apk.existsSync()) {
// Pre Android SDK 26 path
apkPath = '$cwd/build/app/outputs/apk/app-release.apk';
apk = file(apkPath);
}
final String apkPath = '$cwd/build/app/outputs/flutter-apk/app-release.apk';
final File apk = file(apkPath);
releaseSizeInBytes = apk.lengthSync();
if (reportPackageContentSizes)
metrics.addAll(await getSizesFromApk(apkPath));