Add workaround for golang/go#68760

This commit is contained in:
世界 2024-12-10 09:58:55 +08:00
parent 3032317918
commit f0b6818b4c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 79 additions and 16 deletions

View file

@ -80,9 +80,17 @@ func buildAndroid() {
log.Fatal("java version should be openjdk 17")
}
var bindTarget string
if debugEnabled {
bindTarget = "android/arm64"
} else {
bindTarget = "android"
}
args := []string{
"bind",
"-v",
"-target", bindTarget,
"-androidapi", "21",
"-javapkg=io.nekohasekai",
"-libname=box",