NekoX/bin/libs/v2ray.sh

22 lines
600 B
Bash
Raw Normal View History

2021-01-16 17:25:30 +01:00
#!/bin/bash
2021-02-25 05:58:04 +01:00
// v4.34.0
V2RAY_CORE_VERSION="a6efb4d60b86789a68ed8ac8d52cfcec2d80229a"
2021-01-16 17:25:30 +01:00
source "bin/init/env.sh"
2021-02-18 03:32:07 +01:00
export GO111MOUDLE=on
export PATH="$PATH:$(go env GOPATH)/bin"
2021-01-16 17:25:30 +01:00
2021-02-18 03:32:07 +01:00
cd "$PROJECT/build"
[ -d "v2ray" ] || git clone https://github.com/2dust/AndroidLibV2rayLite v2ray
cd v2ray
git reset --hard && git clean -fdx
2021-02-25 05:58:04 +01:00
sed -i -e "s|go 1.14|go 1.16|g" go.mod
sed -i -e "s|core master|core $V2RAY_CORE_VERSION|g" go.mod
go mod download -x || exit 1
2021-02-23 22:47:48 +01:00
go get -v golang.org/x/mobile/cmd/...
gomobile init
2021-02-18 03:32:07 +01:00
gomobile bind -v -ldflags='-s -w' . || exit 1
2021-01-16 17:25:30 +01:00
2021-02-18 03:32:07 +01:00
/bin/cp -f libv2ray.aar "$PROJECT/TMessagesProj/libs"