Andrew Grosner

Results 30 comments of Andrew Grosner

also when zooming can it stay put, as in if you move to one spot of the image and zoom in, it resets to the top left of the image

ah I see. its probably because you dont have the `contentprovider-annotation` package added. it should be compileOnly dependency. For now add `implementation "com.github.agrosner.dbflow:contentprovider:${dbflow_version}"`

I need more information, did you add the content provider annotations package from dbflow to your projects dependencies?

Do you mind sharing your `build.gradle` file for your project (with any secrets/sensitive parts removed) to see how its configured. `java.lang.NoClassDefFoundError: com/grosner/kpoet/TypeNameExtensionsKt ` Looks like its not finding `kpoet` dependency

Thanks for the headsup. I believe it is something with jitpack. I will file an issue report with them. But yes you should move over to the `com.github.agrosner.` namespace for...

You have to stream the old table into a new table using a `Migration`. Please refer to https://www.sqlite.org/lang_altertable.html for supported alter table types. We do support Table-less models via `createWithDatabase...

What does the generated `_Table` modeladapter look like and the model?

its possible by retrieving the map of migrations from the `DBFlowDatabase` (5.0) via: ```kotlin database { db -> db.migrations.forEach { version, migrations -> migrations.forEach { migration -> // before migration...

I took some time away from the library as it was causing more stress than fun. Especially with life, I don't take money for this library, and needing some time...

did you figure it out? I would check the table in the database using the DB explorer in Android Studio. Its not clear to me where you set `points` is...