The droidentify program allows to save a report of the information it gathers by using the send action intent. Source code extract:
public static void shareReport(Context ctx) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/html");
...
On my device this results in Android presenting four possible recipients, all of which I do not want because I just want to save it to the local file system (/mnt/sdcard or wherever).
Are there any system configuration to enable file system as share target? Or do I have to install some program to do this? I am looking for a free one, with source code available if so.