https://bugzilla.novell.com/show_bug.cgi?id=643202
https://bugzilla.novell.com/show_bug.cgi?id=643202#c3 --- Comment #3 from Jonathan Pryor <[email protected]> 2010-10-01 17:02:08 UTC --- There are two underlying bugs here: 1. Not all assemblies are being passed to monodroid.exe. All non-framework assemblies that need to be bundled into the .apk need to provided as command-line arguments: monodroid.exe --args=... assembly1.dll assembly2.dll This can be worked around by using <MonoDroidExtraArgs/> in the application .csproj, e.g.: <PropertyGroup> <MonoDroidExtraArgs>bin\Debug\HelloLibrary.dll</MonoDroidExtraArgs> </PropertyGroup> This workaround will allow the build to complete without error (yay), but the resulting .apk won't work properly (boo). 2. monodroid.exe has a proxy-generation bug which prevents the resulting .apk from working as expected. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
