Unverified Commit 62621507 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

fix run release test APK location (#54703)

parent 6cb74eea
...@@ -106,14 +106,14 @@ void main() { ...@@ -106,14 +106,14 @@ void main() {
_findNextMatcherInList( _findNextMatcherInList(
stdout, stdout,
(String line) => line.contains('Built build/app/outputs/apk/release/app-release.apk (') && line.contains('MB).'), (String line) => line.contains('Built build/app/outputs/flutter-apk/app-release.apk (') && line.contains('MB).'),
'Built build/app/outputs/apk/release/app-release.apk', 'Built build/app/outputs/flutter-apk/app-release.apk',
); );
_findNextMatcherInList( _findNextMatcherInList(
stdout, stdout,
(String line) => line.startsWith('Installing build/app/outputs/apk/app.apk...'), (String line) => line.startsWith('Installing build/app/outputs/flutter-apk/app.apk...'),
'Installing build/app/outputs/apk/app.apk...', 'Installing build/app/outputs/flutter-apk/app.apk...',
); );
_findNextMatcherInList( _findNextMatcherInList(
......
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