diff options
author | cyBerta <richy@cyborgsociety.org> | 2013-11-09 20:09:24 +0100 |
---|---|---|
committer | cyBerta <richy@cyborgsociety.org> | 2013-11-09 20:09:24 +0100 |
commit | 0718d1fd0c5ff023edadb5f519d61a177d703656 (patch) | |
tree | 53986a175458cd90f188037d2d3f8a1a5c9c4330 /debug.sh | |
parent | 93ea778bf85b15cf3e495489b5d1f029da54c537 (diff) |
bitmaskclient instead of leapclient in package path
Diffstat (limited to 'debug.sh')
-rwxr-xr-x | debug.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,9 +25,9 @@ wait_until_booted() { emulator -wipe-data @$avd_name & # If you want to test the app from scratch wait_until_booted adb install -r $PROJECT_FOLDER/bin/LEAP\ Android-debug.apk # Install the new version of the application -adb shell am start -D se.leap.leapclient/.Dashboard # Run app +adb shell am start -D se.leap.bitmaskclient/.Dashboard # Run app sleep 1 -pid=`adb shell ps | grep leap | awk '{print $2}'` # Identify the process id (pid) of the current leapclient process instance +pid=`adb shell ps | grep leap | awk '{print $2}'` # Identify the process id (pid) of the current bitmaskclient process instance echo forwarding tcp:$localport to jwdp:$pid adb forward tcp:$localport jdwp:$pid jdb -sourcepath $PROJECT_FOLDER/src/ -attach localhost:$localport |