我使用gomobile bind
生成了.arr
文件。
gomobile version
gomobile version +e154aff Wed Dec 2 14:48:43 2015 +0000 (android); androidSDK=D:\android\sdk\platforms\android-23
go version
go version go1.5.2 windows/amd64
Go代码包含func
访问网站的权限。
client := &http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
log.Fatal(err.Error())
}
resp, err := client.Do(req)
我将此.arr
添加到Android Studio
中的Android项目中,构建并安装apk到虚拟设备。
但该应用无法访问网络。
运行应用程序后,它出来了:
GoLog: Get www.google.com: unsupported protocol scheme ""
我必须错过一些东西,请帮帮我。
答案 0 :(得分:2)
它与gomobile
无关。网址www.google.com
应以http://
开头。