net.sqlcipher.database.SQLiteException: not an error: net.sqlcipher.database.SQLiteException: not an error: sqlite sqlite

net.sqlcipher.database.SQLiteException: not an error:


Verify that you have included the icudt46l.zip file within the assets directory as this is required for SQLCipher for Android to operate.


I got my solution :-

i just add

else if(type == XmlPullParser.TEXT) {    Log.d(Tag, "Have text = "+xpp.getText());    if(xpp.isWhitespace())    {    }    else    {    String strquery = xpp.getText();    db.execSQL(strquery);    }}

I am checking if white space after ENDTAG then do nothing and go to next.