From e2c477538f8988ea16432b497588eff7b50059c9 Mon Sep 17 00:00:00 2001 From: Ashley Mensah Date: Thu, 29 Jan 2026 18:26:54 +0100 Subject: [PATCH] The .support files were missed when updating the module path from golang.org/x/mobile to github.com/netbirdio/gomobile-tvos-fork in commit a682d4b. This caused a module path conflict error when gobind-netbird tried to resolve the bind packages. --- bind/java/seq_android.go.support | 2 +- bind/objc/seq_darwin.go.support | 2 +- bind/seq.go.support | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bind/java/seq_android.go.support b/bind/java/seq_android.go.support index a832292..1c6761b 100644 --- a/bind/java/seq_android.go.support +++ b/bind/java/seq_android.go.support @@ -18,7 +18,7 @@ import "C" import ( "unsafe" - "golang.org/x/mobile/bind/seq" + "github.com/netbirdio/gomobile-tvos-fork/bind/seq" ) // DestroyRef is called by Java to inform Go it is done with a reference. diff --git a/bind/objc/seq_darwin.go.support b/bind/objc/seq_darwin.go.support index 0b4e5de..a6c1192 100644 --- a/bind/objc/seq_darwin.go.support +++ b/bind/objc/seq_darwin.go.support @@ -21,7 +21,7 @@ import "C" import ( "unsafe" - "golang.org/x/mobile/bind/seq" + "github.com/netbirdio/gomobile-tvos-fork/bind/seq" ) // DestroyRef is called by Objective-C to inform Go it is done with a reference. diff --git a/bind/seq.go.support b/bind/seq.go.support index 392ec09..9fcdf0f 100644 --- a/bind/seq.go.support +++ b/bind/seq.go.support @@ -20,8 +20,8 @@ import ( "os/signal" "syscall" - _ "golang.org/x/mobile/bind/java" - _seq "golang.org/x/mobile/bind/seq" + _ "github.com/netbirdio/gomobile-tvos-fork/bind/java" + _seq "github.com/netbirdio/gomobile-tvos-fork/bind/seq" ) func init() {