A simple command-line tool to automate the installation of multiple APK files on a connected Android device using ADB.
This lightweight utility is powered by a single .bat
script and is ideal for fast deployment, testing environments, or automation tasks.
- π Install all APKs from a selected folder
- β‘ No GUI required β pure batch execution
- π Can be looped or scripted for CI setups
- π§° Easy to set up on any Windows machine
This tool requires ADB (Android Debug Bridge) to be installed and accessible via your system PATH
.
-
Open Command Prompt
-
Run:
echo %USERPROFILE%\AppData\Local\Android\sdk\platform-tools
This will give you the path to
adb.exe
-
Open Start and search:
Edit environment variables for your account
-
Click
PATH
β Edit βNew
-
Paste the ADB path
-
Click OK on all dialogs
-
Restart any open terminals
- Place the batch file (
install_all.bat
) inside the folder containing your.apk
files - Double-click the file, or run it via Command Prompt:
install_all.bat
To simplify usage from any location:
set android_installer=C:\path\to\install_all.bat
%android_installer%
π MyAPKFolder/
βββ app-release.apk
βββ module-feature.apk
βββ install_all.bat β run this file!
All .apk
files in the folder will be installed one by one via ADB.
MIT License Β© Dean Aviv
This project is licensed under the MIT License, meaning you are free to use, modify, and distribute it.
Use at your own risk. No warranties are provided.
Developed as part of a tooling project for Android developers and testers.
Looking for a user-friendly interface? Check out the GUI version built with WPF.