Hy guys,
I\'m trying to generate a Zip File with ICSharpCode.SharpZipLib library but it\'s throwing a really weird error.
Code:
public stati
I know this is an old thread, but I just spent an afternoon trying to fix this with monodroid 4.6. On the previous version the trick was to manually add a reference to the I18N and I18N.WEST libraries, but now starting with version 4.6 it doesn't work anymore. :(
So I applied a fix to the ZipConstants.cs file of SharpZipLib:
From:
static int defaultCodePage = Thread.CurrentThread.CurrentCulture.TextInfo.OEMCodePage;
To:
static int defaultCodePage = System.Text.Encoding.UTF8.CodePage;