Luca Corbo

Results 44 comments of Luca Corbo

I imagine you're referring to build a windows release from a linux/unix host. If so, the challenge here is to have the tools needed to create a windows release running...

Currently Fyne CLI is using `signtool.exe` to sign the binary and `makeappx.exe` to create the app package. It [looks like](https://github.com/FiloSottile/age/blob/08f52cc1254240cfa600b490016c170c93e8cd38/.github/workflows/build.yml#L38-L42) we could use [osslsigncode](https://github.com/mtrojnar/osslsigncode) to sign the binary. So if...

I'm sorry but a fyne-cross requirement is to have a docker engine installed on your host. A possible solution to your use case is to use a docker image with...

It looks like a network connection issue with the proxy: ```dial tcp 172.217.24.17:443: connect: connection refused``` Setting the GOPROXY env var should fix: ```fyne-cross android -app-id cn.xfeng -env GOPROXY=```

it looks like related to user privileges. Could you please make sure you are running from a terminal with same privileges the docker daemon is running?

oh it seems we're almost there ... Do you mind to test with a minimal hello world app using the latest version fyne?

It is difficult to debug with these info. Could you please provide a minimal example that reproduces the problem? Additionally are you by any chance using a third party lib...

It was my understanding that the code provided [above](https://github.com/fyne-io/fyne-cross/issues/53#issuecomment-879727116) was working correctly, hence my question. @xfengw could you please confirm and in case share the code along with the steps...

@unquabain did you had a chance to test the steps suggested by @Jacalz ?

It looks like there are some issues with your docker network. Probably you'll have the same error using a different image like: `docker run alpine ping proxy.golang.org` If restarting the...