Vicente Ferrer

Results 7 comments of Vicente Ferrer

@baizon is it possible to use this PR even if it's not merged? Like use a gomobile version that has this PR on it, what is the standard way of...

> Yes, it is possible. I am going to clone and apply the patch, then install. Apparently this repo is a mirror, what if you send the PR in the...

> Yes, it is a mirror. Ive made a PR to google. They are reviewing it. Awesome, thank you so much, meanwhile I used this for the patch: https://patch-diff.githubusercontent.com/raw/golang/mobile/pull/105.patch

@baizon after adding the PR and `go bind -golistflags=-mod=mod ...` I still get this: ``` gomobile: go mod tidy failed: exit status 1 go: downloading go1.24 (linux/amd64) go: download go1.24...

I made it work after doing this: ```sh go get golang.org/x/mobile/cmd/gomobile@${GOMOBILE_COMMIT} go mod edit -replace=golang.org/x/mobile=$(pwd)/.gomobile ``` Replacing the module by the repository that I patched before with your PR, then...