Merge pull request #2631 from devoncarew/fix_app_delete

fix a launch issue when the user has deleted the app
This commit is contained in:
Devon Carew 2016-03-12 10:34:56 -08:00
commit e67b67680b

View File

@ -147,7 +147,11 @@ class AndroidDevice extends Device {
@override
bool isAppInstalled(ApplicationPackage app) {
// Just check for the existence of the application SHA.
// This call takes 400ms - 600ms.
if (runCheckedSync(adbCommandForDevice(['shell', 'pm', 'path', app.id])).isEmpty)
return false;
// Check the application SHA.
return _getDeviceApkSha1(app) == _getSourceSha1(app);
}