Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes
Since we are downloading around 400mb of data in form of "apk files" the internet bandwidth has become constraint for us.

To solve this we need to install the apks using usb drive. Is there a way to install app locally on the device?
by

1 Answer

0 votes

Yes, it is possible.

Specify the APK URL as file:///storage/emulated/0/your-app.apk (/storage/emulated/0 is the SD card path).

by (33.5k points)
how to installed from external
USB Storage
You need to know its path in Android OS. AFAIK, external storages are mounted in the /mnt directory. Open adb shell and run the "ls /mnt" command, it should show the path. See more details here: https://stackoverflow.com/questions/5694933/find-location-of-a-removable-sd-card/5695129 https://stackoverflow.com/questions/11291882/how-to-access-usb-path-in-android
...