3

我无法从运行在 android 上的 Go fyne 应用程序发出 http 请求,下面是一个显示问题的简单示例

package main

import (

     "io/ioutil"
     "net/http"
     "log"
 
    "fyne.io/fyne"
    "fyne.io/fyne/app"
    "fyne.io/fyne/widget"
 
)


func main() {

    app := app.New()
    w := app.NewWindow("Android http issue")
    w.SetContent(widget.NewVBox(
        widget.NewLabel("Run test"),
        widget.NewButton("Connect", func() {
             go func() {
                HttpGetData(w)
             }()
        
        }),
    ))
    w.ShowAndRun()
} 
 

func HttpGetData( win fyne.Window) {
    resp, err := http.Get("http://date.jsontest.com/" )
    if err != nil {
        log.Println("%v", err)
    }
    defer resp.Body.Close()
    bodyBytes, _ := ioutil.ReadAll(resp.Body)
    StartScreen(win,  string(bodyBytes))

}

func StartScreen(win fyne.Window, data string) {
    l := widget.NewLabel("data" +data)
    win.SetContent(l)

}

go run -tags mobile . -t
我可以在第一个屏幕上运行 linux 上的代码
在 linux 上运行的入口屏幕

然后我可以触发事件以向远程服务器发出 http get 请求并在 gui 中查看 http 响应
在此处输入图像描述

正如我们所看到的,一切都可以go run -tags mobile . -t 在 linux 上运行

fyne package -os android -appID basic.client -icon ico.png
现在我使用 fyne install 和 adb打包为 apk adb install <path to apk>/basicExample.apk

当我在 android 中运行应用程序时,我会进入第一个屏幕,然后像以前一样触发事件。
http请求永远不会被触发,我只在logcat中得到一个密码错误

F/libc ( 4711): Fatal signal 6 (SIGABRT), code -6 in tid 4739 (basic.client)
E/InputDispatcher( 535): channel '344d7ddf basic.client/org.golang.app.GoNativeActivity (server)' ~ Channel is unrecoverably broken and will be disposed!

任何帮助将不胜感激

AndroidManifest

<?xml version="1.0" encoding="utf-8"?>
<manifest
        xmlns:android="http://schemas.android.com/apk/res/android"
        package="basic.client"
        android:versionCode="1"
        android:versionName="1.0">

        <application android:label="Client" android:debuggable="true">

        <uses-permission android:name="android.permission.INTERNET" />

        <activity android:name="org.golang.app.GoNativeActivity"
                android:label="Client"
                android:configChanges="orientation|keyboardHidden">
                <meta-data android:name="android.app.lib_name" android:value="client" />
                <intent-filter>
                        <action android:name="android.intent.action.MAIN" />
                        <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
        </activity>
        </application>
</manifest>

来自评论的更新
android 版本 28
golang 版本 go1.14.4 linux/amd64
fyne 版本 fyne.io/fyne v1.3.0

更新 2
在清单中的应用程序标记中添加了以下属性
android:usesCleartextTraffic="true" tools:targetApi="28"

fyne package导致命令出现以下错误
failed to find table ref by "attr/usesCleartextTraffic"

我在命令中添加了一条打印语句来fyne package记录构建环境变量,这就是它们的样子

GOOS=android   
GOARCH=arm   
CC={path to}/ndk/21.2.6472646/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi16-clang   
CXX={path to}/ndk/21.2.6472646/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi16-clang++   
CGO_ENABLED=1   
GOARM=7  
4

1 回答 1

1

在最新版本的 Fyne 中,我们修复了打包程序和 Android 清单的一些问题。默认情况下不启用 Internet 权限,但如果您在存储权限定义下添加它,它现在应该可以工作。

我们正在开发可以跨平台工作的更好的权限请求代码,应该会在今年晚些时候发布。

于 2021-03-16T23:23:02.403 回答