Android: Sugar ORM No Such Table Exception

后端 未结 21 1064
一生所求
一生所求 2020-12-05 06:42

I am getting the No Such table exception when i am Using Sugar ORM with GPU image Android Library. I am using Gradle and Android Studio. Once i remove GPU image

21条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 07:01

    Resolved

    I don't know but the SugarDb.onCreate is not called. So put this code in MainActivity.onCreate and the Sugar ORM will work

        SugarDb db = new SugarDb(this);
        db.onCreate(db.getDB());
    

提交回复
热议问题