Skip to content

Instantly share code, notes, and snippets.

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