Skip to content

Commit ecb9119

Browse files
authored
Fix TizenDevice.uninstallApp unexpectedly returning false (flutter-tizen#560)
1 parent 3d6f4bc commit ecb9119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tizen_device.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ class TizenDevice extends Device {
305305
}) async {
306306
final RunResult result =
307307
await runSdbAsync(<String>['uninstall', app.id], checked: false);
308-
if (result.exitCode != 0 || !result.stdout.contains('val[ok]')) {
308+
if (result.exitCode != 0) {
309309
_logger.printError('sdb uninstall failed:\n$result');
310310
return false;
311311
}

0 commit comments

Comments
 (0)