From 0afe9dca0c1f82b46ecab201bd959eef03e3cddd Mon Sep 17 00:00:00 2001 From: zarazaex69 Date: Mon, 13 Apr 2026 12:46:01 +0300 Subject: [PATCH] fix(ci): pass -checklinkname=0 to gomobile bind for Go 1.25 compatibility --- magefile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/magefile.go b/magefile.go index eb6127e..22ccbef 100644 --- a/magefile.go +++ b/magefile.go @@ -115,6 +115,7 @@ func Mobile() error { return sh.RunV("gomobile", "bind", "-target=android", "-androidapi", "21", + "-ldflags", "-s -w -checklinkname=0", "-o", filepath.Join(buildDir, "olcrtc.aar"), "./mobile", )