Inexplicable UnsatisfiedLinkError on native library load

前端 未结 3 1947
-上瘾入骨i
-上瘾入骨i 2021-01-06 02:16

First and foremost, my application generally works. I have numerous clients on all four 32-bit CPU/ABIs, and they have no trouble running the app. The nativ

3条回答
  •  悲&欢浪女
    2021-01-06 03:08

    I had put System.loadLibrary("libMyLibrary") which returned null. I changed it to System.loadLibrary("MyLibrary") and it worked.

提交回复
热议问题