gomobile命令错误“没有设置android NDK路径”

前端之家收集整理的这篇文章主要介绍了gomobile命令错误“没有设置android NDK路径”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Windows中使用Go版本1.7.5,当我尝试使用gomobile命令安装或绑定或构建时.它显示错误
“gomobile:没有设置 Android NDK路径.请通过安装Android SDK管理器或设置-ndk标志的ndk-bundle运行gomobile init.”
我已将NDK路径添加到系统变量$PATH,甚至手动安装了NDK,但仍然存在错误.
谢谢你的时间 !!

解决方法

你需要使用-ndk标志在gomobile init中设置NDK路径 – 如果你按照 these instructions,路径应该是〜/ Library / Android / sdk / ndk-bundle /:
gomobile init -ndk ~/Library/Android/sdk/ndk-bundle/

然后你可以编译APK:

gomobile build -target=android <PATH>

路径应该相对于$GOPATH / src.例如,如果您安装基本示例:

go get -d golang.org/x/mobile/example/basic

构建命令应该是:

gomobile build -target=android golang.org/x/mobile/example/basic
原文链接:https://www.f2er.com/android/317234.html

猜你在找的Android相关文章