Sorry but I can't find the odk/form folder, or its correspondent, into
Android Emulator on the Macintosh. Can anyone help me?
Thanks
Ricardo Abdala
ricardo,
to interact with the emulator's sd card, you'll need to use ddms
(graphical) or adb (command line).
http://developer.android.com/guide/developing/debugging/ddms.html (in
particular, the file explore tab)
http://developer.android.com/guide/developing/tools/adb.html (using
adb pull/push or adb shell).
for example to move a form from your hard drive to the phone, you can
do something like
adb push ~/desktop/my_form.xml /sdcard/odk/forms
yaw