Status Update
Comments
vk...@google.com <vk...@google.com> #2
Also crashes in R8 version 8.5.35, 8.6.17, 8.7.2-dev
pi...@gmail.com <pi...@gmail.com> #3
You cannot apply keep rules for classes synthesized by R8, but if you keep the implemented interfaces, the merging should not happen.
That said, checking the implementing class of a lambda might not be a good idea. The specification for java.lang.invoke.LambdaMetafactory
Capture may involve allocation of a new function object, or may return a suitable existing function object. The identity of a function object produced by capture is unpredictable, and therefore identity-sensitive operations (such as reference equality, object locking, and System.identityHashCode()) may produce different results in different implementations, or even upon different invocations in the same implementation.
If I understand this correctly the only guarantee is that the function object implements the interface(s) specified.
ka...@gmail.com <ka...@gmail.com> #4
The actual problem is that R8 deletes FunInterface1 and FunInterface2 classes, which are used for runtime di:
fun hello() {
val instance1 = FunInterface1 { println("Doing business") }
val instance2 = FunInterface2 { println("Starting the show") }
val map = mapOf(
FunInterface1::class.java to instance1,
FunInterface2::class.java to instance2,
)
check(map.size == 2) { "Map size is ${map.size}" }
}
So do I have to list all fun interfaces in my sdk using -keep? I might do that for ~100 of them that exist right now, but this won't save future developers from adding another fun interface and forgetting to list them in .pro file.
mi...@gmail.com <mi...@gmail.com> #5
Not sure what the use case is here. However, if you want the interfaces to stay as is you will have to have a -keep
rule for them. One option to handle this without adding a rule for each interface could be to annotate them and add a single rule for all interfaces annotated by that annotation.
mi...@gmail.com <mi...@gmail.com> #6
Our use case is to create a static in-memory Di object, to put and get instances from all over the multi-module application. It kinda looks like
class DiContainer(bindings: Map<Class<*>, SingletonBinding<*>>) {
private val bindings: Map<Class<*>, SingletonBinding<*>> = HashMap(bindings)
fun <T : Any> instance(typeSpec: Class<*>): T {
@Suppress("UNCHECKED_CAST")
val result: T = (bindings[typeSpec]?.lazy?.value) as? T ?: error("No binding for $typeSpec found.")
return result
}
}
class SingletonBinding<out T : Any>(private val singleton: () -> T) {
val lazy = lazy { singleton() }
}
class DiScope {
val bindings: MutableMap<Class<*>, SingletonBinding<*>> = HashMap()
fun addBinding(typeSpec: Class<*>, binding: SingletonBinding<*>) {
check(typeSpec !in bindings) { "$typeSpec already registered." }
bindings[typeSpec] = binding
}
}
open class DiHolder {
@Volatile
@PublishedApi
internal var instance: DiContainer? = null
protected fun build(init: DiScope.() -> Unit) {
check(instance == null) { "Di already initialized" }
instance = DiContainer(DiScope().apply(init).bindings)
}
inline fun <reified T : Any> instance(): T = instance(T::class.java)
fun <T : Any> instance(typeSpec: Class<*>): T = instance!!.instance(typeSpec)
}
object Di : DiHolder() {
operator fun invoke(init: DiScope.() -> Unit) = build(init)
}
Now, when we use this, for example:
fun hello() {
Di {
addBinding(FunInterface1::class.java, SingletonBinding { FunInterface1 { println("Doing business") } })
addBinding(FunInterface2::class.java, SingletonBinding { FunInterface2 { println("Doing business") } })
}
// In some other place in code, but in the same process
Di.instance<FunInterface1>().doBusiness()
Di.instance<FunInterface2>().startTheShow()
}
Now we can get an interface instance from anywhere in the app, because Di is singleton. However, when running release with R8 full mode, I get this exception:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.r8/com.example.r8.MainActivity}: java.lang.IllegalStateException: class com.example.r8.MainActivityKt$$ExternalSyntheticLambda2 already registered.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3782)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3922)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:103)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:139)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:96)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2443)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8176)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
Caused by: java.lang.IllegalStateException: class com.example.r8.MainActivityKt$$ExternalSyntheticLambda2 already registered.
at com.example.r8.DiScope.addBinding(Unknown Source:37)
at com.example.r8.MainActivity.onCreate(SourceFile:3)
at android.app.Activity.performCreate(Activity.java:8595)
at android.app.Activity.performCreate(Activity.java:8573)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1456)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3764)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3922)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:103)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:139)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:96)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2443)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8176)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
an...@gmail.com <an...@gmail.com> #7
I also tried koin, and somehow their code arrangement dodges the type check, and everything works.
Oh, I see now, by default their
// These are reduced InsertKoinIO/koin sources
class InstanceRegistry {
val instances = ConcurrentHashMap<String, SingleInstanceFactory<*>>()
fun saveMapping(mapping: String, factory: SingleInstanceFactory<*>) {
if (instances.containsKey(mapping)) {
throw Exception("Already existing definition for ${factory.beanDefinition} at $mapping")
}
instances[mapping] = factory
}
inline fun <reified T> instance(): T {
return instances[T::class.getFullName()]?.get() as T
}
}
class SingleInstanceFactory<T>(val beanDefinition: () -> T) {
private var value: T? = null
private fun getValue(): T = value ?: error("Single instance created couldn't return value")
fun get(): T {
synchronized(this) {
if (value == null) {
value = beanDefinition.invoke()
}
}
return getValue()
}
}
fun KClass<*>.getFullName(): String = this.java.name
/// --------------
fun helloKoin() {
val koin = InstanceRegistry()
val shouldR8CrashTheApp = true
if (shouldR8CrashTheApp) {
koin.saveMapping(FunInterface1::class.getFullName(), SingleInstanceFactory { FunInterface1 { println("Do business") } })
koin.saveMapping(FunInterface2::class.getFullName(), SingleInstanceFactory{ FunInterface2 { println("Start the show") } })
} else {
// because in runtime FunInterfaces are clamped into one class, only one saveMapping is called, and everything works
val mappings = hashMapOf<String, SingleInstanceFactory<*>>()
mappings[FunInterface1::class.getFullName()] = SingleInstanceFactory { FunInterface1 { println("Do business") } }
mappings[FunInterface2::class.getFullName()] = SingleInstanceFactory { FunInterface2 { println("Start the show") } }
mappings.forEach { (mapping, factory) ->
koin.saveMapping(mapping, factory)
}
}
koin.instance<FunInterface1>().doBusiness()
koin.instance<FunInterface2>().startTheShow()
}
aj...@gmail.com <aj...@gmail.com> #8
It would also be nice, if FunInterface1::class.java == FunInterface2::class.java
and setOf(FunInterface1::class.java, FunInterface2::class.java).size == 2
vi...@gmail.com <vi...@gmail.com> #9
Also, is there a way to disable this optimization only for my classes? Or can I only remove all optimizations via -keep, allowobfuscation, allowshrinking class_names
?
mu...@gmail.com <mu...@gmail.com> #10
Branch: main
commit ccfe5ff0d44034c39187c5c2656503549a614934
Author: Christoffer Adamsen <christofferqa@google.com>
Date: Wed Aug 07 08:41:16 2024
Test Map with class const keys
Bug:
Change-Id: Icb32bf21030c7800c409ba5e4279dc2bdee05cb4
A src/test/java/com/android/tools/r8/classmerging/horizontal/ConstClassAfterVerticalClassMergingTest.java
xx...@gmail.com <xx...@gmail.com> #11
Branch: main
commit f5c7414f6891c90f375215f6e3e84db42435f0f6
Author: Christoffer Adamsen <christofferqa@google.com>
Date: Wed Aug 07 10:47:18 2024
Disable synthetic sharing of synthetics with vertically merged sources
Bug:
Change-Id: I9cc17b10095c5a74f3f142217b5f4c6a4de37f09
M src/main/java/com/android/tools/r8/shaking/Enqueuer.java
M src/main/java/com/android/tools/r8/shaking/KeepClassInfo.java
M src/main/java/com/android/tools/r8/shaking/KeepInfoCollection.java
A src/main/java/com/android/tools/r8/shaking/SyntheticKeepClassInfo.java
M src/main/java/com/android/tools/r8/synthesis/SyntheticFinalization.java
M src/main/java/com/android/tools/r8/verticalclassmerging/VerticalClassMerger.java
M src/test/java/com/android/tools/r8/classmerging/horizontal/ConstClassAfterVerticalClassMergingTest.java
vi...@gmail.com <vi...@gmail.com> #12
Turned out the issue was an interplay between the vertical class merging and sharing of synthesized lambda classes. This should be fixed and you can try a build from HEAD with the fix by merging the following into your settings.gradle
or settings.gradle.kts
:
pluginManagement {
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw/main")
}
}
dependencies {
classpath("com.android.tools:r8:f5c7414f6891c90f375215f6e3e84db42435f0f6")
}
}
}
mi...@gmail.com <mi...@gmail.com> #13
Good temp fix. I lowered my refresh to be forced to 60. Seems to have gotten better.
Noticed more in gray screens also.
BUT...no I am forced to 60Hz.
About to have a seizure because of it. I opted out to downgrade. But the downgrade was unsuccessful. And wiped my phone anyway.
If you turn on the FPS counter in developer options it shows it constantly switching from 60 to 90hz. I don't know if this is just me but I can't find the "force 90hz" option in developer options anymore.
xa...@gmail.com <xa...@gmail.com> #14
Just found out after i disable 90hz,problem resolved. It turns out the screen continuously change 60hz to 90hz and vice versa
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
xa...@gmail.com <xa...@gmail.com> #15
If if turn off force smooth display, the screen will downgrade to 60hz. Which results in a constant frame rate and the problem don't occur. But if i turn on smooth display, the frame rate shows inconsistency even though on the same screen. Hope this helps
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sn...@yahoo.com <sn...@yahoo.com> #16
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ma...@gmail.com <ma...@gmail.com> #17
an...@gmail.com <an...@gmail.com> #18
go...@mac.com <go...@mac.com> #19
jo...@gmail.com <jo...@gmail.com> #20
tr...@gmail.com <tr...@gmail.com> #21
1. Turn the refresh rate indicator on in Developer Options
2. Turn on Dark Mode
3. Open Messages, open a convo with a picture, and tap the picture.
4. Tap the picture to make the system UI slide away.
After the system UI slides away, the system seems to have a hard time settling into a steady refresh rate. Every time it goes back and forth (as indicated by the refresh rate indicator we turned on), the screen flickers. It's barely lighter at 90 HZ and darker at 60 HZ.
jl...@gmail.com <jl...@gmail.com> #22
I have the same problem on my Pixel 4XL, usually only happens in the text messaging app. I have my UI in Dark Mode.
kr...@gmail.com <kr...@gmail.com> #23
vk...@google.com <vk...@google.com> #24
bp...@gmail.com <bp...@gmail.com> #25
happens when watching YouTube only for me
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
el...@gmail.com <el...@gmail.com> #26
Screen flickering in the message app. Does not seem to flicker while typing.
The phone is in night time mode as well. Turned off night time mode and it still flickered. Noticed if I scroll to the bottom of a page, it stops temporarily, but in the bug report, it stops.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
el...@gmail.com <el...@gmail.com> #27
et...@gmail.com <et...@gmail.com> #28
My screen flickers constantly as well. It is doing so as I type this at roughly 2 flickers per second. Most noticeable when screen is dark.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
et...@gmail.com <et...@gmail.com> #29
th...@gmail.com <th...@gmail.com> #30
I've encountered the screen flickering issue a lot lately and decided to do a workaround and just turn off smooth display, which should keep the display at 60 hz. However, when I turn off smooth display in settings, it does nothing to stop the screen from changing between 60 and 90 hz. In the attached screen recording, this is shown through the on screen refresh rate readout from developer options as I toggle smooth display on and off. I've also tried restarting my device after making the change but it still doesn't make a difference.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
th...@gmail.com <th...@gmail.com> #31
sa...@gmail.com <sa...@gmail.com> #32
ja...@gmail.com <ja...@gmail.com> #33
I noticed this only happens when my brightness isn't 100% up
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
an...@gmail.com <an...@gmail.com> #34
se...@gmail.com <se...@gmail.com> #35
It happens most often at night when it's darker in the room.
Filed by Android Beta Feedback. Version (Bundled): 2.9-betterbug.external_20200331_RC04
To learn more about our feedback process, please visit
mr...@gmail.com <mr...@gmail.com> #36
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
da...@gmail.com <da...@gmail.com> #37
I see this happening most visibly with a dark theme and low external light.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
da...@gmail.com <da...@gmail.com> #38
ry...@gmail.com <ry...@gmail.com> #39
Same issue of screen flickering at low brightness
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
la...@gmail.com <la...@gmail.com> #40
fi...@gmail.com <fi...@gmail.com> #41
Screen flickering on all apps with black background (on dark theme) with general use.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ma...@gmail.com <ma...@gmail.com> #42
Screen flickers constantly except when I type on my keyboard quickly. Toggling for brightness levels, adaptive on/off, and blue light filter do nothing to stop it. Started occurring immediately after my most recent beta download. Very difficult to deal with for longer than a few seconds.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ma...@gmail.com <ma...@gmail.com> #43
[Deleted User] <[Deleted User]> #44
Screen flickering happening in general use. With night light on.
Also noticed that it looked like it was occurring in pocket casts on only a portion of screen and while using the Twitter app.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
df...@gmail.com <df...@gmail.com> #45
Screen flickers when first waking lock screen momentarily. This doesn't happen every time but still frequently.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
gc...@gmail.com <gc...@gmail.com> #46
se...@gmail.com <se...@gmail.com> #47
nj...@gmail.com <nj...@gmail.com> #48
Screen flickering is unbearable... I'm going back to Android 10
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fa...@gmail.com <fa...@gmail.com> #49
vj...@gmail.com <vj...@gmail.com> #50
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ch...@gmail.com <ch...@gmail.com> #51
As I am typing this I am experiencing the flickering.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
dm...@gmail.com <dm...@gmail.com> #52
Mine also flickers. Especially noticeable in grey areas. Tried changing color scheme, switching off dark mode, doesn't help.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
vm...@gmail.com <vm...@gmail.com> #53
My screen is flickering a lot. It happens only in dark or when I got the brightness to the minimum at night. This happens only in beta 2, the first one doesn't had this problem.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
pr...@gmail.com <pr...@gmail.com> #54
si...@gmail.com <si...@gmail.com> #55
Pixel 4 XL, screen flickering issue. Turning off smooth display fixes issue temporarily.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mo...@gmail.com <mo...@gmail.com> #56
Same thing happening didn't notice it until I opened my dark mode apps.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mo...@gmail.com <mo...@gmail.com> #57
mi...@gmail.com <mi...@gmail.com> #58
Screen flicker in low light with dark theme enabled or while displaying dark colors.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mi...@gmail.com <mi...@gmail.com> #59
ya...@gmail.com <ya...@gmail.com> #60
I have this too.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ma...@gmail.com <ma...@gmail.com> #61
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ch...@gmail.com <ch...@gmail.com> #62
When night mode is on screen flickers.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ch...@gmail.com <ch...@gmail.com> #63
sh...@gmail.com <sh...@gmail.com> #64
Screen flickering since the beta 2 came out.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sh...@gmail.com <sh...@gmail.com> #65
Su...@PukaNaz.org <Su...@PukaNaz.org> #66
I have the same issue
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ab...@gmail.com <ab...@gmail.com> #67
Happens mainly on lock screen.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ab...@gmail.com <ab...@gmail.com> #68
mc...@gmail.com <mc...@gmail.com> #69
are having a big fighting issue about who's got the better phone and I'm
sure that all you ladies out there have an apple and I've got a Google
phone maybe not but probably
On Fri, Jul 17, 2020, 6:39 PM <buganizer-system@google.com> wrote:
jk...@gmail.com <jk...@gmail.com> #70
Google pixel 2xl android 11 touch is not work
Proper so solve this is
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mc...@gmail.com <mc...@gmail.com> #71
ns...@gmail.com <ns...@gmail.com> #72
Issue seems to be tied to the 90hz "smooth display" setting. If I turn that off the screen will stop flickering.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mc...@gmail.com <mc...@gmail.com> #73
could hang out with it be cool maybe some friends I'd love to have people
over love to spend time with people see people making me laugh make them
feel comfortable feel home said I'm by myself so I don't know not that it
really matters and I don't need to say that on this type of email but where
is everybody in why is everybody all set but me literally
On Fri, Jul 17, 2020, 11:31 PM <buganizer-system@google.com> wrote:
sh...@gmail.com <sh...@gmail.com> #74
mf...@gmail.com <mf...@gmail.com> #75
Screen flickers on grayscale apps whenever there is input or cursor refresh. Doesn't happen on pure AMOLED black modes. Also doesn't affect Google feed.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ch...@gmail.com <ch...@gmail.com> #76
Flickering mostly when night mode is enabled flickering amber
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ch...@gmail.com <ch...@gmail.com> #77
ib...@gmail.com <ib...@gmail.com> #78
I am also having the screen flickering bug. It's very noticable when in dark mode, with adaptive brightness, in a dim lit room. Extremely noticeable in the Messages app
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ib...@gmail.com <ib...@gmail.com> #79
ca...@googlemail.com <ca...@googlemail.com> #80
Rapidly alternating screen brightness.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ca...@googlemail.com <ca...@googlemail.com> #81
di...@gmail.com <di...@gmail.com> #82
This is not related to the pixel 4 flashing issue. Please, don't set this as duplicate. This looks like a pixel launcher issue. It might also be related to the pixel 3 XL notch.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fr...@gmail.com <fr...@gmail.com> #83
I have encountered screen flickering while using apps that play video such as YouTube and Hulu.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
tt...@gmail.com <tt...@gmail.com> #84
Screen flickering in Dark mode
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
tt...@gmail.com <tt...@gmail.com> #85
im...@gmail.com <im...@gmail.com> #86
More noticeable in dark mode
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
bu...@gmail.com <bu...@gmail.com> #87
Flickering as well especially at night with dark mode and night mode on (yellowish)
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ec...@gmail.com <ec...@gmail.com> #88
Def experiencing screen flickering.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
st...@gmail.com <st...@gmail.com> #89
Seems to be noticable on darker screens. Even when night light is on
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
u....@gmail.com <u....@gmail.com> #90
I particularly notice the flickering when the screen brightness is turned most of the way down, and while in dark mode apps that have a predominantly gray background. Apps that go truly black don't seem to have the issue. Pixel4XL
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
or...@gmail.com <or...@gmail.com> #91
da...@gmail.com <da...@gmail.com> #92
Display flickering when Display is in low light situations
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
da...@gmail.com <da...@gmail.com> #93
an...@gmail.com <an...@gmail.com> #94
tr...@gmail.com <tr...@gmail.com> #95
when smooth dispkay is on, screen starts to flicker between 90hz and 60hz. It is noticeable because of the green tint .
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
la...@gmail.com <la...@gmail.com> #96
Screen flickering all the time
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
la...@gmail.com <la...@gmail.com> #97
al...@gmail.com <al...@gmail.com> #98
My screen is flickering when the bright is below 30%. Mostly on the dark colours.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
[Deleted User] <[Deleted User]> #99
aa...@gmail.com <aa...@gmail.com> #100
Screen flickering while scrolling
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
wi...@gmail.com <wi...@gmail.com> #101
ja...@gmail.com <ja...@gmail.com> #102
get this with accu battery
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ja...@gmail.com <ja...@gmail.com> #103
get this with accu battery
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ma...@macaulay.cuny.edu <ma...@macaulay.cuny.edu> #104
Light flickers mostly in dim/no outside lighting
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
tt...@gmail.com <tt...@gmail.com> #105
Dude my screen is flickering like crazy.
Brightness 0
Lowlight
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ba...@gmail.com <ba...@gmail.com> #106
I'm experience the same issue. Thought it was the phone, got it replaced and New phone had same issue. Only on dark grey apps. Messenges in dark mode in low light is a great example. Even this feedback entry screen in low light is doing it.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ba...@gmail.com <ba...@gmail.com> #107
ke...@gmail.com <ke...@gmail.com> #108
Screen flickering on my device too
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
to...@gmail.com <to...@gmail.com> #109
On Mon., Jul. 20, 2020, 13:18 , <buganizer-system@google.com> wrote:
vi...@gmail.com <vi...@gmail.com> #110
With the latest beta update, the flicker is gone. The automatic transition of screen brightness lost it's smooth transition for larger more noticeable jumps in brightness change
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
cb...@gmail.com <cb...@gmail.com> #111
My screen flickers most notably when plugged in.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
om...@gmail.com <om...@gmail.com> #112
The main screen issue has been resolved with 2.5 but the issue with the flickering remains when watching a YouTube video
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
om...@gmail.com <om...@gmail.com> #113
jl...@gmail.com <jl...@gmail.com> #114
Same here, flickers only on YouTube now with low brightness on update 2.5.
ku...@gmail.com <ku...@gmail.com> #115
na...@gmail.com <na...@gmail.com> #116
Seems to be fixed since the most recent update
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
go...@gmail.com <go...@gmail.com> #117
Happen a lot of times, I close the screen and open it again and this solve the problem
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
xx...@gmail.com <xx...@gmail.com> #118
am...@gmail.com <am...@gmail.com> #119
Screen flickers on low light (usually at night) on dark mode
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
am...@gmail.com <am...@gmail.com> #120
hs...@gmail.com <hs...@gmail.com> #121
screen seems to flicker at less than 75% on greyish background
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ra...@gmail.com <ra...@gmail.com> #122
my screen is not responding
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
se...@gmail.com <se...@gmail.com> #123
My issue [
However, I'm not experiencing any flickering at the moment. 90Hz display just doesn't work at night, or in a dim room. Is possible that the issue is different? (I'm already in Beta 2.5).
Is anybody experiencing this with a flame (small Pixel 4) ? Perhaps I need to do a factory reset.
dn...@gmail.com <dn...@gmail.com> #124
On Mon., Jul. 27, 2020, 8:09 a.m. , <buganizer-system@google.com> wrote:
gu...@gmail.com <gu...@gmail.com> #125
Happens when on Youtube and Reddit.
Filed by Android Beta Feedback. Version (Bundled): 2.9-betterbug.external_20200331_RC04
To learn more about our feedback process, please visit
ah...@gmail.com <ah...@gmail.com> #126
Fixed
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
al...@gmail.com <al...@gmail.com> #127
Mostly having issues with full screen video in Netflix. Occasional white flash at varying intervals. Problem does not persist in picture in picture viewing. Has been inconsistent trying to recreate.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
al...@gmail.com <al...@gmail.com> #128
al...@gmail.com <al...@gmail.com> #129
When i push the home screen touch the Google assistant icon displayed
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
al...@gmail.com <al...@gmail.com> #130
When i push the home screen touch the Google assistant icon displayed
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ca...@gmail.com <ca...@gmail.com> #131
Screen flickering is annoying in some apps.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ti...@gmail.com <ti...@gmail.com> #132
Fixed on latest beta
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
le...@gmail.com <le...@gmail.com> #133
Well it looks like how they've fixed it is just locking the refresh rate at 90hz. Just letting you know some of us did notice. It is better than the flickering though that's for sure.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
le...@gmail.com <le...@gmail.com> #134
Well it looks like how they've fixed it is just locking the refresh rate at 90hz. Just letting you know some of us did notice. It is better than the flickering though that's for sure.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
24...@gmail.com <24...@gmail.com> #135
Screen can constantly flicker or crash and not wanting to turn up brightness when I'm in a dark room even when I turn it up high as can go it still won't do what I want the brightness to be or anything.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
24...@gmail.com <24...@gmail.com> #136
ti...@gmail.com <ti...@gmail.com> #137
On Mon, Aug 3, 2020 at 7:12 PM <buganizer-system@google.com> wrote:
ta...@gmail.com <ta...@gmail.com> #138
Screen flickers while turning on every time
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
al...@gmail.com <al...@gmail.com> #139
Display flickering when Display is in low light situations
Pixel 4
Android 11
al...@gmail.com <al...@gmail.com> #140
al...@gmail.com <al...@gmail.com> #141
al...@gmail.com <al...@gmail.com> #142
bd...@gmail.com <bd...@gmail.com> #143
Even when forcing 90 hz in the developer options, Google has a list of apps that are forced to use 60hz by default. Therefore, the 60hz green tint would be a good idea to look into as well.
Description
What type of Android issue is this? User Interface, Display, or Rendering issue
What steps would let us observe this issue?
1. General usage of the phone, first noticed when using bubbles
What did you expect to happen?
The screen to function normally
What actually happened?
The screen constantly flickers
How often has this happened?
Every time