Skip to content

Instantly share code, notes, and snippets.

@Red-Folder
Created August 16, 2013 19:04
Show Gist options
  • Save Red-Folder/6252606 to your computer and use it in GitHub Desktop.
Save Red-Folder/6252606 to your computer and use it in GitHub Desktop.
Write-Output "Checking if the app has finished"
$resultCode = 0
& adb shell ps 2>&1 | % {if($_.contains("com.red_folder.phonegap.plugin.backgroundservice.sample")) { Write-Output "App is still running"; $resultCode = -1 } }
exit $resultCode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment