Status Update
Comments
vi...@google.com <vi...@google.com>
ar...@gmail.com <ar...@gmail.com> #2
ne...@gmail.com <ne...@gmail.com>
ec...@gmail.com <ec...@gmail.com> #3
it ! I'll make sure I thank her later,thanks for the info.if there anything
I can help this group within here if I can help,keep me in mind !
E.C.
C.h.e.s.
ecastillo041979@gmail.com
On Wed, May 26, 2021, 6:44 AM <buganizer-system@google.com> wrote:
ar...@gmail.com <ar...@gmail.com> #4
dt...@google.com <dt...@google.com>
ja...@gmail.com <ja...@gmail.com> #6
jan
qa...@gmail.com <qa...@gmail.com> #7
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:239)
at android.content.res.MiuiResourcesImpl.getValue(MiuiResourcesImpl.java:96)
at android.content.res.Resources.getInteger(Resources.java:1209)
at org.chromium.ui.base.DeviceFormFactor.isTablet(DeviceFormFactor.java:2)
at mo.a(mo.java:2)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(BrowserStartupControllerImpl.java:8)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(BrowserStartupControllerImpl.java:5)
at c7.run(c7.java:23)
at org.chromium.base.ThreadUtils.f(ThreadUtils.java:2)
at as0.i(as0.java:31)
at Zr0.run(Zr0.java:2)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:236)
at android.app.ActivityThread.main(ActivityThread.java:7861)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:600)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:967)
qa...@gmail.com <qa...@gmail.com> #8
al...@gmail.com <al...@gmail.com> #9
😂😂😂😂 y'all keep sneaky around ☺️ just hit me up call or email in tell me what you want to know in you could be out in a drop top convertible enjoying the pretty day loves btw it looks like hacking pictures and it does have fun beside it kind of gives it away.
al...@gmail.com <al...@gmail.com> #10
Updated photo for whoever that asked for one
ar...@gmail.com <ar...@gmail.com> #11
ar...@gmail.com <ar...@gmail.com> #12
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:285)
at android.content.res.Resources.getInteger(Resources.java:1297)
at org.chromium.ui.base.DeviceFormFactor.isTablet(DeviceFormFactor.java:2)
at Bp.a(Bp.java:2)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(BrowserStartupControllerImpl.java:8)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(BrowserStartupControllerImpl.java:5)
at R7.run(R7.java:23)
at org.chromium.base.ThreadUtils.f(ThreadUtils.java:2)
at av0.i(av0.java:35)
at Zu0.run(Zu0.java:2)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:246)
at android.app.ActivityThread.main(ActivityThread.java:8512)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:602)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1130)
to...@google.com <to...@google.com> #13
If you're using Resources.updateConfiguration, or creating instances or subclasses of Resources yourself, or wrapping Contexts in complex ways, this is likely to be the cause. For some use cases you can use Context.createConfigurationContext to override configuration parameters for a given context - this won't cause issues with WebView. There's a wide range of different things apps might be doing here unfortunately, so it's very difficult to offer specific advice.
ar...@gmail.com <ar...@gmail.com> #14
I am not use any other ways for wrap Resources or Context.
override fun attachBaseContext(base: Context) {
val overrideConfig = Configuration()
overrideConfig.setLocale(currentLocale)
updateSystemDefaultLocale(currentLocale)
applyOverrideConfiguration(overrideConfig)
super.attachBaseContext(base.createConfigurationContext(overrideConfig))
}
ar...@gmail.com <ar...@gmail.com> #15
ar...@gmail.com <ar...@gmail.com> #16
to...@google.com <to...@google.com> #17
For the vast majority of apps WebView is the only thing that dynamically changes the AssetManager configuration for your app, since the APIs to do so aren't public, so it's usually going to be the case that this interaction with WebView is the only problem you will see and resources will otherwise work. :(
Unless you have a way to reliably reproduce this, which I presume you don't if it's just being reported in crashlytics, then there's not really anything we can do here. We have investigated this in detail several times before and when we've been able to determine the cause it has always been an unsupported manipulation of Resources/Context in the app's code/libraries.
Here's some other things I would try to check that have sometimes been useful pointers before:
- What Context object are you passing to WebView's constructor? Is it your Activity, or something else?
- Does that context return the same object for getAssets() and getResources().getAssets()?
- What does getApplicationContext() return on that context object? Is it your Application object, or something else?
- What do you call in Application.attachBaseContext() if anything? Do any of the things you call operate on the Context at all, even if they aren't wrapping it?
From the graphs you attached it looks like this is happening primarily on Android 11 devices from Xiaomi - is that a reflection of your app's userbase, or is that unusual? Do other unrelated crashes also have that kind of distribution, or not?
ar...@gmail.com <ar...@gmail.com> #18
I don't wrap Contexct and do not override Application.attachBaseContext()
I start application by launching activity by PendingIntent from Widget (RemoteViews#setOnClickPendingIntent)
to...@google.com <to...@google.com> #19
ar...@gmail.com <ar...@gmail.com> #20
Crash affected many vendors and Google too
ar...@gmail.com <ar...@gmail.com> #21
java.lang.Object.wait (Object.java)
java.lang.Object.wait (Object.java:568)
Zu0.b (Zu0.java:22)
Zu0.g (Zu0.java:3)
com.android.webview.chromium.WebViewChromiumFactoryProvider.getStatics (WebViewChromiumFactoryProvider.java:4)
android.webkit.WebSettings.getDefaultUserAgent (WebSettings.java:1313)
...
ar...@gmail.com <ar...@gmail.com> #22
android.content.res.Resources.getInteger (Resources.java:1130)
org.chromium.ui.base.DeviceFormFactor.isTablet (DeviceFormFactor.java:2)
Bp.a (Bp.java:2)
org.chromium.content.browser.BrowserStartupControllerImpl.e (BrowserStartupControllerImpl.java:8)
org.chromium.content.browser.BrowserStartupControllerImpl.g (BrowserStartupControllerImpl.java:5)
R7.run (R7.java:23)
org.chromium.base.ThreadUtils.f (ThreadUtils.java:2)
Zu0.i (Zu0.java:35)
Yu0.run (Yu0.java:2)
android.os.Handler.handleCallback (Handler.java:883)
com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1075)
ar...@gmail.com <ar...@gmail.com> #23
ar...@gmail.com <ar...@gmail.com> #24
- What Context object are you passing to WebView's constructor? Is it your Activity, or something else?
I don't create WebView in this case. I am only use WebSettings.getDefaultUserAgent(Application). I start application by launching activity by PendingIntent from Widget (RemoteViews#setOnClickPendingIntent)
- Does that context return the same object for getAssets() and getResources().getAssets()?
Yeas, the same.
getAssets() -> android.content.res.AssetManager@c92dd2c
getResources().getAssets() -> android.content.res.AssetManager@c92dd2c
- What does getApplicationContext() return on that context object? Is it your Application object, or something else?
Yes, is Application Application is com.tradingview.tradingviewapp.App@52ac2c8 Application.getApplicationContext() com.tradingview.tradingviewapp.App@52ac2c8
- What do you call in Application.attachBaseContext() if anything? Do any of the things you call operate on the Context at all, even if they aren't wrapping it?
I don't wrap Contexct and do not override Application.attachBaseContext()
as...@tradingview.com <as...@tradingview.com> #25
ar...@gmail.com <ar...@gmail.com> #26
Perhaps ideas what I can additionally log
ar...@gmail.com <ar...@gmail.com> #27
ContextUtils.getApplicationContext() used in DeviceFormFactor#isTablet should return my own application context ?
How resources from WebView Implementation can be available from resources from my application context resources ?
ar...@gmail.com <ar...@gmail.com> #28
Maybe I can check resource is existing ?
Something like this: resources.getIdentifier("min_screen_width_bucket", "integer", "com.android.chrome")
Which package should I use instead of "com.android.chrome" ?
to...@google.com <to...@google.com> #29
This does sound like your app is not obviously doing anything that could cause this problem. Unfortunately we don't necessarily know all the potential causes here. :(
To answer your question, yes, in WebView, ContextUtils.getApplicationContext() in the Chromium code will return a context that refers to your application context. It's not actually the same object (we wrap it on our side) but it passes getResources/getAssets/getTheme calls straight to your app context. The way this works is that the WebView implementation resources are dynamically added to your application's context when you first load WebView into your app's process. When apps are doing complex things with contexts and resources then it's possible for this loading code to add WebView's resources to the "wrong" context, or for something to subsequently drop WebView's resources so that future resources lookups fail. This all works reliably under the assumed "normal" conditions but the Android ecosystem is huge and many things are not, in fact, normal, and the ways that both apps and Android itself manipulate resources have grown more and more complex over time.
I don't think there is anything useful you can do by checking if the resource exists. WebView always accesses this particular resource during startup, so if it doesn't exist it will crash and if it does exist then it won't; checking for it won't tell you anything additional. The package name for getIdentifier would be whatever WebView.getCurrentWebViewPackage.packageName returns, though, and would be expected to return a resource ID that has a top byte between 0x02 and 0x7e (additional resource packages loaded are dynamically allocated ids starting from 2, but how many other packages are loaded varies from one device to another so the expected ID for webview might be 2, 3, or a higher number).
I'm pretty much out of ideas for what might be causing this for your app in particular. We're revisiting this general problem with the framework team to see if there are more things we can to do here.
lu...@gmail.com <lu...@gmail.com> #30
lu...@gmail.com <lu...@gmail.com> #31
android.content.res.Resources$NotFoundException: Resource ID #0x20c0016
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:240)
at android.content.res.Resources.getInteger(Resources.java:1275)
at org.chromium.ui.base.DeviceFormFactor.isTablet(chromium-TrichromeWebViewGoogle.apk-stable-457708233:2)
at gr.a(chromium-TrichromeWebViewGoogle.apk-stable-457708233:2)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(chromium-TrichromeWebViewGoogle.apk-stable-457708233:8)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(chromium-TrichromeWebViewGoogle.apk-stable-457708233:5)
at x8.run(chromium-TrichromeWebViewGoogle.apk-stable-457708233:23)
at org.chromium.base.ThreadUtils.f(chromium-TrichromeWebViewGoogle.apk-stable-457708233:2)
at jz0.h(chromium-TrichromeWebViewGoogle.apk-stable-457708233:41)
at iz0.run(chromium-TrichromeWebViewGoogle.apk-stable-457708233:2)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loopOnce(Looper.java:226)
at android.os.Looper.loop(Looper.java:313)
at android.app.ActivityThread.main(ActivityThread.java:8572)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:563)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1133)
and the device
qa...@gmail.com <qa...@gmail.com> #32
A lot of crashes on android 12
to...@google.com <to...@google.com> #33
lc...@gmail.com <lc...@gmail.com> #34
My app is also encountering this issue, now that Galaxy S21 family of devices have their Android 12 update rolling out. We have 99% of the crashes on Android 12 and 99% on Samsung devices.
[Deleted User] <[Deleted User]> #35
Also, for us, all of the devices mentioned are Samsung, and the OS is version 12 on all of them.
Fatal Exception: android.content.res.Resources$NotFoundException: Resource ID #0x20c0025
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:240)
at android.content.res.Resources.getInteger(Resources.java:1275)
at org.chromium.ui.base.DeviceFormFactor.isTablet(:8)
at cs.a(:4)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(:25)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(:26)
at E8.run(:127)
at org.chromium.base.ThreadUtils.f(:6)
at EB0.g(:209)
at DB0.run(:7)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loopOnce(Looper.java:226)
at android.os.Looper.loop(Looper.java:313)
at android.app.ActivityThread.main(ActivityThread.java:8582)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:563)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1133)
hu...@oppo.corp-partner.google.com <hu...@oppo.corp-partner.google.com> #36
Process: com.google.android.googlequicksearchbox:search
PID: 5602
UID: 10112
Flags: 0xa8dbbe45
Package: com.google.android.googlequicksearchbox v301183160 (13.2.19.23.arm64)
PID: 5602
Foreground: Yes
Process-Runtime: 8589733
Build: OPPO/CPH2307/OP52D5L1:12/RKQ1.211119.001/S.202206140132:user/release-keys
Loading-Progress: 1.0
android.content.res.Resources$NotFoundException: Resource ID #0x20c0025
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:250)
at android.content.res.Resources.getInteger(Resources.java:1213)
at org.chromium.ui.base.DeviceFormFactor.isTablet(Unknown Source:8)
at Ir.a(Unknown Source:4)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(Unknown Source:25)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(Unknown Source:32)
at s8.run(Unknown Source:124)
at org.chromium.base.ThreadUtils.f(Unknown Source:6)
at GB0.d(Unknown Source:206)
at FB0.run(Unknown Source:7)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loopOnce(Looper.java:233)
at android.os.Looper.loop(Looper.java:344)
at android.app.ActivityThread.main(ActivityThread.java:8210)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:584)
23...@gmail.com <23...@gmail.com> #37
al...@google.com <al...@google.com> #38
See
- The underlying issue with resource management in the Android framework is fixed in Android 15.
- WebView 134 is currently rolling out to users (it's the current stable version) and includes a workaround that should prevent this crash from occurring on devices running Android 14 and earlier, but will cause WebView's Android UI elements (dialog boxes and a few other small things, not the web content itself) to use the device's default theme instead of the parent activity's theme.
Description
Resource ID #0x30c0016
Crashes at Fatal Exception: android.content.res.Resources$NotFoundException: Resource ID #0x30c0016
at android.content.res.ResourcesImpl.getValue(ResourcesImpl.java:237)
at android.content.res.Resources.getInteger(Resources.java:1115)
at org.chromium.ui.base.DeviceFormFactor.isTablet(DeviceFormFactor.java:2)
at mo.a(mo.java:2)
at org.chromium.content.browser.BrowserStartupControllerImpl.e(BrowserStartupControllerImpl.java:8)
at org.chromium.content.browser.BrowserStartupControllerImpl.g(BrowserStartupControllerImpl.java:5)
at c7.run(c7.java:23)
at org.chromium.base.ThreadUtils.f(ThreadUtils.java:2)
at as0.i(as0.java:31)
at Zr0.run(Zr0.java:2)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7615)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:964)
Many crashes in Crashlitics since April 30