go是一种简洁高效的语言,go 1.4版本支持在android上运行
go get golang.org/x/mobile
go get golang.org/x/mobile/example
运行示例代码,路径为$GOPATH/src/golang.org/x/mobile/example/libhello
运行all.bash编译并打包安装
如果报错:
go build runtime: android/arm must be bootstrapped using make.bash
则说明没有编译arm版本的go,需要进到$GOROOT/src下面编译android/arm版本
#拣出一套交叉编译工具 $NDK_ROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$NDK_TOOL #编译android/arm的支持包 sudo CC_FOR_TARGET=$NDK_TOOL/ndk-toolchain/arm-linux-androideabi/bin/gcc CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 ./make.bash
然后再回到示例代码执行all.bash就可以成功编译出apk
有疑问加站长微信联系(非本文作者)