Install Android Apps in Windows 11 by Double Clicking. Make sure Platform-Tools which contains ADB is in PATH.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set "package=%1" | |
adb connect 127.0.0.1:58526 | |
adb install %package% | |
EXIT /B | |
pause |
this is good
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is good