https://www.xda-developers.com/install-adb-windows-macos-linux/#how-to-set-up-adb-on-your-computer
I found this gem while I was working on the old Android Tablets and Phones tonight., I hated the fact I had to install things by;
1.Copying the .apk games/apps to the Phone
2.Using the File Manager on Android I had to press on each apk file
3.Agree to each install.
4.Press OK after waiting for each item to install
Now I do it with the above tool in one line;
for clarity you can install one item with
You can also use the same trick to remove all the items;
First list all the installed items:
Then pick the packages to remove, leaving google and phone brand ones in place.
So now instead of it taking me AGES to add or remove items, it's WAY faster and automated - just like I like.
Quite handy as now I can build up automated packs that I can apply depending on the free space available on the devices and I don't have to manually do each one and take me ages.
I found this gem while I was working on the old Android Tablets and Phones tonight., I hated the fact I had to install things by;
1.Copying the .apk games/apps to the Phone
2.Using the File Manager on Android I had to press on each apk file
3.Agree to each install.
4.Press OK after waiting for each item to install
Now I do it with the above tool in one line;
Code:
for %%f in (H:\1-Other_Consoles\Android2025\Games\mini\*.apk) do adb install "%%f"
for clarity you can install one item with
Code:
adb install "X:\Path To Apk\NameOf.apk"
You can also use the same trick to remove all the items;
First list all the installed items:
Code:
adb shell cmd package list packages
Then pick the packages to remove, leaving google and phone brand ones in place.
Code:
adb uninstall com.magmic.skipbo
adb uninstall com.gamevil.zenonia4.global
adb uninstall com.devilgame.trolllevel
rem cn.wps.xiaomi.abroad.lite
adb uninstall com.apkinstaller.ApkInstaller
adb uninstall com.RoyalArcade.BombMan
adb uninstall com.logisk.orixohex
adb uninstall com.mobirix.MultiplyWar
adb uninstall com.secretexit.dismount
adb uninstall com.milliongames.roadrashrider
adb uninstall com.lima.doodlejump
adb uninstall com.zeptolab.ctrexperiments.google.paid
adb uninstall com.sega.streetsofrage2
So now instead of it taking me AGES to add or remove items, it's WAY faster and automated - just like I like.
Quite handy as now I can build up automated packs that I can apply depending on the free space available on the devices and I don't have to manually do each one and take me ages.
