[android-developers] Re: ContentProvider InstantiationException

2012-04-01 Thread Michael
Has there been any news on this error? I am having the same thing happen to me and I have been unable to find out what could be causing it. Thank you. On Friday, March 6, 2009 10:39:40 AM UTC-8, droozen wrote: Provider class public. Check: public class SavingsDbAdapter extends

[android-developers] Re: ContentProvider InstantiationException

2009-03-06 Thread Dianne Hackborn
When a process is started, all content providers that run in it are instantiated. Apparently your new content provider can't be instantiated. On Fri, Mar 6, 2009 at 5:51 AM, droozen droozenr...@gmail.com wrote: So, I was trying to create my own ContentProvider. I want a recurring

[android-developers] Re: ContentProvider InstantiationException

2009-03-06 Thread droozen
Hence the InstantiationException. I get that. But WHY can't it be instantiated or, the real kicker, how can I get it to work? From what I can tell, and from what I keep reading in everything I can find on ContentProviders, everything looks fine with my setup. I don't even know where to look to

[android-developers] Re: ContentProvider InstantiationException

2009-03-06 Thread Marco Nelissen
Did you forget to mark your provider class as public? On Fri, Mar 6, 2009 at 10:25 AM, droozen droozenr...@gmail.com wrote: Hence the InstantiationException. I get that. But WHY can't it be instantiated or, the real kicker, how can I get it to work? From what I can tell, and from what I

[android-developers] Re: ContentProvider InstantiationException

2009-03-06 Thread droozen
Provider class public. Check: public class SavingsDbAdapter extends ContentProvider :) And I implement all the methods for a ContentProvider that Eclipse asked me to. I do have some static code that runs first, as the NotesList example does at the bottom of the class. That code seems to run fine