I want to use the OI File Manager as integrated file browser in my app to search and pick a file.
I could implement the browser with the following command:
Intent intent = new Intent("org.openintents.action.PICK_FILE");
startActivityForResult(intent, 1);
Then I took a look at the demo example and there is a problem, if I want to import
import org.openintents.intents.FileManagerIntents;
I get the following error in Eclipse:
The import org.openintents cannot be resolved
What is the problem?
Thanks, Mike