I'm trying to use DotNetZip (http://dotnetzip.codeplex.com/) in a monotouch project.
I have re-compiled it for monotouch, by making two new monotouch projects under MonoDevelop (one for ZLib and the other for DotNetZip), putting the code inside, removing code that references Windows Forms, and setting Compile Target = Library in the project options.
I set the active configuration in MonoDevelop to "Release - iPhone" before compiling.
Then, I referenced the resulting DLLs in my main monotouch project.
That works fine when running in the simulator, but when I try to debug this on the actual device (an iPod Touch 4 in my case), I get an error at runtime:
System.ExecutionEngineException has been thrown
Attempting to JIT compile method 'Vortaro.SearchTableViewSource:.ctor (Vortaro.SearchViewController)' while running with --aot-only.
That happens on this line:
using (ZipFile zip = ZipFile.Read ("dictionary.zip")) {
--
I also tested with a simple example that only does this when a button is clicked:
ZipFile.Read ("dictionary.zip");
and I get this error:
Unhandled Exception: System.ExecutionEngineException: Attempting to JIT compile method 'Ionic.Zip.ZipContainer:.ctor (object)' while running with --aot-only.
at Ionic.Zip.ZipEntry.ReadDirEntry (Ionic.Zip.ZipFile zf) [0x000b5] in /Users/(...)/ZipDirEntry.cs:199
When I look at the constructor to which the error points, I fail to see anything that could cause the JIT compilation:
public ZipContainer(Object o)
{
_zf = (o as ZipFile);
_zos = (o as ZipOutputStream);
_zis = (o as ZipInputStream);
}