mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-04-21 11:06:25 +02:00
cdc5836785
Go 1.26.0 runtime uses futex_time64 (syscall 422) which is blocked by seccomp on Android 10 and older ARM32 devices, causing immediate SIGSYS (signal 31) crash on app launch. Downgraded: - toolchain: go1.26.0 -> go1.25.7 - golang.org/x/sys: v0.41.0 -> v0.40.0 - golang.org/x/crypto: v0.48.0 -> v0.47.0 - golang.org/x/mod: v0.33.0 -> v0.32.0 - golang.org/x/text: v0.34.0 -> v0.33.0 - golang.org/x/tools: v0.42.0 -> v0.41.0
30 lines
940 B
Modula-2
30 lines
940 B
Modula-2
module github.com/zarz/spotiflac_android/go_backend
|
|
|
|
go 1.25.0
|
|
|
|
toolchain go1.25.7
|
|
|
|
require (
|
|
github.com/dop251/goja v0.0.0-20260216154549-8b74ce4618c5
|
|
github.com/go-flac/flacpicture/v2 v2.0.2
|
|
github.com/go-flac/flacvorbis/v2 v2.0.2
|
|
github.com/go-flac/go-flac/v2 v2.0.4
|
|
github.com/refraction-networking/utls v1.8.2
|
|
golang.org/x/mobile v0.0.0-20260211191516-dcd2a3258864
|
|
golang.org/x/net v0.50.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.6 // indirect
|
|
github.com/dlclark/regexp2 v1.11.4 // indirect
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
|
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
|
|
github.com/klauspost/compress v1.17.4 // indirect
|
|
golang.org/x/crypto v0.48.0 // indirect
|
|
golang.org/x/mod v0.33.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
golang.org/x/tools v0.42.0 // indirect
|
|
)
|