A quick bit of background. On most Android devices, they have what is referred to as an "External Storage Drive" and is typically located on the file system under /mnt/sdcard. For phones which don't have a removable sdcard, it is usually a partition on the internal drive which is used for application and public file storage. More general info is available on the
Storage Options page of the Android dev site.
Regardless of how your device specifically configured, it should have some storage partition accessible through a call to Environment.getExternalStorageDirectory() which is essentially what the import activity uses along with the value of Constants.PATH_PROCEDURE to locate the procedure. The code is in the org.moca.activity.ProcedureSdImporter class-see the updateProcedureList() method. If you want to change where it looks for the files, just change the method or the value of Constants.PATH_PROCEDURE.
Hope that helps.
Eric
Sana Development