This commit is contained in:
2026-08-16 13:41:43 -03:00
parent 7b8e7bfbd0
commit 96ea761b72
76 changed files with 1399 additions and 3847 deletions
+9
View File
@@ -0,0 +1,9 @@
@echo off
REM Double-clickable wrapper around build_apk.ps1.
REM Any arguments are forwarded, e.g. build_apk.cmd -BuildCore
setlocal
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0build_apk.ps1" %*
set RC=%ERRORLEVEL%
if not "%RC%"=="0" echo.& echo BUILD FAILED (exit %RC%)
if "%~1"=="" pause
exit /b %RC%