Re: [mono-android] Failure to package/build with generic class inheriting from JavaList

2012-01-04 Thread Jonathan Pryor
On Dec 19, 2011, at 11:03 PM, Felix Collins wrote: > My class declaration is... > public partial class NotifyingList : Android.Runtime.JavaList This will be fixed in the next release. > Any ideas or workarounds? Subclassing the non-generic JavaList class works, as does inheriting from List

Re: [mono-android] Failure to package/build with generic class inheriting from JavaList

2011-12-20 Thread Felix Collins
I should add that if I inherit from List instead of JavaList then it all compiles/packages/deploys fine. ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid

Re: [mono-android] Failure to package/build with generic class inheriting from JavaList

2011-12-20 Thread Felix Collins
On 21/12/2011 8:56 a.m., caruso wrote: > This is the true Error you dont implement all abstract methods in Your Splash > Screen Activity. Hi, Thanks for the clue! I managed to work out that the problem was that onBackPressed() was being overridden and I was targeting a pre Android2 API (1.6 whic

Re: [mono-android] Failure to package/build with generic class inheriting from JavaList

2011-12-20 Thread caruso
This is the true Error you dont implement all abstract methods in Your Splash Screen Activity. I had the same issue in Listadapters and hope this helps you. [E:\Work\VLM\source\MobileBullet\Droid.Container\Droid.Container.csproj] SplashScreenActivity.java(27,5): javac error : method does not

[mono-android] Failure to package/build with generic class inheriting from JavaList

2011-12-20 Thread Felix Collins
Hi, I've got a class that inherits from JavaList. It was building ok in the last version of mono for android but now with mono for android 4 it doesn't work. My class declaration is... public partial class NotifyingList : Android.Runtime.JavaList Any ideas or workarounds? Is this the same