diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-08 11:38:54 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-08 11:43:51 +0300 |
commit | cbca382f2fc0c64b409160d390357ba520c94259 (patch) | |
tree | 83a056c3fea9e12ee5f46eb454c15eef45dae2dd /android/Bootstrap | |
parent | f24cd7aadcd2eae3598f084804acb43c74835210 (diff) |
Clarify that "stop" and "start" is only for simulator, I guess
Change-Id: I0bb98a9842003973ad50f227961ac00197f85bf2
Diffstat (limited to 'android/Bootstrap')
-rw-r--r-- | android/Bootstrap/Makefile.shared | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/android/Bootstrap/Makefile.shared b/android/Bootstrap/Makefile.shared index d5936765204e..be2692718ef4 100644 --- a/android/Bootstrap/Makefile.shared +++ b/android/Bootstrap/Makefile.shared @@ -52,8 +52,10 @@ clean: properties $(ANT) clean rm -rf assets $(SODEST) $(OBJLOCAL) -# If you reinstall an app several times, even if you uninstall it -# between, disk space seems to leak that won't get recycled until you -# stop and start... +# If you reinstall an app several times *on the simulator*, even if you +# uninstall it between, disk space seems to leak that won't get recycled until +# you stop and start... No idea if this holds for a device, too. (And you +# can't "stop" a device anyway.) + stop-start-cycle: $(ANDROID_SDK_HOME)/platform-tools/adb shell stop && $(ANDROID_SDK_HOME)/platform-tools/adb shell start && sleep 10 |