mirror of
https://github.com/dyhkwong/Exclave.git
synced 2026-09-06 07:39:55 +08:00
15 lines
273 B
Batchfile
15 lines
273 B
Batchfile
@echo off
|
|
|
|
set CGO_LDFLAGS=-Wl,-z,max-page-size=16384
|
|
|
|
gomobile bind -v -androidapi 21 -tags="with_clash" "github.com/exclavenetwork/libexclavecore"
|
|
if errorlevel 1 (
|
|
exit /b 1
|
|
)
|
|
|
|
set "proj=..\..\app\libs"
|
|
|
|
if exist "%proj%" (
|
|
copy /Y libexclavecore.aar "%proj%"
|
|
)
|