Obsolete
Status Update
Comments
sa...@google.com <sa...@google.com> #2
Information redacted by Android Beta Feedback.
pe...@tado.com <pe...@tado.com> #3
Now there is no finger print sensor icon on the lock screen
On Thu, Apr 20, 2023, 3:30 AM <buganizer-system@google.com> wrote:
On Thu, Apr 20, 2023, 3:30 AM <buganizer-system@google.com> wrote:
so...@gmail.com <so...@gmail.com> #4
Agreed. This is how I currently do it, but it isn't ideal because the service worker directory has changed locations at least once in recent years.
// A `String[]` must be used because the directory contains a space and `Runtime.exec` will not escape the string correctly otherwise.
Runtime.getRuntime().exec(new String[]{"rm", "-rf", getApplicationInfo().dataDir + "/app_webview/Default/Service Worker/"});
// A `String[]` must be used because the directory contains a space and `Runtime.exec` will not escape the string correctly otherwise.
Runtime.getRuntime().exec(new String[]{"rm", "-rf", getApplicationInfo().dataDir + "/app_webview/Default/Service Worker/"});
Description
`data/data/APP_ID/cache/org.chromium.android_webview`
but not those located at
`data/data/APP_ID/app_webview/Service Worker/CacheStorage`
`data/data/APP_ID/app_webview/Service Worker/Database`
`data/data/APP_ID/app_webview/Service Worker/ScriptCache`
Either `WebView.clearCache(true)` should delete these files or there should be another API for doing so.