ActiveAndroid
ActiveAndroid copied to clipboard
Active record style SQLite persistence for Android
Hi, I have a lot of bug reports for my project for this issue. "java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String com.activeandroid.TableInfo.getIdName()' on a null object reference" A long time,...
@Column(name="coin",unique=true,onUniqueConflict=Column.ConflictAction.REPLACE) public String coin; @Column(name="address") public String address; how to change foreign key constraints from 'coin' to 'address'
Sometimes, our projects need downgraded。Why not support this scene
Hello community, ActiveAndroid is now deprecated. I'm grateful for everyone's contributions and support over the years, however I believe that there are many better alternatives. [Ollie](https://github.com/pardom-zz/Ollie) was an attempt to...
Apps version Oreo crashed using ActiveAndroid, added try catch in notify changes to solved.
I got this report from google play. Galaxy Tab4 10.1 running 4.4. This is all the information I have, but it appears that ActiveAndroid is exploding internally during initialisation when...
``` java java.lang.IncompatibleClassChangeError: org.apache.http.params.SyncBasicHttpParams at dalvik.system.DexFile.defineClassNative(Native Method) at dalvik.system.DexFile.defineClass(DexFile.java:226) at dalvik.system.DexFile.loadClassBinaryName(DexFile.java:219) at dalvik.system.DexPathList.findClass(DexPathList.java:321) at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:54) at java.lang.ClassLoader.loadClass(ClassLoader.java:511) at java.lang.ClassLoader.loadClass(ClassLoader.java:469) at java.lang.Class.classForName(Native Method) at java.lang.Class.forName(Class.java:308) at com.activeandroid.ModelInfo.scanForModelClasses(ModelInfo.java:187) at com.activeandroid.ModelInfo.scanForModel(ModelInfo.java:152) at com.activeandroid.ModelInfo.(ModelInfo.java:63)...
The following throws an error of "CursorWindow - Failed to read row 0, column -1 from a CursorWindow which has 1 rows, 1 columns." ``` java List stuffs = new...
In doc it says db tables is create and migrate by execute the sql scripts in assets directory. In fact in code the db table is create by the utilize...