A/libc:添加mircroblink许可证文件时,tid 27503中的致命信号11(SIGSEGV),代码1,错误



所以我有一个包含微链接库的项目,我需要在MainActivity中声明它,这里它看起来像

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);

/** Set the License from the file*/
MicroblinkSDK.setLicenseFile("this is my license file", this);

}

然后我运行程序并得到错误致命信号,但当我从microlink中删除声明代码时,它可以正常工作。我试着搜索解决方案,它说要添加这个

android:hardwareAccelerated="false"

在清单文件中,但失败,并且错误不会更改。有人帮忙会很好的!

这是调试日志

I/art: Do partial code cache collection, code=26KB, data=29KB
I/art: After code cache collection, code=25KB, data=29KB
Increasing code cache capacity to 128KB
I/art: Compiler allocated 6MB to compile void android.widget.TextView.<init>(android.content.Context, android.util.AttributeSet, int, int)
I/art: Do partial code cache collection, code=61KB, data=53KB
After code cache collection, code=61KB, data=53KB
Increasing code cache capacity to 256KB
D/line:110: --- Implementation #2 with key 0x52
D/line:37: Unlocking BlinkID native library version 4.7.0
A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x7d400300 in tid 25983 (ana.wandaflpdev)
Disconnected from the target VM, address: 'localhost:50648', transport: 'socket'

首先,从日志中,我可以看到您使用的是版本4.7,这是2019年2月发布的BlinkID的旧版本。我建议尝试实现最新版本(5.9(,您可以在此处下载:https://github.com/BlinkID/blinkid-android/releases/tag/v5.9.0

此外,关于许可证密钥方法,建议以扩展Android Application class并在onCreate callback中设置许可证的方式来实现它,如下所示:

public class MyApplication extends Application {
@Override
public void onCreate() {
MicroblinkSDK.setLicenseFile("path/to/license/file/within/assets/dir", this);
}
}

更多详细信息请点击此处:https://github.com/BlinkID/blinkid-android#performing-您的第一次扫描

相关内容

  • 没有找到相关文章

最新更新