Status Update
Comments
ad...@google.com <ad...@google.com>
ad...@google.com <ad...@google.com> #2
There's a little more context in
ub...@gmail.com <ub...@gmail.com> #3
Branch: androidx-main
commit 013365e5bd19899250054dabe311f3bc9d8837e9
Author: Zach Klippenstein <klippenstein@google.com>
Date: Thu Oct 20 10:32:31 2022
Add some tests for TestMonotonicFrameClock's current behavior.
This is in preparation for modifying the clock to include a custom
continuation interceptor.
Bug:
Test: TestMonotonicFrameClockTest
Change-Id: I771b25673c96b41f8501600677dfcbe3ff9fb6fc
M compose/ui/ui-test/build.gradle
A compose/ui/ui-test/src/androidAndroidTest/kotlin/androidx/compose/ui/test/PhaseOrderingTest.kt
M compose/ui/ui-test/src/androidAndroidTest/kotlin/androidx/compose/ui/test/TestMonotonicFrameClockTest.kt
A compose/ui/ui-test/src/androidAndroidTest/kotlin/androidx/compose/ui/test/util/TestCounter.kt
pb...@gmail.com <pb...@gmail.com> #4
Branch: androidx-main
commit f61c557f4526dfa0e33d070de9c262e788184e8a
Author: Zach Klippenstein <klippenstein@google.com>
Date: Thu Oct 20 10:33:11 2022
Defer dispatching coroutines resumed during animation callbacks in UI tests.
This is a workaround for the fact that we use an unconfined dispatcher
in UI tests (
layout passes for frames in some cases (
TestMonotonicFrameClock gets a continuation interceptor which wraps continuations with
behavior that will usually no-op, but if the continuation is resumed
while frame callbacks are running, it will defer resuming the
underlying continuation until all the frame callbacks have finished.
This matches how continuations are dispatched in non-test code, since
that code does not use an unconfined dispatcher.
In order to preserve test delay skipping, the interceptor implements
Delay and delegates it to the underlying dispatcher, just like
ApplyingContinuationInterceptor is already doing.
This CL also adds a callback that runs after each frame in
TestMonotonicFrameClock. This change was originally in aosp/2121435.
This allows us to perform measure and layout after each frame if
necessary, which aligns the measure/layout timing with production.
Bug:
Bug:
Bug:
Test: PhaseOrderingTest, TestMonotonicFrameClockTest
Relnote: "In UI tests using a Compose rule, continuations resumed during
`withFrameNanos` callbacks will not be dispatched until after all
frame callbacks have finished running. This matches the behavior of
compose when running normally. However, tests that rely on the old
behavior may fail. This should only affect code that calls
`withFrameNanos` or `withFrameMillis` directly, and has logic
outside of callback passed to those functions that may need to be
moved inside the callbacks. See the animation test changes in this
CL for examples."
Relnote: "Added optional `onPerformTraversals: (Long) -> Unit` parameter to
`TestMonotonicFrameClock` constructor and factory function to run
code after `withFrameNanos` callbacks but before resuming callers'
coroutines."
Change-Id: Idb41309445a030c91e8e4ae05daa9642b450505c
M compose/animation/animation-core/src/androidAndroidTest/kotlin/androidx/compose/animation/core/SingleValueAnimationTest.kt
M compose/animation/animation/src/androidAndroidTest/kotlin/androidx/compose/animation/AnimatedContentTest.kt
M compose/animation/animation/src/androidAndroidTest/kotlin/androidx/compose/animation/CrossfadeTest.kt
M compose/foundation/foundation/src/androidAndroidTest/kotlin/androidx/compose/foundation/ScrollableFocusableInteractionTest.kt
M compose/test-utils/src/androidMain/kotlin/androidx/compose/testutils/AndroidComposeTestCaseRunner.android.kt
M compose/ui/ui-test-junit4/src/androidMain/kotlin/androidx/compose/ui/test/ComposeUiTest.android.kt
M compose/ui/ui-test-junit4/src/commonMain/kotlin/androidx/compose/ui/test/ApplyingContinuationInterceptor.kt
M compose/ui/ui-test/api/public_plus_experimental_current.txt
M compose/ui/ui-test/src/androidAndroidTest/kotlin/androidx/compose/ui/test/PhaseOrderingTest.kt
M compose/ui/ui-test/src/androidAndroidTest/kotlin/androidx/compose/ui/test/TestMonotonicFrameClockTest.kt
A compose/ui/ui-test/src/commonMain/kotlin/androidx/compose/ui/test/internal/DelayPropagatingContinuationInterceptorWrapper.kt
A compose/ui/ui-test/src/jvmMain/kotlin/androidx/compose/ui/test/FrameDeferringContinuationInterceptor.kt
M compose/ui/ui-test/src/jvmMain/kotlin/androidx/compose/ui/test/TestMonotonicFrameClock.jvm.kt
an...@gmail.com <an...@gmail.com> #5
Branch: androidx-main
commit 803a2a7da2b86cf4ac9930a897ec62d9a73b1fda
Author: stevebower <stevebower@google.com>
Date: Thu Dec 01 13:37:43 2022
Remove withFrameNanos workaround now that
Bug: 259134313
Test: ./gradlew :wear:compose:compose-material:connectedCheck --info --daemon
Change-Id: I74a9f3fd67935f468411af75d7d7cf33267f9b5a
M wear/compose/compose-material/src/commonMain/kotlin/androidx/wear/compose/material/ScalingLazyColumn.kt
an...@gmail.com <an...@gmail.com> #6
Is there a workaround? Currently we use the following.
val scope = rememberCoroutineScope {
// ui test broke without this.
Dispatchers.Main.immediate
}
Otherwise some navigateToXXX
callbacks are invoked on a Room dispatcher. Which breaks the NavGraph.
ch...@gmail.com <ch...@gmail.com> #7
My tests are not doing their job of catching bugs due to this issue.
It's pretty bad for the test environment to have different behavior to production. It leads to bugs and makes it so that we can't verify behavior in tests properly.
kk...@gmail.com <kk...@gmail.com> #8
I ran into this in
We actually have existing tests that should catch this category of issue, essentially the problem looks like:
scope.launch { }
...some other method calls
scope.cancel()
Normally the cancel will happen before the launch, so the block will never start executing, but in tests because it is unconfined this was accidentally passing as the launch always started first. Manually adding a yield() inside the launch makes the test start to fail, although that is still slightly different as normally we wouldn't even get to the point where the launch {} takes effect and invokes the block.
kk...@gmail.com <kk...@gmail.com> #9
I see this issue has had some recent movement with a pending PR for adding the ability to set the dispatcher responsible for coroutines related to composition to the StandardTestDispatcher. I have ported these changes over to a project I'm working on and have seen a significant increase in the stability of my team's end-to-end tests that leverage the Compose Testing APIs. Previously, we were encountering issues that were only "solved" by passing in Dispatchers.Main
in our app code for the majority of our utilizations of rememberCoroutineScope
and LaunchedEffect
. Are the changes in the PR associated with this issue being prioritized, and when can we expect them to move through?
sa...@gmail.com <sa...@gmail.com> #10
I have been having this problem every time I answer / call a person. After you press the speaker button, it returns to normal.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sa...@gmail.com <sa...@gmail.com> #11
I have been having this problem every time I answer / call a person. After you press the speaker button, it returns to normal.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
lv...@gmail.com <lv...@gmail.com> #12
an...@gmail.com <an...@gmail.com> #13
Seems to be fine
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fl...@gmail.com <fl...@gmail.com> #14
This happens to me often as well
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fl...@gmail.com <fl...@gmail.com> #15
al...@gmail.com <al...@gmail.com> #16
Its very fine
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> #17
Phone defaulted to speaker on calls
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> #18
fe...@gmail.com <fe...@gmail.com> #19
sl...@gmail.com <sl...@gmail.com> #20
I'm also experiencing this issue
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ro...@gmail.com <ro...@gmail.com> #21
bo...@gmail.com <bo...@gmail.com> #22
Have this issue on my Pixel 4
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
jb...@gmail.com <jb...@gmail.com> #23
No issue here on pixel 4 xl
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> #24
I am also experiencing the problem of default speaker selected on calls.
Its doesn't happen when we are connected to Bluetooth devices.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
my...@gmail.com <my...@gmail.com> #25
I was connected to bluetooth device and suddenly audio shifted to phone speaker even though it was showing its connected to bluetooth
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
my...@gmail.com <my...@gmail.com> #26
ad...@google.com <ad...@google.com> #27
yo...@gmail.com <yo...@gmail.com> #28
Filed by Android Beta Feedback. Version (Bundled): 2.9-betterbug.external_20200331_RC04
To learn more about our feedback process, please visit
re...@gmail.com <re...@gmail.com> #29
Happens every other call
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ro...@gmail.com <ro...@gmail.com> #30
I am experiencing this issue as well
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ro...@gmail.com <ro...@gmail.com> #31
l....@gmail.com <l....@gmail.com> #32
Also having this issue
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sp...@gmail.com <sp...@gmail.com> #33
Battery life is awful. 30% worse than on Android 10
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
kv...@gmail.com <kv...@gmail.com> #34
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
kv...@gmail.com <kv...@gmail.com> #35
vi...@gmail.com <vi...@gmail.com> #36
Random reboot while calling.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
vi...@gmail.com <vi...@gmail.com> #37
Random reboot while calling.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ss...@gmail.com <ss...@gmail.com> #38
While using earphones, if I get a call and I answer it, I suddenly get the call on loud speaker, I have to tap on the speaker button even though it's not 'ON' I have to tap on it 2-3 times to talk on earphones. Please fix this.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ss...@gmail.com <ss...@gmail.com> #39
While using earphones, if I get a call and I answer it, I suddenly get the call on loud speaker, I have to tap on the speaker button even though it's not 'ON' I have to tap on it 2-3 times to talk on earphones. Please fix this.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
xy...@gmail.com <xy...@gmail.com> #40
相机功能不能使用,无法扫码。
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> #41
Hanging problem
Screen pinning problem
Battery drain to much quickly
On Fri, Jul 3, 2020, 9:38 PM <buganizer-system@google.com> wrote:
wa...@gmail.com <wa...@gmail.com> #42
me...@gmail.com <me...@gmail.com> #43
I actually don't mind this at all but there should be an option for when to use speaker and when not for instance default speaker but when I put my phone to my ear take it off speaker etc
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
uz...@gmail.com <uz...@gmail.com> #44
Same
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> #45
El micrófono no funciona
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
dp...@gmail.com <dp...@gmail.com> #46
I have this issue
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
10...@gmail.com <10...@gmail.com> #47
Is there a way to toggle 3XL to answer with speaker not handset?
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
di...@gmail.com <di...@gmail.com> #48
Once the I answer the phone, it automatically answers on speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
je...@gmail.com <je...@gmail.com> #49
This happens
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
je...@gmail.com <je...@gmail.com> #50
na...@gmail.com <na...@gmail.com> #51
Everytime I make or receive a call it defaults to speaker. Even with Bluetooth headphones on
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> #52
gi...@gmail.com <gi...@gmail.com> #53
Will be better for use both speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
lv...@gmail.com <lv...@gmail.com> #54
lv...@gmail.com <lv...@gmail.com> #55
Still an issue with Beta 2
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
lv...@gmail.com <lv...@gmail.com> #56
bk...@gmail.com <bk...@gmail.com> #57
I don't know if this is an issue. Mine does it too, but, it only does it is say 60% of the time, other times it goes to the ear speaker.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
bk...@gmail.com <bk...@gmail.com> #58
al...@gmail.com <al...@gmail.com> #59
J'ai le même problème également.
vi...@gmail.com <vi...@gmail.com> #60
when an incoming call, the call is not audible, the volume is reset
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
vi...@gmail.com <vi...@gmail.com> #61
when an incoming call, the call is not audible, the volume is reset
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
vi...@gmail.com <vi...@gmail.com> #62
when an incoming call, the call is not audible, the volume is reset
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
he...@gmail.com <he...@gmail.com> #63
It has only happened when I receive a phone call when a Bluetooth headset is not connected, when I make phone calls it has been fine with or without Bluetooth
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
he...@gmail.com <he...@gmail.com> #64
ja...@gmail.com <ja...@gmail.com> #65
fi...@gmail.com <fi...@gmail.com> #66
Issue persists on beta 2 update
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fi...@gmail.com <fi...@gmail.com> #67
[Deleted User] <[Deleted User]> #68
Always defaults and no setting to rectify
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]> #69
Always defaults and no setting to rectify
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
tr...@gmail.com <tr...@gmail.com> #70
Same issue for my pixel 2 also
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
tr...@gmail.com <tr...@gmail.com> #71
ru...@gmail.com <ru...@gmail.com> #72
Me contestas las llamadas en el altavoz
No en el micro
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
vi...@gmail.com <vi...@gmail.com> #73
with an incoming call, the call volume is reset and it is not
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
mw...@gmail.com <mw...@gmail.com> #74
Same issues with my 4xl
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ad...@gmail.com <ad...@gmail.com> #75
Make a phone call, speaker phon toggle automatically on
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ad...@gmail.com <ad...@gmail.com> #76
Make a phone call, speaker phon toggle automatically on
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ro...@gmail.com <ro...@gmail.com> #77
Calls being sent loud speaker and have to restart ohone
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ro...@gmail.com <ro...@gmail.com> #78
ky...@gmail.com <ky...@gmail.com> #79
Happens on my phone on incoming calls.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ky...@gmail.com <ky...@gmail.com> #80
nj...@gmail.com <nj...@gmail.com> #81
Drives me nuts.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
nj...@gmail.com <nj...@gmail.com> #82
Drives me nuts.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ko...@gmail.com <ko...@gmail.com> #83
voices is low
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ea...@gmail.com <ea...@gmail.com> #84
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
lv...@gmail.com <lv...@gmail.com> #85
So I can't even get around this issue by going back to 10. That's another issue I've reported that also is still not fixed. This is SO frustrating. I can understand how this may be an issue in beta 1, but this should have been corrected with the beta 2 release.
je...@gmail.com <je...@gmail.com> #86
Telephone call was shrieking and painful
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
db...@gmail.com <db...@gmail.com> #87
Phone defaults to speaker when answered.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
db...@gmail.com <db...@gmail.com> #88
ru...@gmail.com <ru...@gmail.com> #89
nc...@gmail.com <nc...@gmail.com> #90
Not every time but also getting the speakerphone selected some times when making a call
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
nc...@gmail.com <nc...@gmail.com> #91
Not every time but also getting the speakerphone selected some times when making a call
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> #92
Mine does this as well, 90% of the time when I make a phonecall it defaults to speaker, and I can't ever hear them when it goes on speaker.
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> #93
Mine does this as well, 90% of the time when I make a phonecall it defaults to speaker, and I can't ever hear them when it goes on speaker.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ex...@gmail.com <ex...@gmail.com> #94
I am also having this issue. I was using a Bluetooth headset but it defaulted to speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
Su...@PukaNaz.org <Su...@PukaNaz.org> #95
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> #96
On Fri, Jul 17, 2020, 6:03 PM <buganizer-system@google.com> wrote:
mc...@gmail.com <mc...@gmail.com> #97
your head and outside. People just need to learn when to stay away and not
barge into people's business when they don't have any clue what you're
talking about or even who they're even dealing with I get sick and tired of
having to try to prove myself to people every day because that's all I do
approve and prove and proof and prove and I don't get anything out of it I
literally sit here at home by myself struggling everyday just to figure it
out because not a damn person in this whole world has came around since
this whole "covid-19 "so I pretty much just said f*** it cuz if there was
real people that cared they would probably be here maybe help guide me show
me the better way to go or what I should do but nobody does so I've just
figured it out on my own I know you will guys are all trying to figure it
out probably too but maybe not but if you guys are all set and happy and
good you might as well just not even reply to this message anymore because
I'm tired of having to try to struggle everyday and hahaha the joke's on me
right well I guess so if I'm big f****** laughing matter than just let it
be maybe just help me out for a day or just don't even worry about it sorry
for ranting but I really don't have anybody I drive around and I see people
everywhere they're all happy-go-lucky got money got all this and that and I
don't have s***
On Fri, Jul 17, 2020, 6:25 PM Zachary Reimer <mcidzar1@gmail.com> wrote:
as...@gmail.com <as...@gmail.com> #98
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
as...@gmail.com <as...@gmail.com> #99
ns...@gmail.com <ns...@gmail.com> #100
I've noticed this issue after upgrading to the Android 11 beta. I also have the beta for the phone app, not sure which is the true culprit.
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> #101
Happens with every phone call
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> #102
Happens with every phone call
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
re...@gmail.com <re...@gmail.com> #103
Noted this as well
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ow...@gmail.com <ow...@gmail.com> #104
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ow...@gmail.com <ow...@gmail.com> #105
da...@gmail.com <da...@gmail.com> #106
ma...@macaulay.cuny.edu <ma...@macaulay.cuny.edu> #107
Only on calls made by the phone. Not receiving calls
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
gp...@gmail.com <gp...@gmail.com> #108
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
fb...@gmail.com <fb...@gmail.com> #109
Yes I have been experiencing the same issue, phone calls automatically defaults to speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
di...@gmail.com <di...@gmail.com> #110
Calls by default use speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
di...@gmail.com <di...@gmail.com> #111
sp...@gmail.com <sp...@gmail.com> #112
ai...@gmail.com <ai...@gmail.com> #113
Phone call default to speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ai...@gmail.com <ai...@gmail.com> #114
ha...@gmail.com <ha...@gmail.com> #115
All incoming outgoing calls turns on speaker automatically. This is the major bug I've detected.
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> #116
On Tue, Jul 21, 2020, 11:03 AM <buganizer-system@google.com> wrote:
st...@gmail.com <st...@gmail.com> #117
I agree. No matter what it does speaker first
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> #118
Phone calls will always go on speaker by default
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> #119
li...@gmail.com <li...@gmail.com> #120
directly to charging.
On Wed., Jul. 22, 2020, 8:13 a.m. , <buganizer-system@google.com> wrote:
ja...@gmail.com <ja...@gmail.com> #121
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> #122
lv...@gmail.com <lv...@gmail.com> #123
STILLLLLLLLL AN ISSUE. Here we are. Android 11 beta 2.5, with the most basic phone feature still not fixed.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
lv...@gmail.com <lv...@gmail.com> #124
aj...@gmail.com <aj...@gmail.com> #125
It's still there after update. Default speaker mode is selected.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sp...@gmail.com <sp...@gmail.com> #126
ki...@gmail.com <ki...@gmail.com> #127
I've had this happen a few times already
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
de...@gmail.com <de...@gmail.com> #128
ke...@gmail.com <ke...@gmail.com> #129
I have the same issue. Just installed the beta last night and made a call this morning and it defaulted to speaker.
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> #130
Please make this an option for a default. All my calls are on speakerphone and it was convenient.
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> #131
After the 2.5 update my phone still defaults to speaker when making phone calls sometimes.
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> #132
ka...@gmail.com <ka...@gmail.com> #133
Phone calls default to speaker still.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
ka...@gmail.com <ka...@gmail.com> #134
da...@gmail.com <da...@gmail.com> #135
On Thu, Jul 23, 2020, 5:29 PM <buganizer-system@google.com> wrote:
lv...@gmail.com <lv...@gmail.com> #136
je...@gmail.com <je...@gmail.com> #137
sh...@gmail.com <sh...@gmail.com> #138
Call recorder not working
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
sa...@gmail.com <sa...@gmail.com> #139
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> #140
My phone calls always default to speaker
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> #141
pr...@gmail.com <pr...@gmail.com> #142
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
dj...@gmail.com <dj...@gmail.com> #143
Issue not fixed on crosshatch.
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
dj...@gmail.com <dj...@gmail.com> #144
d3...@gmail.com <d3...@gmail.com> #145
I'm on the latest beta and still having problems where I answer a phone call and it defaults to speaker
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
d3...@gmail.com <d3...@gmail.com> #146
sh...@gmail.com <sh...@gmail.com> #147
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
be...@gmail.com <be...@gmail.com> #148
Audio gets sent to speakerphone, this happens on phone app, Duo, and 3rd party apps that allow for video calling
er...@gmail.com <er...@gmail.com> #149
sk...@gmail.com <sk...@gmail.com> #150
App data not found
Filed by Android Beta Feedback. Version (Bundled): 2.10-betterbug.external_20200514_RC01
To learn more about our feedback process, please visit
jo...@gmail.com <jo...@gmail.com> #151
jo...@gmail.com <jo...@gmail.com> #152
Having this issue in RPB2.200611.012
br...@gmail.com <br...@gmail.com> #153
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Still having the speaker phone issue on beta 3 aswell as my girlfriend's pixel 4
Filed by Android Beta Feedback. Version (Bundled): 2.11-betterbug.external_20200624_RC04
To learn more about our feedback process, please visit
br...@gmail.com <br...@gmail.com> #154
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Still having the speaker phone issue on beta 3 aswell as my girlfriend's pixel 4
Filed by Android Beta Feedback. Version (Bundled): 2.11-betterbug.external_20200624_RC04
To learn more about our feedback process, please visit
rj...@gmail.com <rj...@gmail.com> #155
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Issue continues after beta 3 release
Filed by Android Beta Feedback. Version (Bundled): 2.11-betterbug.external_20200624_RC04
To learn more about our feedback process, please visit
rj...@gmail.com <rj...@gmail.com> #156
fi...@gmail.com <fi...@gmail.com> #157
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
System UI randomly crashing for no reason
Filed by Android Beta Feedback. Version (Bundled): 2.11-betterbug.external_20200624_RC04
To learn more about our feedback process, please visit
fi...@gmail.com <fi...@gmail.com> #158
ja...@gmail.com <ja...@gmail.com> #159
da...@gmail.com <da...@gmail.com> #160
On Sun, Aug 16, 2020, 11:51 AM <buganizer-system@google.com> wrote:
Description
- Build Number: google/blueline/blueline:11/RPB1.200504.018/6520161:user/release-keys
What type of issue is this? Other issue
What steps would let us observe this issue?
1. Make a phone call
What did you expect to happen?
Audio defaults to handset
What actually happened?
Audio was set to speaker phone
How often has this happened?
Frequently
Thanks