I'm trying to implement zip functionality in my Xamarin Android mvvmCross Project.
I was wondering if there is an archiving library similar to Microsoft.Bcl.Compression for extracting files from a zip file and is supported by Mono Android. I have tried to use zlib portable but I noticed that it provides only compressing and uncompresing of streams.
Thank you in advance.
Generally file handling won't work in PCL's as they know nothing about the underlying file system. So you will need some kind of file abstraction for each platform you intend to support. In MvvmCross you can do this by providing your own plugin for this. The PCL contains all the logic while the platform dependent projects do all the file processing sending the stream to your PCL.
You can read more about plugins here: https://github.com/MvvmCross/MvvmCross/wiki/MvvmCross-plugins