Hi,
I'm trying to make a folder picker for Android using an Interface. I need to use an Interface with the DependecyService
in my pcl application. I have succeded to open the folder picker, but I don't know how to get the selected path.
This is the code I'm trying to use :
Intent intent = new Intent(Intent.ActionOpenDocumentTree);
intent.SetFlags(ActivityFlags.NewTask);
Application.Context.StartActivity(intent);
I don't know if this can be the correct solution
Thanks for any help.