gomobile java.lang.UnsatisfiedLinkError: No implementation found

[TOC]

错误显示

java.lang.UnsatisfiedLinkError: No implementation found
No implementation found for void go.avcl_client_usage.Avcl_client_usage._init() (tried Java_go_avcl_1client_1usage_Avcl_1client_1usage__1init and Java_go_avcl_1client_1usage_Avcl_1client_1usage__1init__)

分析

实际上 so 是挂载上去了,不过jni通讯的时候,出现包名对不上的问题,类似这个错误

https://github.com/golang/go/issues/17359

解决方法

把golang部分代码的包名下划线部分,去掉,使用全小写命名,重新bind就可以了

你可能感兴趣的:(gomobile java.lang.UnsatisfiedLinkError: No implementation found)