This looks similar too some other packaging issues outstanding that might
have to do with generics and/or abstract classes.

More info; this is what my ProcessLogin class inherits from:

public abstract class AsyncCommand<TParams, TProgress, TResult>
        : AsyncTask<TParams, TProgress, TResult>, IContextSetter,
ICallbackSetter<TResult>
    {
        protected override Object DoInBackground(params Object[] args) {
return base.DoInBackground(args); }
        protected abstract override TResult RunInBackground(params TParams[]
args);
        public abstract void SetContext(Context context);
        public abstract void SetCallback(Action<TResult> callback);
    }

--
View this message in context: 
http://mono-for-android.1047100.n5.nabble.com/Mono-for-Android-4-Constructor-injection-causes-packaging-failure-tp5057049p5058391.html
Sent from the Mono for Android mailing list archive at Nabble.com.
_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

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

Reply via email to