persistence icon indicating copy to clipboard operation
persistence copied to clipboard

Android persistence library

Results 9 persistence issues
Sort by recently updated
recently updated
newest added

Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

Looks like you're not using any error-checking in your Java build. This pull requests adds a static analysis tool, [Error Prone](http://errorprone.info), created by Google to find common errors in Java...

I am getting this when I am using `data classes` ``` data class Task(val id: Long, val taskConsecutive: String, val activityName: String, val siteName: String, val taskDescription: String) ``` It...

Created a helper method to retrieve classes added to database schema, useful for operations like database truncate.

Hi I have exist database (e.g. mydb.db whth many table and records). How to use this database in my android project. (I use Eclipse IDE)

I have this model: private long userId; private long recipeId; private int Score; private int Favorites; private int Followers; I want that userId and recipeId be my primary key for...

Everything was working fine before i started using Proguard..I am getting exception- Class class mz.peoplecloudlabs.apps.a.b.g does not have a primary key How can i assign primary key to object class...

i am having issues using Contraints.If i don't use contraints data loads perfectly.But if i try running following query- ``` Constraint constraint = new Constraint().orderBy("noOfSeen"); List cached = adapter.findAll(database,constraint); ```...