I have a HTML file stored on the memory card of my Android phone. I can open it in my browser (Chrome) but cannot bookmark it -- the URL is content://com.google.android.blah.blah...
(I was expecting file://...
) and appears to expire after some time.
Howe can I get a permanent bookmark to a local file?
file:///storage/emulated/0/...
? – l3l_aze Jul 04 '22 at 08:44file://
protocol only works for certain directories on Android 10+, see Local files revisited: Opening local HTML files (file:///path/to/file) in Chrome on Android 10.x – Robert Jul 04 '22 at 09:28content://
. That means it's accessing a content provider. Is that from an app? – Andrew T. Jul 05 '22 at 11:24