I have written an app with xamarin but have run into a snag. I was allowing the user to backup their data to an external card on a samsung device. The path was /storage/extSdCard This of course stopped working with KitKat. From what I can read in the docs is the application should be allowed to freely write to: /storage/extSdCard/Android/data/package.name
However, when I look on the card, there is no folder there with my package name, there are other apps. I do have write/read external permission set in the manifest.
I also tried to create the package folder under Android/data but get permission errors.
Can someone point me in the write direction? How do I get a folder under extSdCard/Android/data/
Thanks.