Sugar ORM works perfectly on Android <5, but on Android 5> it crashes. I am using version 1.4
Please help me.
Error: android.database.sqlite.SQLiteE
If you already ran your app with sugar and then later you added a model that gives the 'no such table error', then you need to just update(increase) your database VERSION meta in your AndroidManifest.xml. This solves the problem most of the time when instant run is not the issue. Look at the issue HERE For more insight.
I was using version 1.3 and faced same problem. But I solved by using gradle version 1.5 and initializing SugarContext.
In gradle dependencies:
compile 'com.github.satyan:sugar:1.5'
In onCreate Method:
SugarContext.init(this);
please implement hack findById function on your onCreate application class like this
public class App extends SugarApp {
@Override
public void onCreate() {
super.onCreate();
Audio.findById(Audio.class, (long) 1);
}
}
Your audio table will be created
The message java.lang.NoSuchTable: means that someone tried to call a constructor without any parameters. Adding a default constructor should solve this problem:
public class User
{
public User() {
}
..
}
Disabling instant run worked for me.
And after you disable instant run, make sure you uninstall the app from the phone/emulator before running again.