3

我已经安装了 gomobile

/Users/GaryChan/go/bin/gomobile

我的项目是

/Users/GaryChan/go/src/abc.com/project

当我尝试运行构建 android SDK 时

/Users/GaryChan/go/src/abc.com/project/sdk

并运行:

export ANDROID_HOME=/Users/GaryChan/Library/Android/sdk/ndk-bundle/


gomobile bind -target=android  abc.com/project/sdk

我去安装去移动,但无济于事。当我在我的 Mac 终端执行 gomobile 时,cmd 总是提示 -bash: gomobile: command not found

然后我无法导出 SDK。我该怎么办 ?

https://godoc.org/golang.org/x/mobile/cmd/gomobile

更新 :

Go 版本是:go 版本 go1.11.1 darwin/amd64

4

1 回答 1

7

确保/Users/GaryChan/go/bin/在您的$PATH. 如果不是,请编辑您的 bash 配置文件以添加它。您的配置文件是您的主目录中名为.profile或的文件.bash_profile。它应该包含这样的一行:

export PATH="${PATH}:/Users/GaryChan/go/bin/"

进行此更改,然后关闭您的终端窗口并打开一个新窗口,您应该可以键入gomobile以启动它。

于 2018-11-11T04:41:32.740 回答