If possible, I would like to avoid using the Android Playstore and point the we browser to the External SD card for installation.
I tried call the following URL in the Chrome browser:
file:///sdcard/
Source: https://android.stackexchange.com/a/8386/203524
The browser returns the internal sd-memory and not the SD card. The target .apk file is in the root of the SD card.
I've also tried:
file:///external_sd/yourApp.apk
file:///sdcard/external_sd/yourApp.apk
source: https://android.stackexchange.com/a/8356/203524
Is it possible to a install the .apk from the SD card through the web browser?
Update:
I uploaded the .apk to Google Drive, downloaded, but when I click the file, "Can't open file is returned".
install from unknown sources
permission to the OEM browser, you may also need to enable "debug mode" to allow local read/write access from the browser (I've seen some browsers that take this in the form of a line of .js directly inputted through the omnibox). It might make better sense to use a file manager (such as, e.g., X-plore) – Arctiic Feb 26 '24 at 05:56file:///sdcard/
points to the internal storage is a historic relic. In Android 2.x/sd-card
was referring to the sd-card, but the smartphone bot plenty of flash storage and a physical sd-card wasn't necessary anymore. Note that both linked questions are pretty old. At the time of writing Android 4 ICS was brand new. A lot has changed since that time. – Robert Feb 26 '24 at 08:11