I m getting unsatisfied link error in native method
Logcat main exception
UnsatisfiedLinkError: Native method not found: rg.sqlite.database.sqlite.S
As opposed to the accepted answer consider inserting the call to the System.loadLibrary function only once, e.g. into the DbHelper.
public class MyDbHelper extends SQLiteOpenHelper { static { System.loadLibrary("sqliteX"); } }