On Feb 28, 2013, at 11:48 PM, johnbowick <[email protected]> wrote:
> I'm currently trying to develop an application under Android using Mono.

Plugins are problematic:

        http://forums.xamarin.com/discussion/comment/5245/#Comment_5245

You cannot have a Plugin which inherits from Java types or requires entries in 
AndroidManifest.xml, i.e. no Activities, no Services, etc. (This is as much an 
Android limitation as a Xamarin.Android limitation.)

Even if you have plugins which don't inherit from Java types or require 
AndroidManifest.xml generation, you still have the linker to deal with, as the 
code your plugin wants to use may not actually exist as it's been linked away.

I would suggest making your plugins separate `.apk` packages, using 
<intent-filter/>s/etc. to "register" the "plugin", and using StartActivity() to 
launch activities in the new .apk.

 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to