summaryrefslogtreecommitdiff
path: root/debug.sh
diff options
context:
space:
mode:
authorSean Leonard <meanderingcode@aetherislands.net>2013-10-20 14:15:22 -0700
committerSean Leonard <meanderingcode@aetherislands.net>2013-10-20 14:15:22 -0700
commitd3413b007a8f89e8a222455b5dd571b0e05e5a78 (patch)
tree40981e15c9eff744c71278e42cd0aba203c23f08 /debug.sh
parent04fedee9f6be1e3e46a8c91c9a39343513cc6fe1 (diff)
parentf657ab24f95016173d037d1e4714bb07bcd33fc2 (diff)
Merge branch 'feature/rebrand-as-bitmask' into develop
Diffstat (limited to 'debug.sh')
-rwxr-xr-xdebug.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug.sh b/debug.sh
index 18679368..04e0fed0 100755
--- a/debug.sh
+++ b/debug.sh
@@ -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