UnsatisfiedLinkError in native method

前端 未结 3 731
[愿得一人]
[愿得一人] 2020-12-16 06:58

I m getting unsatisfied link error in native method

Logcat main exception

UnsatisfiedLinkError: Native method not found: rg.sqlite.database.sqlite.S         


        
3条回答
  •  青春惊慌失措
    2020-12-16 07:27

    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");
       }
    }
    

提交回复
热议问题