You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
513 B

@echo off
title MCSLMS Android - 移动端
cd /d "%~dp0.."
echo ========================================
echo 智能图书管理系统 - Android 移动端
echo ========================================
echo.
echo 编译并安装到已连接的设备/模拟器...
echo.
call gradlew.bat :android:installDebug --console=plain
if %errorlevel%==0 (
echo.
echo ✓ 安装成功!请在设备上打开应用
) else (
echo.
echo ✗ 安装失败,请检查设备连接或使用 Android Studio
)
pause