批量安装:
SET dir=%~dp0
echo dir is: %dir%
cd /d %dir%
for /R %dir% %%i in (*.apk) do adb install %%i
批量卸载:
SET dir=%~dp0
echo dir is: %dir%
cd /d %dir%
for /R %dir% %%i in (*.apk) do adb uninstall %%~ni
时间: 2024-10-29 20:01:18
批量安装:
SET dir=%~dp0
echo dir is: %dir%
cd /d %dir%
for /R %dir% %%i in (*.apk) do adb install %%i
批量卸载:
SET dir=%~dp0
echo dir is: %dir%
cd /d %dir%
for /R %dir% %%i in (*.apk) do adb uninstall %%~ni