I would like to store some field of type ParentClass as json string into my database. I don\'t want to use Serializable interface and DataType.SERIALIZABLE cause it ties with fu
Don't register the persister adapter in the onCreate() method. This method only gets called when your database is first created. You should add this somewhere else, like your constructor or onOpen() method.