xinli/xinli-App/打包正式版APK.bat
2025-12-02 15:12:55 +08:00

42 lines
934 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
echo ========================================
echo 打包正式版APKRelease版本
echo ========================================
echo.
echo [提示] 正式版APK会更小且经过优化
echo.
echo 开始构建Release版本...
echo.
call gradlew.bat assembleRelease
if %ERRORLEVEL% EQU 0 (
echo.
echo ========================================
echo ✓ 构建成功!
echo ========================================
echo.
echo Release APK位置
echo app\build\outputs\apk\release\app-release.apk
echo.
echo 正在查找APK文件...
dir /s /b app-release.apk
echo.
echo 可以将此APK安装到手机上测试或发布。
echo.
) else (
echo.
echo ========================================
echo ✗ 构建失败!
echo ========================================
echo.
echo 请检查错误信息
echo.
)
pause