12 lines
227 B
Bash
Executable File
12 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source "bin/init/env.sh"
|
|
export GO111MOUDLE=on
|
|
export GO386=softfloat
|
|
|
|
cd "$PROJECT/v2ray"
|
|
gomobile init
|
|
gomobile bind -v -ldflags='-s -w' . || exit 1
|
|
|
|
/bin/cp -f libv2ray.aar "$PROJECT/TMessagesProj/libs"
|