From 6b641ca405132c4439251b998b0bc60335714f24 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 12 Jan 2011 12:40:11 -0800 Subject: [PATCH] Added information about starting a command shell on the device --- README.android | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.android b/README.android index 437869b4e..e556db074 100644 --- a/README.android +++ b/README.android @@ -123,6 +123,12 @@ You can push files to the device with: You can push files to the SD Card at /sdcard, for example: adb push moose.dat /sdcard/moose.dat +You can see the files on the SD card with a shell command: + adb shell ls /sdcard/ + +You can start a command shell on the default device with: + adb shell + You can do a clean build with the following commands: ndk-build clean ndk-build