美文网首页
使用 gomobile 为 iOS/Android 构建 SDK

使用 gomobile 为 iOS/Android 构建 SDK

作者: 舌尖上的大胖 | 来源:发表于2021-02-17 10:50 被阅读0次

    一、安装

    # 安装 gomobile
    $ go get golang.org/x/mobile/cmd/gomobile
    
    # 安装 gobind
    $ go get golang.org/x/mobile/cmd/gobind
    

    注意:

    安装过程受 $GOPATH 影响,主要有两点:

    1、$GOPATH 不是单一路径,可以指定多个路径,对于要编译的工程,也需要把工程目录加入 $GOPATH

    2、编译器在编译时,会根据 $GOPATH 中的目录逐个搜索

    3、如果需要,可以把安装的可执行工具目录加入 $PATH 以方便执行

    在安装 gomobile 的时候,会安装到 $GOPATH 的一个路径中。如果 $GOPATH 只指定了工程目录,那么 gomobile 会安装到工程目录。所以需要根据需要指定 $GOPATH

    二、编译

    $ gomobile bind -target ios/android 包名
    

    手机端集成后编译即可。

    相关命令及帮助:

    • gomobile bind 用于构建 SDK
    $ gomobile help bind
    
    • gomobile build 用于构建 App
    $ gomobile help build
    

    三、参考

    (完)

    相关文章

      网友评论

          本文标题:使用 gomobile 为 iOS/Android 构建 SDK

          本文链接:https://www.haomeiwen.com/subject/ynjixltx.html