Skip to content

Commit

Permalink
Replace existing app if it already exists. (flutter#18796)
Browse files Browse the repository at this point in the history
The `flutter attach` test was failing because the Android device had
the app already installed.
  • Loading branch information
floitschG authored Jun 25, 2018
1 parent d248725 commit 783a278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/devicelab/bin/tasks/flutter_attach_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void main() {

section('Installing $apkPath');

await device.adb(<String>['install', apkPath]);
await device.adb(<String>['install', '-r', apkPath]);

try {
section('Launching attach.');
Expand Down

0 comments on commit 783a278

Please sign in to comment.