Status Update
Comments
bo...@gmail.com <bo...@gmail.com> #2
[Comment deleted]
ja...@android.com <ja...@android.com>
lu...@gmail.com <lu...@gmail.com> #3
Oh, and I'm seeing this on both the emulator and a Galaxy Nexus. Simply launching an activity that does something like this is enough to reproduce:
ClipboardManager manager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
manager.addPrimaryClipChangedListener(new ClipboardManager.OnPrimaryClipChangedListener() {
@Override
public void onPrimaryClipChanged() { }
});
ClipboardManager manager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
manager.addPrimaryClipChangedListener(new ClipboardManager.OnPrimaryClipChangedListener() {
@Override
public void onPrimaryClipChanged() { }
});
ec...@gmail.com <ec...@gmail.com> #4
Could you please give full steps to reproduce, including the app to run that is causing it? The crash here shows it failing when setting the clipboard, which generally works; I need to to be able to see more specifically what this particular app is doing.
Also the API demo "Clipboard/Data Types" does use addPrimaryClipChangedListener() and doesn't have this problem, and the stack crawl originally shown doesn't have anything about addPrimaryClipChangedListener() in it, so there is some information I am missing.
Thanks!
Also the API demo "Clipboard/Data Types" does use addPrimaryClipChangedListener() and doesn't have this problem, and the stack crawl originally shown doesn't have anything about addPrimaryClipChangedListener() in it, so there is some information I am missing.
Thanks!
ce...@gmail.com <ce...@gmail.com> #5
What application are you trying to copy text from after adding a listener? I'm copying text from other apps like Messaging or Search and not the application the listener itself is from.
I have no idea if I'm on the right track, but my personal hypothesis is that this is caused because AppOpsService's uid verification is trying to verify the uid for the *listener's* application but the calling uid (Binder.getCallingUid()) is that of the application the text is being copied from. This leads to the permission check for UPDATE_APP_OPS_STATS which will obviously fail.
The code snippet I posted is basically the full "application" you should be able to reproduce this with. So this should be it:
1. Create a new Android app in $IDE_OF_CHOICE
2. Add a new OnPrimaryClipChangedListener in the onCreate of that application's activity -- it's contents don't matter
3. Install and launch the activity
4. Copy text from any other application
5. Crash.
I have no idea if I'm on the right track, but my personal hypothesis is that this is caused because AppOpsService's uid verification is trying to verify the uid for the *listener's* application but the calling uid (Binder.getCallingUid()) is that of the application the text is being copied from. This leads to the permission check for UPDATE_APP_OPS_STATS which will obviously fail.
The code snippet I posted is basically the full "application" you should be able to reproduce this with. So this should be it:
1. Create a new Android app in $IDE_OF_CHOICE
2. Add a new OnPrimaryClipChangedListener in the onCreate of that application's activity -- it's contents don't matter
3. Install and launch the activity
4. Copy text from any other application
5. Crash.
jo...@gmail.com <jo...@gmail.com> #6
I'm experiencing similar bug. for example, go to message app, tap and hold a message and copy text. the app will crash (the copy will save in clipboard though)
at...@gmail.com <at...@gmail.com> #7
I have the same problem, I have an app that starts observing clipboard and since I updated to 4.3 that app crashes with similar exception to this from the first post (android.permission.UPDATE_APP_OPS_STATS)
then every other app that tries to copy something crashes with this exception:
W/dalvikvm(5446): threadid=1: thread exiting with uncaught exception (group=0x419c0700)
W/clipboard(431): Exception:
W/clipboard(431): java.lang.IllegalStateException: beginBroadcast() called while already in a broadcast
W/clipboard(431): at android.os.RemoteCallbackList.beginBroadcast(RemoteCallbackList.java:229)
W/clipboard(431): at com.android.server.ClipboardService.setPrimaryClip(ClipboardService.java:165)
W/clipboard(431): at android.content.IClipboard$Stub.onTransact(IClipboard.java:62)
W/clipboard(431): at com.android.server.ClipboardService.onTransact(ClipboardService.java:123)
W/clipboard(431): at android.os.Binder.execTransact(Binder.java:388)
W/clipboard(431): at dalvik.system.NativeStart.run(Native Method)
E/AndroidRuntime(5446): FATAL EXCEPTION: main
E/AndroidRuntime(5446): java.lang.IllegalStateException: beginBroadcast() called while already in a broadcast
E/AndroidRuntime(5446): at android.os.Parcel.readException(Parcel.java:1439)
E/AndroidRuntime(5446): at android.os.Parcel.readException(Parcel.java:1385)
E/AndroidRuntime(5446): at android.content.IClipboard$Stub$Proxy.setPrimaryClip(IClipboard.java:171)
E/AndroidRuntime(5446): at android.content.ClipboardManager.setPrimaryClip(ClipboardManager.java:125)
E/AndroidRuntime(5446): at android.content.ClipboardManager.setText(ClipboardManager.java:208)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity.onContextItemSelected(AuthenticatorActivity.java:927)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity.access$200(AuthenticatorActivity.java:73)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity$3.onActionItemClicked(AuthenticatorActivity.java:353)
E/AndroidRuntime(5446): at android.widget.AbsListView$MultiChoiceModeWrapper.onActionItemClicked(AbsListView.java:6058)
E/AndroidRuntime(5446): at com.android.internal.policy.impl.PhoneWindow$DecorView$ActionModeCallbackWrapper.onActionItemClicked(PhoneWindow.java:2569)
E/AndroidRuntime(5446): at com.android.internal.app.ActionBarImpl$ActionModeImpl.onMenuItemSelected(ActionBarImpl.java:962)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:735)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:152)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:874)
E/AndroidRuntime(5446): at com.android.internal.view.menu.ActionMenuView.invokeItem(ActionMenuView.java:547)
E/AndroidRuntime(5446): at com.android.internal.view.menu.ActionMenuItemView.onClick(ActionMenuItemView.java:115)
E/AndroidRuntime(5446): at android.view.View.performClick(View.java:4240)
E/AndroidRuntime(5446): at android.view.View$PerformClick.run(View.java:17721)
E/AndroidRuntime(5446): at android.os.Handler.handleCallback(Handler.java:730)
E/AndroidRuntime(5446): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime(5446): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(5446): at android.app.ActivityThread.main(ActivityThread.java:5103)
E/AndroidRuntime(5446): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(5446): at java.lang.reflect.Method.invoke(Method.java:525)
E/AndroidRuntime(5446): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
E/AndroidRuntime(5446): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
E/AndroidRuntime(5446): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager(431): Force finishing activity com.google.android.apps.authenticator2/com.google.android.apps.authenticator.AuthenticatorActivity
or similar. Once I disabled clipboard monitoring app and rebooted Nexus 7 the copying worked for sometime.
then every other app that tries to copy something crashes with this exception:
W/dalvikvm(5446): threadid=1: thread exiting with uncaught exception (group=0x419c0700)
W/clipboard(431): Exception:
W/clipboard(431): java.lang.IllegalStateException: beginBroadcast() called while already in a broadcast
W/clipboard(431): at android.os.RemoteCallbackList.beginBroadcast(RemoteCallbackList.java:229)
W/clipboard(431): at com.android.server.ClipboardService.setPrimaryClip(ClipboardService.java:165)
W/clipboard(431): at android.content.IClipboard$Stub.onTransact(IClipboard.java:62)
W/clipboard(431): at com.android.server.ClipboardService.onTransact(ClipboardService.java:123)
W/clipboard(431): at android.os.Binder.execTransact(Binder.java:388)
W/clipboard(431): at dalvik.system.NativeStart.run(Native Method)
E/AndroidRuntime(5446): FATAL EXCEPTION: main
E/AndroidRuntime(5446): java.lang.IllegalStateException: beginBroadcast() called while already in a broadcast
E/AndroidRuntime(5446): at android.os.Parcel.readException(Parcel.java:1439)
E/AndroidRuntime(5446): at android.os.Parcel.readException(Parcel.java:1385)
E/AndroidRuntime(5446): at android.content.IClipboard$Stub$Proxy.setPrimaryClip(IClipboard.java:171)
E/AndroidRuntime(5446): at android.content.ClipboardManager.setPrimaryClip(ClipboardManager.java:125)
E/AndroidRuntime(5446): at android.content.ClipboardManager.setText(ClipboardManager.java:208)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity.onContextItemSelected(AuthenticatorActivity.java:927)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity.access$200(AuthenticatorActivity.java:73)
E/AndroidRuntime(5446): at com.google.android.apps.authenticator.AuthenticatorActivity$3.onActionItemClicked(AuthenticatorActivity.java:353)
E/AndroidRuntime(5446): at android.widget.AbsListView$MultiChoiceModeWrapper.onActionItemClicked(AbsListView.java:6058)
E/AndroidRuntime(5446): at com.android.internal.policy.impl.PhoneWindow$DecorView$ActionModeCallbackWrapper.onActionItemClicked(PhoneWindow.java:2569)
E/AndroidRuntime(5446): at com.android.internal.app.ActionBarImpl$ActionModeImpl.onMenuItemSelected(ActionBarImpl.java:962)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:735)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:152)
E/AndroidRuntime(5446): at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:874)
E/AndroidRuntime(5446): at com.android.internal.view.menu.ActionMenuView.invokeItem(ActionMenuView.java:547)
E/AndroidRuntime(5446): at com.android.internal.view.menu.ActionMenuItemView.onClick(ActionMenuItemView.java:115)
E/AndroidRuntime(5446): at android.view.View.performClick(View.java:4240)
E/AndroidRuntime(5446): at android.view.View$PerformClick.run(View.java:17721)
E/AndroidRuntime(5446): at android.os.Handler.handleCallback(Handler.java:730)
E/AndroidRuntime(5446): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime(5446): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(5446): at android.app.ActivityThread.main(ActivityThread.java:5103)
E/AndroidRuntime(5446): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(5446): at java.lang.reflect.Method.invoke(Method.java:525)
E/AndroidRuntime(5446): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
E/AndroidRuntime(5446): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
E/AndroidRuntime(5446): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager(431): Force finishing activity com.google.android.apps.authenticator2/com.google.android.apps.authenticator.AuthenticatorActivity
or similar. Once I disabled clipboard monitoring app and rebooted Nexus 7 the copying worked for sometime.
[Deleted User] <[Deleted User]> #8
[Comment deleted]
r....@gmail.com <r....@gmail.com> #9
Yes, It's happening to my NEXUS 4 also. Once you launch any app monitoring clipboard then copying in any app crashes the app.
bf...@gmail.com <bf...@gmail.com> #10
i've noticed that even if app crashes, copying still works and I can paste copied data. So I've changed code in my app to:
public static void setClipData(Context context, String text) {
try {
ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
ClipData clip = ClipData.newPlainText("", text);
clipboard.setPrimaryClip(clip);
Toast.makeText(context.getApplicationContext(), R.string.url_copied, Toast.LENGTH_SHORT).show();
} catch (Exception e) {
Toast.makeText(context.getApplicationContext(), R.string.url_copying_error, Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
But copying from contextual action bar still crashes and observing clipboard doesn't work at all. I think this is because ofhttp://www.androidpolice.com/2013/07/25/app-ops-android-4-3s-hidden-app-permission-manager-control-permissions-for-individual-apps/ :)
public static void setClipData(Context context, String text) {
try {
ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE);
ClipData clip = ClipData.newPlainText("", text);
clipboard.setPrimaryClip(clip);
Toast.makeText(context.getApplicationContext(), R.string.url_copied, Toast.LENGTH_SHORT).show();
} catch (Exception e) {
Toast.makeText(context.getApplicationContext(), R.string.url_copying_error, Toast.LENGTH_LONG).show();
e.printStackTrace();
}
}
But copying from contextual action bar still crashes and observing clipboard doesn't work at all. I think this is because of
br...@gmail.com <br...@gmail.com> #11
I face the same issue on my Galaxy Nexus. I have an app "Clipper" (clipboard manager) running in background. The moment some text is copied from any app, that particular app would crash. After uninstalling app "Clipper" (a clipboard manager), the crashes stopped. I had to reboot after uninstalling.
bf...@gmail.com <bf...@gmail.com> #12
Could someone *please* post complete steps to reproduce. This means either:
(1) Attaching a complete code project that can be built and run to cause the problem to happen, or
(2) A pointer to an app on the play store to install with steps to reproduce in that app.
Thanks.
(1) Attaching a complete code project that can be built and run to cause the problem to happen, or
(2) A pointer to an app on the play store to install with steps to reproduce in that app.
Thanks.
[Deleted User] <[Deleted User]> #13
Diana Install https://play.google.com/store/apps/details?id=org.rojekti.clipper set it to have it monitoring in the notifaction bar then try copying anything from anywhere ;)
bf...@gmail.com <bf...@gmail.com> #14
As I mentioned here[1], it happens on pretty much any app, Google's included, in example:
1. Open YouTube (I have version 4.5.17).
2. Open a video (any video).
3. Overflow menu > Copy URL
Same with GMail:
1. Open GMail (I have version 4.5.2-714156).
2. Open a conversation
3. Long press on text to action bar mode to appear
4. Tap on copy action
1.https://plus.google.com/103638111379552295023/posts/hZMgjN2qSUU
1. Open YouTube (I have version 4.5.17).
2. Open a video (any video).
3. Overflow menu > Copy URL
Same with GMail:
1. Open GMail (I have version 4.5.2-714156).
2. Open a conversation
3. Long press on text to action bar mode to appear
4. Tap on copy action
1.
[Deleted User] <[Deleted User]> #15
Diane,
I've attached a sample application. Like I mentioned before, it's just a blank activity that attaches a listener to the clipboard service.
Once you've built, installed and run this application and its activity, simply open any other application and copy something. For example, open Google Search, type anything in the search bar, copy it and a crash will occur.
The important part here is that the copying must occur in _another application_ separate from the listener. This causes the uid mismatch in AppOpsService's verifyIncomingUid and throws an exception.
Alternatively, install the Clipper application linked in #13, complete the tutorial so that it registers a listener, and copy from any other application. A crash will occur.
I've attached a sample application. Like I mentioned before, it's just a blank activity that attaches a listener to the clipboard service.
Once you've built, installed and run this application and its activity, simply open any other application and copy something. For example, open Google Search, type anything in the search bar, copy it and a crash will occur.
The important part here is that the copying must occur in _another application_ separate from the listener. This causes the uid mismatch in AppOpsService's verifyIncomingUid and throws an exception.
Alternatively, install the Clipper application linked in #13, complete the tutorial so that it registers a listener, and copy from any other application. A crash will occur.
at...@gmail.com <at...@gmail.com> #16
[Comment deleted]
ma...@gmail.com <ma...@gmail.com> #17
After clearing Google Services Framework 3 times I got the 4.2.1 1.1MB update, announced as version 4.2...
Google is definitely not working with pride and determination.
December returned to the calendar and Google Music shows the folders in a kind of 3D way with a cute slide effect.
What I really wanted them to fix is untouched. :mad:
Shame on you Google. Wifi together with bluetooth is essential for someone to take advantage of their tablet or phone.
My Nexus 7 32GB is eagerly awaiting for Google's paid devs to FIX this Monster bug. Tried Skype after updating and I almost went deaf with the distortion and cuts in the sound.
So PRETTY PLEASE WITH SUGAR ON TOP release 4.2.2 ASAP before I and many other people decide to RMA their devices.
I won't root to downgrade. It's up to Google to fix this without asking users to take unnecessary risks.
Godspeed Google.
Thank you for reading.
Google is definitely not working with pride and determination.
December returned to the calendar and Google Music shows the folders in a kind of 3D way with a cute slide effect.
What I really wanted them to fix is untouched. :mad:
Shame on you Google. Wifi together with bluetooth is essential for someone to take advantage of their tablet or phone.
My Nexus 7 32GB is eagerly awaiting for Google's paid devs to FIX this Monster bug. Tried Skype after updating and I almost went deaf with the distortion and cuts in the sound.
So PRETTY PLEASE WITH SUGAR ON TOP release 4.2.2 ASAP before I and many other people decide to RMA their devices.
I won't root to downgrade. It's up to Google to fix this without asking users to take unnecessary risks.
Godspeed Google.
Thank you for reading.
bs...@gmail.com <bs...@gmail.com> #18
Basically it happens with any app monitoring clipboard. 100% reproducible and very much easy to repro.
1) installhttps://play.google.com/store/apps/details?id=net.daum.android.dictionary
2) launch the app
3) launch or switch to other app(Chrome, Gmail, ''') which has texts can be copied to clipboard
4) copy text then the app crashes.
1) install
2) launch the app
3) launch or switch to other app(Chrome, Gmail, ''') which has texts can be copied to clipboard
4) copy text then the app crashes.
te...@gmail.com <te...@gmail.com> #19
Thanks for the help in reproducing! We now have a fix.
yu...@gmail.com <yu...@gmail.com> #20
I am also having this issue on the n
New Nexus 7 (2013)
New Nexus 7 (2013)
te...@gmail.com <te...@gmail.com> #21
Can confirm that my Nexus 7 2013 has this bug. Every time I copy the app being copied from crashes. Google or non-violent, makes no difference.
my...@gmail.com <my...@gmail.com> #22
I am also having this issue on my Nexus 4 after the 4.3 update. I use the clipboard very often, the only way I find to solve the issue is to do a factory reset (Settings -> Backup & Reset -> Factory data reset)
im...@gmail.com <im...@gmail.com> #23
Folks, there is no need to comment further. :) This bug has been marked as fixed, as noted.
ra...@gmail.com <ra...@gmail.com> #24
Not fixed on my Nexus 7 2013. Where is the note?
te...@gmail.com <te...@gmail.com> #25
The bug may be fixed on some internal development version of Android, but in reality there are tens of thousands of affected devices out there right now. I am starting to get bad ratings over this bug and the clipboard is rendered unusable for many people.
When can we expect device updates to correct the issue? Are we talking about days, weeks or months? Will other device manufacturers ship the same broken code with their own updates?
When can we expect device updates to correct the issue? Are we talking about days, weeks or months? Will other device manufacturers ship the same broken code with their own updates?
jo...@gmail.com <jo...@gmail.com> #26
Still experiencing this bug.
te...@gmail.com <te...@gmail.com> #27
Bug still happening on my nexus 10.
[Deleted User] <[Deleted User]> #28
I have the same problem. Apps (Chrome, GMail, Phone) crashes after copying text. But after crash the text still in clipboard, and I can paste it. Nexus 4.
te...@gmail.com <te...@gmail.com> #29
Still happening on my Nexus 7
cb...@gmail.com <cb...@gmail.com> #30
Could someone shut down comments on this, please? :)
It's been marked as fixed, just not released yet.
It's been marked as fixed, just not released yet.
ri...@gmail.com <ri...@gmail.com> #31
@#30 nat.abbo...@gmail.com
and @ all googlers
shut down comments? why? Imho thousands of comments and complaints should pile here.
Breaking Copy and Paste is breaking one of the most basic properties of any computer system. It worked before, it worked when i bought the phone/tablet, and I want it back! ASAP
hack...@android.com said there is a fix. What is the problem to release the fix? Why is the OTA, that not all users have received yet, updated asap? Why not a second OTA (and that must be a really small one) to all 4.3 users? At the time of writing only NEXUS users are affected.
Do all the (e.g.) Samsung S4 users get the same bug when they receive the 4.3 update as veeti.paananen asked in post #25, or is it fixed there?
You broke it, you fix it, AND YOU SHALL DEPLOY IT ASAP!
But you don't care, right? Average time with google is 1.1 years I read this week. Fixing bugs is not in favour of your careers. Better working on new fancy features that the management ist focussing on. No older code gurus that live with the code and can maintain them.
tl;dr : Don`t call a bug fixed, before the fix is deployed
P.S.: Please excuse my bad english, I am not an native speaker and I not amused at this very moment
and @ all googlers
shut down comments? why? Imho thousands of comments and complaints should pile here.
Breaking Copy and Paste is breaking one of the most basic properties of any computer system. It worked before, it worked when i bought the phone/tablet, and I want it back! ASAP
hack...@android.com said there is a fix. What is the problem to release the fix? Why is the OTA, that not all users have received yet, updated asap? Why not a second OTA (and that must be a really small one) to all 4.3 users? At the time of writing only NEXUS users are affected.
Do all the (e.g.) Samsung S4 users get the same bug when they receive the 4.3 update as veeti.paananen asked in post #25, or is it fixed there?
You broke it, you fix it, AND YOU SHALL DEPLOY IT ASAP!
But you don't care, right? Average time with google is 1.1 years I read this week. Fixing bugs is not in favour of your careers. Better working on new fancy features that the management ist focussing on. No older code gurus that live with the code and can maintain them.
tl;dr : Don`t call a bug fixed, before the fix is deployed
P.S.: Please excuse my bad english, I am not an native speaker and I not amused at this very moment
cb...@gmail.com <cb...@gmail.com> #32
I'm not sure you understand how code works, or what this site is.
This is a developer issue tracker, for developers, not users who don't actually know what goes on behind the scenes.
You aren't helping anything or anyone by complaining, you're just spamming. Google reports that the issue is fixed, it just needs to be pushed to devices. Presumably, they're testing internally first, to ensure the fix is safe for a larger staged rollout.
They are deploying it ASAP. You know what that means, I assume? "As Soon As Possible." That doesn't mean immediately, it means once it is *possible* for them to safely deploy it.
tl;dr: stop spamming, you aren't helpful.
This is a developer issue tracker, for developers, not users who don't actually know what goes on behind the scenes.
You aren't helping anything or anyone by complaining, you're just spamming. Google reports that the issue is fixed, it just needs to be pushed to devices. Presumably, they're testing internally first, to ensure the fix is safe for a larger staged rollout.
They are deploying it ASAP. You know what that means, I assume? "As Soon As Possible." That doesn't mean immediately, it means once it is *possible* for them to safely deploy it.
tl;dr: stop spamming, you aren't helpful.
wo...@gmail.com <wo...@gmail.com> #33
>I'm not sure you understand how code works, or what this site is.
I coded 6502 assembly on the Commodore C64 when you were still in the goolies (a word I learned right now) of your father.
>This is a developer issue tracker, for developers, not users who don't actually know >what goes on behind the scenes.
Hey insider, tell me, what goes on behind the scenes? Perhaps you can tell me why the new Motorola does not debut with 4.3 but 4.2 instead. Fights amongst googlers I heared?
>You aren't helping anything or anyone by complaining, you're just spamming. Google >reports that the issue is fixed, it just needs to be pushed to devices. Presumably, >they're testing internally first, to ensure the fix is safe for a larger staged >rollout.
Question: When should I report that I have a fix? When I think that I have a fix or when I tested that fix, so that it it worth to be called a fix?
>They are deploying it ASAP. You know what that means, I assume? "As Soon As >Possible." That doesn't mean immediately, it means once it is *possible* for them to >safely deploy it.
Yeah, I know the definition of ASAP, I also know snafu and fubar, both come in to my mind when I think of android development in the past year (-> and YES, this is spamming, but i fed the troll)
>tl;dr: stop spamming, you aren't helpful.
perhaps not helpful fixing this bug, but highlighting the bad situation android development faces right now. There are several (imho mission critical) bugs open for YEARS. But no one cares, new features, new features, thas's what they call for.
I coded 6502 assembly on the Commodore C64 when you were still in the goolies (a word I learned right now) of your father.
>This is a developer issue tracker, for developers, not users who don't actually know >what goes on behind the scenes.
Hey insider, tell me, what goes on behind the scenes? Perhaps you can tell me why the new Motorola does not debut with 4.3 but 4.2 instead. Fights amongst googlers I heared?
>You aren't helping anything or anyone by complaining, you're just spamming. Google >reports that the issue is fixed, it just needs to be pushed to devices. Presumably, >they're testing internally first, to ensure the fix is safe for a larger staged >rollout.
Question: When should I report that I have a fix? When I think that I have a fix or when I tested that fix, so that it it worth to be called a fix?
>They are deploying it ASAP. You know what that means, I assume? "As Soon As >Possible." That doesn't mean immediately, it means once it is *possible* for them to >safely deploy it.
Yeah, I know the definition of ASAP, I also know snafu and fubar, both come in to my mind when I think of android development in the past year (-> and YES, this is spamming, but i fed the troll)
>tl;dr: stop spamming, you aren't helpful.
perhaps not helpful fixing this bug, but highlighting the bad situation android development faces right now. There are several (imho mission critical) bugs open for YEARS. But no one cares, new features, new features, thas's what they call for.
jo...@gmail.com <jo...@gmail.com> #34
> Presumably, they're testing internally first, to ensure the fix is safe for a larger staged rollout.
Well, if that is the case, then how come you rolled out the 4.3 without fixing this bug? Clipboard management is such a basic part of the OS. It makes one wonder about the quality of the so called "internal testing".
BTW, aren't we, the so called "non-developers", supposed to report bugs here? Then don't we have a say on issues when we face one?
And please don't proclaim "Fixed", just saying "Fixed" gives a wrong idea. You could have rather said "Noted/Confirmed, will be fixed in future release", or something to that effect.
My 2p.
Well, if that is the case, then how come you rolled out the 4.3 without fixing this bug? Clipboard management is such a basic part of the OS. It makes one wonder about the quality of the so called "internal testing".
BTW, aren't we, the so called "non-developers", supposed to report bugs here? Then don't we have a say on issues when we face one?
And please don't proclaim "Fixed", just saying "Fixed" gives a wrong idea. You could have rather said "Noted/Confirmed, will be fixed in future release", or something to that effect.
My 2p.
rh...@gmail.com <rh...@gmail.com> #35
Just received an email about this very issue with one of my apps and 4.3. Yep definitely crashes. Hope Google rolls out a fix soon.
ad...@gmail.com <ad...@gmail.com> #36
I have the same problem with Clipboard Monitoring on BlueDict.
Android 4.3
Android 4.3
te...@gmail.com <te...@gmail.com> #37
How lame is that!
ad...@gmail.com <ad...@gmail.com> #38
also having this problem
ad...@gmail.com <ad...@gmail.com> #39
I understand this issue has been marked as fixed but even after the recent update to Build JWR66Y I'm still having the clipboard bug, from what I've read online this minor update to 4.3 was supposed to fix the bug. Not the case so far :(
te...@gmail.com <te...@gmail.com> #40
My Galaxy Nexus got updated to the new build this morning. Its just been a few times that I have tested it, and apparantely this issue seems to be resolved. If other users could share their experience, it could help others.
FYI, I am using "ClipNote" app for Clipboard monitoring. I haven't tested with any other Clipboard monitoring app.
FYI, I am using "ClipNote" app for Clipboard monitoring. I haven't tested with any other Clipboard monitoring app.
ad...@gmail.com <ad...@gmail.com> #41
I've just installed the newest update to android 4.3, which reportedly contained the fix, but there is no change to the crash, and the copy-paste features still fail to function!
td...@gmail.com <td...@gmail.com> #42
Why is the fix only on the 4.3_r2.2 branch and not on the 4.3_r1.1 branch? This seems to mean that the fix is only going out to the 2013 Nexus 7. Please push out this update to all Nexus devices.
at...@gmail.com <at...@gmail.com> #43
As mentioned in my previous post, I am using Galaxy Nexus and there are no crashes on copying from any app (tested with GoSMS, WhatsApp, Gmail) after the update to JWR66Y, with "ClipNote" running in the background. But it seems that other users are experiencing crashes still.
Attaching 2 screenshots. First one shows the "About phone" screen and the second one shows the clippings that I copied without any crashes since last few days and the recent ones today.
Attaching 2 screenshots. First one shows the "About phone" screen and the second one shows the clippings that I copied without any crashes since last few days and the recent ones today.
td...@gmail.com <td...@gmail.com> #44
I have a Nexus 4, Build JWR66Y I too am having the clipboard bug.
Oli
Oli
mi...@gmail.com <mi...@gmail.com> #45
Got update. Still crash.
te...@gmail.com <te...@gmail.com> #46
I think the fix is waiting for Apple approval:)))
na...@gmail.com <na...@gmail.com> #47
Updated Nexus 7. Still clashes on copy.
Sent from my Android Nexus 7
Jim Flanagan
Cell: 773 396-4638
Beaver Island Chicago
219.448.2109 773.463.5494
37700 Font View Ct. 4439 N. California
Beaver Island, MI. Chicago, IL.
Sent from my Android Nexus 7
Jim Flanagan
Cell: 773 396-4638
Beaver Island Chicago
219.448.2109 773.463.5494
37700 Font View Ct. 4439 N. California
Beaver Island, MI. Chicago, IL.
sl...@gmail.com <sl...@gmail.com> #48
I have a similar issue when sending a notification on a user's Galaxy Nexus running 4.3. Not sure how to reproduce this, I only see the crash with no user info. Here is he crash log:
java.lang.SecurityException: uid 10157 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:380)
at android.app.NotificationManager.notify(NotificationManager.java:136)
at android.app.NotificationManager.notify(NotificationManager.java:109)
at com.levelup.touiteur.BackgroundTouitLoader$1.run(BackgroundTouitLoader.java:274)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5306)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:743)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:559)
at dalvik.system.NativeStart.main(Native Method)
java.lang.SecurityException: uid 10157 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:380)
at android.app.NotificationManager.notify(NotificationManager.java:136)
at android.app.NotificationManager.notify(NotificationManager.java:109)
at com.levelup.touiteur.BackgroundTouitLoader$1.run(BackgroundTouitLoader.java:274)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5306)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:743)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:559)
at dalvik.system.NativeStart.main(Native Method)
jo...@gmail.com <jo...@gmail.com> #49
Updated to the most recent build.
My Nexus 4 can now copy from apps without crashing.
My Nexus 7 (1st gen) still crashes when copying.
Trying to track down the app that it triggering the crashing so I can uninstall it for the time being until the "fix" is fixed.
My Nexus 4 can now copy from apps without crashing.
My Nexus 7 (1st gen) still crashes when copying.
Trying to track down the app that it triggering the crashing so I can uninstall it for the time being until the "fix" is fixed.
cb...@gmail.com <cb...@gmail.com> #50
I can confirm, that
NotificationManager notificationManager = (NotificationManager)
...
context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify();
let GT-I9300, GT-I9505 crash with
.lang.SecurityException: uid 10140 does not have android.permission.UPDATE_APP_OPS_STATS
NotificationManager notificationManager = (NotificationManager)
...
context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify();
let GT-I9300, GT-I9505 crash with
.lang.SecurityException: uid 10140 does not have android.permission.UPDATE_APP_OPS_STATS
ma...@gmail.com <ma...@gmail.com> #51
Nexus 4, Build JWR66Y. I can confirm that the problem persists basically with any app from which you want to copy and paste, let it be a google app or a third party app.
This type of bugs are unacceptable, start paying attention to details.
This type of bugs are unacceptable, start paying attention to details.
ra...@gmail.com <ra...@gmail.com> #52
Me too: JWR66Y on Nexus 4, still crashes on copy.
cb...@gmail.com <cb...@gmail.com> #53
Had this issue on my Play version of HTC ONE for 3 weeks now. Last night I took a leap of faith and updated my Nexus 7 from a 4.3 to a newer 4.3 JWR66Y and also broken what was perfectly fine.
This is not a minor obscure function. Its been marked fixed for over a month now and as of last night the bad update that WILL break your copy function is still being pushed OTA.
Please be sensitive of the timing of this issue. Nexus 7 2 already has issues, and the big Apple event is just next week. This doesn't exactly bond well....
This is not a minor obscure function. Its been marked fixed for over a month now and as of last night the bad update that WILL break your copy function is still being pushed OTA.
Please be sensitive of the timing of this issue. Nexus 7 2 already has issues, and the big Apple event is just next week. This doesn't exactly bond well....
yu...@gmail.com <yu...@gmail.com> #54
Hey google, you know why i bought an android phone in the first place? Copy and paste. I kid you not. Please bump the priority on pushing this out and stop saying it's fixed until it's in our hands - until it's 'out' your job isn't done. Thanks
ma...@gmail.com <ma...@gmail.com> #55
Can anyone @ google confirm whether or not we'll see this fix before 4.4 KitKat? Is that the cause of the delay in deployment?
yu...@gmail.com <yu...@gmail.com> #56
I strongly hope the fix is released as a part of Android 4.3, not in KitKat
as soon as possible because:
* This issue is too serious. We don't want our app to be crashed by other
apps.
* We need to wait KitKat upgrade which will not be provided from carriers,
or provided after a year from the launch of KitKat
2013/09/05 6:57 <android@googlecode.com>:
as soon as possible because:
* This issue is too serious. We don't want our app to be crashed by other
apps.
* We need to wait KitKat upgrade which will not be provided from carriers,
or provided after a year from the launch of KitKat
2013/09/05 6:57 <android@googlecode.com>:
jo...@gmail.com <jo...@gmail.com> #57
I can verify this with Nexus 4 and lastest Android update. First I thought that my qrcode scanner app is broken. But I was not: Because it copied the scanned text automatically to the clipboard the scanner app crashed after every scan. Other app with barcode or qrcode scanner like the Amazon app don't crash because they do not copy to clipboard.
cb...@gmail.com <cb...@gmail.com> #58
Same issue on my Nexus 7, Android 4.3. The simple way fix it without ROOT:
1. find out what app have clipboard listening requirements, uninstall it.
2. reboot your device,that's all.
This clipboard issue appear on my device after i installed a app called Select Translator to it.
1. find out what app have clipboard listening requirements, uninstall it.
2. reboot your device,that's all.
This clipboard issue appear on my device after i installed a app called Select Translator to it.
jo...@gmail.com <jo...@gmail.com> #59
How exactly is one meant to determine what app has a clipboard listener installed?
me...@gmail.com <me...@gmail.com> #60
"How exactly is one meant to determine what app has a clipboard listener installed?"
For non-techies like me that would be very useful to know. It might be that I can temporarily live without whatever app or widget is triggering this. Any advice on hunting down the culprit without wiping everything?
For non-techies like me that would be very useful to know. It might be that I can temporarily live without whatever app or widget is triggering this. Any advice on hunting down the culprit without wiping everything?
cb...@gmail.com <cb...@gmail.com> #61
"It might be that I can temporarily live without whatever app or widget is triggering this."
Most common would be any type of downloader app that watches for video/audio links. In most of these apps, you can disable the clipboard watcher.
Most common would be any type of downloader app that watches for video/audio links. In most of these apps, you can disable the clipboard watcher.
[Deleted User] <[Deleted User]> #62
"Most common would be any type of downloader app that watches for video/audio links. In most of these apps, you can disable the clipboard watcher."
Thanks very much for that. Disabling sounds much better than uninstalling. I'll experiment with my podcatcher.
Thanks very much for that. Disabling sounds much better than uninstalling. I'll experiment with my podcatcher.
mb...@gmail.com <mb...@gmail.com> #63
"Most common would be any type of downloader app that watches for video/audio links."
I have zero apps of this nature
I have zero apps of this nature
lo...@gmail.com <lo...@gmail.com> #64
For me the culprit turned out to be the otherwise excellent ConvertIt! Pro Unit Converter. It has a "Copy-Convert" function which evidently watches the clipboard. You can turn this off in the settings.
th...@gmail.com <th...@gmail.com> #65
This problem is repeatably triggered for me by EverClip 1.0.8. If I uninstall that app and reboot, the problem goes away. If I reinstall that app, the problem reappears. Hopefully this helps some of the people encountering this issue.
cb...@gmail.com <cb...@gmail.com> #66
Why is it Google claim that this is fixed and the issue is closed and they're now ignoring this thread.. but they still haven't released an update for their nexus devices?
Don't you guys communicate between departments? Isn't there some mechanism by which you can flag this fix as critical for the end user experience and it should be pushed asap instead of having to wait for the next bundle of updates? Or is it a case that this mechanism DOES exist but you just don't feel it's urgent enough to warrant it because you're not directly affected by it like we are?
Don't you guys communicate between departments? Isn't there some mechanism by which you can flag this fix as critical for the end user experience and it should be pushed asap instead of having to wait for the next bundle of updates? Or is it a case that this mechanism DOES exist but you just don't feel it's urgent enough to warrant it because you're not directly affected by it like we are?
st...@gmail.com <st...@gmail.com> #67
Hey guys i've met this problem for serveral days.
I found someone said ClipNote may cause crash and app that watches links may cause crash too, so i disabled my Mdict's auto watch feature then restart my phone.
It worked! Hope this'll be helpful.
I found someone said ClipNote may cause crash and app that watches links may cause crash too, so i disabled my Mdict's auto watch feature then restart my phone.
It worked! Hope this'll be helpful.
dr...@gmail.com <dr...@gmail.com> #68
my problem is that the clipboard doesn't even open up in chrome. no crash but can't past into chrome.
te...@gmail.com <te...@gmail.com> #69
Nexus 4, Build JWR66Y same issue. Any app. Copying crashes the app you're copying in, but the data is successfully copied to the clipboard.
gr...@gmail.com <gr...@gmail.com> #70
When will be fix released? Still having this issue on nexus 7 2012, Ver. 4.3 kernel build from 11Jun.
cb...@gmail.com <cb...@gmail.com> #71
just find the culprit app, for me it was the app 'CONVERTIT!' , once I
disabled the copy - conversion feature found in the settings the issue was
fixed.
disabled the copy - conversion feature found in the settings the issue was
fixed.
ri...@gmail.com <ri...@gmail.com> #72
From what I can see, currently builds JSS15Q (android-4.3_r2.2) JSS15R (android-4.3_r2.3) have the fix, the rest of the 4.3 builds don't. See: http://source.android.com/source/build-numbers.html
da...@googlemail.com <da...@googlemail.com> #73
In my case the app "convertIt" causes my copy&paste crashes. I disabled the option "copy conversation" and my problem was solved.
cb...@gmail.com <cb...@gmail.com> #74
wow... The thread started in July... and Google/android are not able to deploy a fix yet...
It s u c k s.
It s u c k s.
jo...@gmail.com <jo...@gmail.com> #75
I don't understand why it is not released yet. JWR66Y which I have on Nexus 7 and Galaxy Nexus are still affected with this bug and according to https://developers.google.com/android/nexus/images Nexus 4 and 10 are also affected :/
ni...@teknister.nu <ni...@teknister.nu> #76
I can confirm. I've this bug on Nexus 4. JWR66Y.
It's very disappointing. Please Google fix it.
No way to copy text in no applications.
It's very disappointing. Please Google fix it.
No way to copy text in no applications.
th...@gmail.com <th...@gmail.com> #77
I'm starting to think they are just going to put the fix in 4.4. I certainly hope not but it has been quite a while so that seems to make sense.
ca...@gmail.com <ca...@gmail.com> #78
Nexus 7 here, broken as well.
It only started recently, so I think I'm going to start going through apps and uninstalling a bunch.
Assuming that's the Google approved fix right now...
It only started recently, so I think I'm going to start going through apps and uninstalling a bunch.
Assuming that's the Google approved fix right now...
ne...@gmail.com <ne...@gmail.com> #79
Whenever I use the copy or cut function in any application, it crashes the application.
However, the content is still in the clipboard and I can paste it afterwards without an issue.
LG Nexus 4
Androd 4.3
Kernel version: 3.4.0-perf-gf43c3d9
Build Number: JWR66Y
However, the content is still in the clipboard and I can paste it afterwards without an issue.
LG Nexus 4
Androd 4.3
Kernel version: 3.4.0-perf-gf43c3d9
Build Number: JWR66Y
td...@gmail.com <td...@gmail.com> #80
this is a major issue and no matter what there are still a few millions with Jelly bean, i dont understand why most of the Apps didnt release a patched version for the meanwhile, the patch is very simple, you should add Catch when listening to the clipboard , the pasted value will be waiting in the CLIP_BOARD var.
i did it for my app and although it is a major bug the simple fix managed to make me forget and forgive to Google. :)
i did it for my app and although it is a major bug the simple fix managed to make me forget and forgive to Google. :)
jo...@gmail.com <jo...@gmail.com> #81
Listener is not fired and after using it system apps and contextual action bar will crash. That is my code, and I never see this log msg.
@Override
public void onCreate() {
super.onCreate();
try {
ClipboardManager clipBoard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
clipBoard.addPrimaryClipChangedListener(this);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void onPrimaryClipChanged() {
Log.d("ClipboardMonitorService", "onPrimaryClipChanged");
readClipboard();
}
Since you won't update Galaxy Nexus to 4.4 as I suspected... then please at least release 4.3.1 to Galaxy Nexus because a lot of ppl will still use it.
@Override
public void onCreate() {
super.onCreate();
try {
ClipboardManager clipBoard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
clipBoard.addPrimaryClipChangedListener(this);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void onPrimaryClipChanged() {
Log.d("ClipboardMonitorService", "onPrimaryClipChanged");
readClipboard();
}
Since you won't update Galaxy Nexus to 4.4 as I suspected... then please at least release 4.3.1 to Galaxy Nexus because a lot of ppl will still use it.
cb...@gmail.com <cb...@gmail.com> #82
Hi there,
In the beginning I could also paste the text from clipboard even after the app having force closed, but I am in a quite inconvenient situation now, as I can't copy ANYTHING by now.
Excuse me, but is this right? It is like I'd have a car with only 3 tyres. Omg..
Nexus 4 4.3 JWR66Y Unrooted, Locked, full factory phone..
In the beginning I could also paste the text from clipboard even after the app having force closed, but I am in a quite inconvenient situation now, as I can't copy ANYTHING by now.
Excuse me, but is this right? It is like I'd have a car with only 3 tyres. Omg..
Nexus 4 4.3 JWR66Y Unrooted, Locked, full factory phone..
ev...@gmail.com <ev...@gmail.com> #83
Guys, the issue solved itself as it seems.
I was just about to do a factory reset (backed up everything to PC), then before I would reset the thing, I tried copying again and it worked o_0
I was just about to do a factory reset (backed up everything to PC), then before I would reset the thing, I tried copying again and it worked o_0
te...@gmail.com <te...@gmail.com> #84
Is this issue the same as a problem I'm having here?:
I am using Tasker to collect a Voice Search %CLIP, however when I run Voice Search in "Free form" nothing is sent to the clipboard... Is this a problem with the clipboard or a problem with Voice Search?
Any help would be much appreciated... I want my phone to be able to record speech to text in the clinical setting to avoid transmission of diseases from patient to patient and aid my charting.
I am using Tasker to collect a Voice Search %CLIP, however when I run Voice Search in "Free form" nothing is sent to the clipboard... Is this a problem with the clipboard or a problem with Voice Search?
Any help would be much appreciated... I want my phone to be able to record speech to text in the clinical setting to avoid transmission of diseases from patient to patient and aid my charting.
ni...@teknister.nu <ni...@teknister.nu> #85
Hello,
I inform this happens also on Samsung Galaxy Tab 2 10 1.
I inform this happens also on Samsung Galaxy Tab 2 10 1.
ki...@gmail.com <ki...@gmail.com> #86
[Comment deleted]
zp...@gmail.com <zp...@gmail.com> #87
Happening on Nexus 7
ca...@gmail.com <ca...@gmail.com> #88
[Comment deleted]
is...@gmail.com <is...@gmail.com> #89
This looks to be resolved in Android 4.4
It is now working fine again on my Nexus 5 with Android 4.4.
It is now working fine again on my Nexus 5 with Android 4.4.
da...@googlemail.com <da...@googlemail.com> #90
Copy clip doesn't cause a crash, rather it just fails to work. In older Android versions it was a simple long press that would result in the capture and manipulation of whatever you were trying to copy. Since I got my Galaxy S4 a month ago (and whatever version of Android it was on until the other day when it went to ver 4.3) long pressing only causes a pop up of paste and clipboard. EPIC FAIL!!!!!!!!
jo...@gmail.com <jo...@gmail.com> #91
[Comment deleted]
da...@googlemail.com <da...@googlemail.com> #92
"For me the culprit turned out to be the otherwise excellent ConvertIt! Pro Unit Converter. It has a "Copy-Convert" function which evidently watches the clipboard. You can turn this off in the settings."
ConvertIt! Is the problem for me! Deactivated...reboot...solved! Thxxxx!!!!
ConvertIt! Is the problem for me! Deactivated...reboot...solved! Thxxxx!!!!
zp...@gmail.com <zp...@gmail.com> #93
[Comment deleted]
jo...@gmail.com <jo...@gmail.com> #94
Not crashing anymore after removing convertit ... Thank capuanof...@gmail.com
zp...@gmail.com <zp...@gmail.com> #95
Indeed, the ConvertIt app was the culprit. After removing the app from my phone and rebooting, the problem went away.
Did someone contact the ConvertIt developers to let them know?
Did someone contact the ConvertIt developers to let them know?
bu...@gmail.com <bu...@gmail.com> #96
Does anyone know a way to programmatically check whether a device is potentially affected by this bug? I want to warn the user before setting the primary clip listener, but only if necessary. I know that some 4.3 devices are not affected.
br...@gmail.com <br...@gmail.com> #97
NotificationManager issue mentioned in #48 and #50 happens also on Galaxy S IV:
Device: SCH-R970
API Level: 18
Build: JSS15J.R970TYUEMK2
Device: SCH-R970
API Level: 18
Build: JSS15J.R970TYUEMK2
br...@gmail.com <br...@gmail.com> #98
So no "fix" 4 gnex ryt?
cb...@gmail.com <cb...@gmail.com> #99
Steps to reproduce this bug after Chrome for Android has crashed before.
1. Just copy any text. See if there's a prompt saying "Failed to copy to clipboard."
2. If yes, just copy the URL. It will definitely crash.
Always happen when I'm copy/pasting news articles to my forums every single time.
1. Just copy any text. See if there's a prompt saying "Failed to copy to clipboard."
2. If yes, just copy the URL. It will definitely crash.
Always happen when I'm copy/pasting news articles to my forums every single time.
aj...@gmail.com <aj...@gmail.com> #100
A lot of #48 and #50 in my app's Google Play crash reports.
I guess APP_OPS was not intended to be a public facing feature, but who's going to explain that to my users?
java.lang.SecurityException: uid 10210 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:338)
at android.app.NotificationManager.notify(NotificationManager.java:139)
at android.app.NotificationManager.notify(NotificationManager.java:112)
Devices:
Galaxy Note 10.1 2014 Edition
Galaxy Note3 (hlte)
Galaxy Note3 (hlteatt)
Galaxy Note3 (hltevzw)
Galaxy Note3 (hltecan)
Galaxy S4 (ja3g)
Galaxy S4 (jfltevzw)
Galaxy S4 (jflte)
Galaxy S4 (jfltetmo)
All with 4.3
Think I see a pattern here.
How much longer will Google allow Samsung to screw up the operating system with its "enhancements" and "modifications?"
This has been creating enormous pain for third party developers, for years, and clearly the end users are affected too ("my new expensive Android phone keeps crashing"), no?
If the CTS is not a suitable match for the "creativity" of Samsung's firmware developers, maybe Google needs to have a few people just for this: 1) testing 2) reviewing source code 3) whatever else is necessary to improve the situation?
I guess APP_OPS was not intended to be a public facing feature, but who's going to explain that to my users?
java.lang.SecurityException: uid 10210 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:338)
at android.app.NotificationManager.notify(NotificationManager.java:139)
at android.app.NotificationManager.notify(NotificationManager.java:112)
Devices:
Galaxy Note 10.1 2014 Edition
Galaxy Note3 (hlte)
Galaxy Note3 (hlteatt)
Galaxy Note3 (hltevzw)
Galaxy Note3 (hltecan)
Galaxy S4 (ja3g)
Galaxy S4 (jfltevzw)
Galaxy S4 (jflte)
Galaxy S4 (jfltetmo)
All with 4.3
Think I see a pattern here.
How much longer will Google allow Samsung to screw up the operating system with its "enhancements" and "modifications?"
This has been creating enormous pain for third party developers, for years, and clearly the end users are affected too ("my new expensive Android phone keeps crashing"), no?
If the CTS is not a suitable match for the "creativity" of Samsung's firmware developers, maybe Google needs to have a few people just for this: 1) testing 2) reviewing source code 3) whatever else is necessary to improve the situation?
jo...@gmail.com <jo...@gmail.com> #101
I just bought an HP Slate 21 Pro for which the latest Android is 4.3 and it is afflected with the same bug. Once this is triggered I have to reboot to safely copy again.
I expect the chance that HP will provide an OS update is negliable. Is there a way or an app I can run as a user to find out which app has added a listener so a user can work around the problem?
I expect the chance that HP will provide an OS update is negliable. Is there a way or an app I can run as a user to find out which app has added a listener so a user can work around the problem?
ma...@gmail.com <ma...@gmail.com> #102
[Comment deleted]
me...@jasonlanders.net <me...@jasonlanders.net> #103
[Comment deleted]
ma...@gmail.com <ma...@gmail.com> #104
[Comment deleted]
sm...@gmail.com <sm...@gmail.com> #105
any update on this ?
te...@gmail.com <te...@gmail.com> #106
What's happen to my mobile?
te...@gmail.com <te...@gmail.com> #107
The problem is still present on Galaxy nexus 4.3.
BUT, I do not use clipboard listener. note that I do use OnEditorActionListener.
the bug happen when opening the clipboard context menu (long press). It happen only once in a while, not always.
stack:
java.lang.SecurityException: uid 10069 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.content.IClipboard$Stub$Proxy.setPrimaryClip(IClipboard.java:171)
at android.content.ClipboardManager.setPrimaryClip(ClipboardManager.java:125)
at android.widget.TextView.setPrimaryClip(TextView.java:8466)
at android.widget.TextView.onTextContextMenuItem(TextView.java:8221)
at android.widget.Editor$SelectionActionModeCallback.onActionItemClicked(Editor.java:2818)
at com.android.internal.policy.impl.PhoneWindow$DecorView$ActionModeCallbackWrapper.onActionItemClicked(PhoneWindow.java:2569)
at com.android.internal.view.StandaloneActionMode.onMenuItemSelected(StandaloneActionMode.java:133)
at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:735)
at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:152)
at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:874)
at com.android.internal.view.menu.ActionMenuView.invokeItem(ActionMenuView.java:547)
at com.android.internal.view.menu.ActionMenuItemView.onClick(ActionMenuItemView.java:115)
at android.view.View.performClick(View.java:4240)
at android.view.View$PerformClick.run(View.java:17721)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5103)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
BUT, I do not use clipboard listener. note that I do use OnEditorActionListener.
the bug happen when opening the clipboard context menu (long press). It happen only once in a while, not always.
stack:
java.lang.SecurityException: uid 10069 does not have android.permission.UPDATE_APP_OPS_STATS.
at android.os.Parcel.readException(Parcel.java:1431)
at android.os.Parcel.readException(Parcel.java:1385)
at android.content.IClipboard$Stub$Proxy.setPrimaryClip(IClipboard.java:171)
at android.content.ClipboardManager.setPrimaryClip(ClipboardManager.java:125)
at android.widget.TextView.setPrimaryClip(TextView.java:8466)
at android.widget.TextView.onTextContextMenuItem(TextView.java:8221)
at android.widget.Editor$SelectionActionModeCallback.onActionItemClicked(Editor.java:2818)
at com.android.internal.policy.impl.PhoneWindow$DecorView$ActionModeCallbackWrapper.onActionItemClicked(PhoneWindow.java:2569)
at com.android.internal.view.StandaloneActionMode.onMenuItemSelected(StandaloneActionMode.java:133)
at com.android.internal.view.menu.MenuBuilder.dispatchMenuItemSelected(MenuBuilder.java:735)
at com.android.internal.view.menu.MenuItemImpl.invoke(MenuItemImpl.java:152)
at com.android.internal.view.menu.MenuBuilder.performItemAction(MenuBuilder.java:874)
at com.android.internal.view.menu.ActionMenuView.invokeItem(ActionMenuView.java:547)
at com.android.internal.view.menu.ActionMenuItemView.onClick(ActionMenuItemView.java:115)
at android.view.View.performClick(View.java:4240)
at android.view.View$PerformClick.run(View.java:17721)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5103)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
ji...@gmail.com <ji...@gmail.com> #108
Issue still current, occurring on HP Slatebook X2.
th...@gmail.com <th...@gmail.com> #109
Stock 4.2.1 on Nexus 4 here. Notice it most in my car with Chimes (Blink 182 =)
at...@gmail.com <at...@gmail.com> #110
Still a noticeable tinny sound with stock 4.2.2 on both my Galaxy Nexus and Nexus 7. Never encountered it with 4.1.
cb...@gmail.com <cb...@gmail.com> #111
#110...not what I wanted to hear. Is there still compression in the upper frequencies on 4.2.2.
sm...@gmail.com <sm...@gmail.com> #112
#110.... bad news! I was really looking forward to 4.2.2 to have this resolved. Seriously Google?
I don't think this is as highly reported simply because people probably don't know what good quality sound is. It's seriously frustrating.
I don't think this is as highly reported simply because people probably don't know what good quality sound is. It's seriously frustrating.
ma...@gmail.com <ma...@gmail.com> #113
#110 - i'm gonna flip my shit if this isn't resolved in 4.2.2. I was hoping all I had to do was wait for CM to merge 4.2.2 to fix this issue. I'm hoping you're mistaken!
yu...@gmail.com <yu...@gmail.com> #114
I tested with a bluetooth adapter and the Nexus 7 with 4.2.2 in my car. I can confirm that this issue still exists. It is not as bad as before, but it is still there.
me...@gmail.com <me...@gmail.com> #115
Unfortunately, distortion in the high frequencies has not been fixed with 4.2.2. Sound quality still sounds like shit. This is really upsetting. I miss streaming music through Bluetooth. I also have to ask, how have Google engineers not noticed the poor sound quality? It used to sound fantastic before.
cb...@gmail.com <cb...@gmail.com> #116
I guess I am stuck on 4.1.2 a little longer. Come on Google!
te...@gmail.com <te...@gmail.com> #117
Has anyone upgraded to 4.2.2 and noticed an improvement?
cb...@gmail.com <cb...@gmail.com> #118
[Comment deleted]
cb...@gmail.com <cb...@gmail.com> #119
Can verify that Bluetooth still sounds distorted in 4.2.2. Don't notice an improvement.
ev...@gmail.com <ev...@gmail.com> #120
Updated to 4.2.2 yesterday, and everything seems to have been fixed.
ma...@gmail.com <ma...@gmail.com> #121
Updated to 4.2.2. Don't notice an improvement.
cb...@gmail.com <cb...@gmail.com> #122
#120 This issue is with the quality of sound. Not the dropping the connection. I updated to 4.2.2 and didn't notice any improvement. Still clipping in the high frequencies. Hook your phone/tablet up to a decent stereo and you will notice it. Listen to something with a lot of high frequencies. Cymbal crashes and splashes along with high hat work really accentuate the distortion.
da...@gmail.com <da...@gmail.com> #123
with nexus 7, android 4.2.2 and creative bluetooh speaker the issue don't fixed :(
ag...@gmail.com <ag...@gmail.com> #124
Galaxy Nexus, 4.2.2, still disappointing bluetooth audio streaming quality. I was sure that this issue would be fixed with this update. I miss my neo v. Is there any way to fix this?
gh...@gmail.com <gh...@gmail.com> #125
Just upgraded android to 4.2.2 on Nexus 4, having same issues - crackling sound from speaker during phone calls (without bt headset). Disappointing - hope it's fixed soon. What is the best way of getting Google's attention on this?
dy...@gmail.com <dy...@gmail.com> #126
Urgh, 4.2.2 on GN still not fixed. Audio still sounds terribad.
cb...@gmail.com <cb...@gmail.com> #127
124. The only way that I know is to revert to 4.1.2,which isn't even an option for Nexus 4 users.
ch...@gmail.com <ch...@gmail.com> #128
I just upgraded my Galaxy Nexus to 4.2.2 and can also confirm that high-frequency clipping and distortion is still present. I love Bluetooth streaming in my car but 4.2 has made it unusable. No amount of volume leveling on either phone or stereo resolves the issue either.
in...@gmail.com <in...@gmail.com> #129
Just got a nexus 4. The quality of music via bluetooth is really bad. Please help us google! It sounds like certain frequencies crackle.
sm...@gmail.com <sm...@gmail.com> #130
Just installed a 4.2.2 ROM. I can confirm what the others have said.... the crackle/distortion is still present. It doesn't seem better to me, unlike what a few others have said. You've got to be kidding me Google.
ca...@gmail.com <ca...@gmail.com> #131
Come on....this should be fixed by now!!!
ca...@gmail.com <ca...@gmail.com> #132
Un frikkin believable. I waited for this update on my N4 and the bluetooth audio static is still there. I guess I just pissed away $375. Looks like Apple that I despise is my only alternative or revert to an android device that will run 4.1.2. Sad sad sad for a multi BILLION dollar company.
cb...@gmail.com <cb...@gmail.com> #133
How is the priority level raised with issues like this one. Of the bugs in 4.2.2, I have to imagine this is fairly high up the list.
ni...@teknister.nu <ni...@teknister.nu> #134
WTF! I thought 4.2.2 would fix this!
Come on Google!!!!!
Why oh why did I replace my iphone with this crappy android shit. Well, maybe you are not supposed to listen to music on your android smartphone?
Come on Google!!!!!
Why oh why did I replace my iphone with this crappy android shit. Well, maybe you are not supposed to listen to music on your android smartphone?
at...@gmail.com <at...@gmail.com> #135
It stills disconnect also at least after turning on/off airplane mode. Tried now for 2 days. Turn on airplane mode for the night turning off in the morning. Connect BT headset with phone it disconnects randomly and have to turn/off/on both the headset and bt on the phone in order for it to work again until the next time..:( I didn't have any of these problems with 4.1.2. (Galaxy NExus 4.2.2 with Nokia BH-218)
ee...@gmail.com <ee...@gmail.com> #136
I have updated my Galaxy NExus from 4.2.1 to 4.2.2 but while I had no problems with 4.2.1 connecting and using it with my car (a 2012 Renault Megane), now i do and the bluetooth stack seems to hang. Usually I have to disable bluetooth and enable it again to make ik connect. Sometimes I lose connection, and other times I still appear to be connected even though I'm miles away from my car.
Biggest problem ( apart from not being able to properly using bluetooth) is this bluetooth stack hanging seems to be related to wakelocks (12 hours and only 20% battery left. This is with only 1,5 hours screen time but with android OS wakelocks for close to 9 hours.
Biggest problem ( apart from not being able to properly using bluetooth) is this bluetooth stack hanging seems to be related to wakelocks (12 hours and only 20% battery left. This is with only 1,5 hours screen time but with android OS wakelocks for close to 9 hours.
cb...@gmail.com <cb...@gmail.com> #137
#136 This thread is about the bluetooth quality. More specifically, the clipping in the high frequencies that seems to effect every 4.2+ device. People who aren't complaining simply don't notice it. (aka. Having a tin ear)
jo...@gmail.com <jo...@gmail.com> #138
On my Nexus 7 on 4.2.2 the Bluetooth audio in the car still does the hiccup/hesitation, but I would say it's not as frequent as before...I can go 5 or 10 minutes in between hiccups. with 4.2.1 it was every few seconds. On 4.1 it was rare when the sound did this hesitation/hiccup.
JF
JF
de...@gmail.com <de...@gmail.com> #139
[Comment deleted]
de...@gmail.com <de...@gmail.com> #140
The same issue here after flashing 4.2.1 rom on ONE X. I miss BlueZ BT stack, the new one - rewritten by Google is cr*p :(( Come on Google, my 8 years old Nokia streams cristal clear audio! :(
pe...@gmail.com <pe...@gmail.com> #141
This thread is about problems with audio QUALITY! Please report your stuttering issues in the respective thread ( http://code.google.com/p/android/issues/detail?id=39633 ) and do not flood this one.
sh...@gmail.com <sh...@gmail.com> #142
Cymbals are terrible splashing. Tought 4.2.2 would solve the problem, but it didin't.
bu...@gmail.com <bu...@gmail.com> #143
I was hoping this was fixed with 4.2.2 as well, and still no go.
I've found a situation that makes the problem worse than music: my wife's bluetooth headset lets road noise through, and that ends up getting amplified so much that it sounds as if she's talking through a walkie talkie she swallowed, drowned out by lots of static. It sounds fine if I listen through the phone speaker.
This isn't a mere inconvenience, and it needs to get fixed.
I've found a situation that makes the problem worse than music: my wife's bluetooth headset lets road noise through, and that ends up getting amplified so much that it sounds as if she's talking through a walkie talkie she swallowed, drowned out by lots of static. It sounds fine if I listen through the phone speaker.
This isn't a mere inconvenience, and it needs to get fixed.
sv...@gmail.com <sv...@gmail.com> #144
My Nexus 4 has been updated to 4.2.2. I cannot connect to my toyota camry. I am highly inconvenienced as I cannot take phone calls.
dd...@vidsolbach.de <dd...@vidsolbach.de> #145
I have this Issue on a SGS2 running 4.2.2
(CM10.1 nightly as of 16.2.2013)
The issue is there since quite some time, I can't remember exactly when it started.
Symptoms:
Several Persons I talked to through my bluetooth headset reported that they receive very low voice quality. "as if it comes from a 1970s transistor radio" describes it best.
Also "my wife's bluetooth headset lets road noise through, and that ends up getting amplified so much that it sounds as if she's talking through a walkie talkie she swallowed" sounds like an appropriate description.
(CM10.1 nightly as of 16.2.2013)
The issue is there since quite some time, I can't remember exactly when it started.
Symptoms:
Several Persons I talked to through my bluetooth headset reported that they receive very low voice quality. "as if it comes from a 1970s transistor radio" describes it best.
Also "my wife's bluetooth headset lets road noise through, and that ends up getting amplified so much that it sounds as if she's talking through a walkie talkie she swallowed" sounds like an appropriate description.
ri...@gmail.com <ri...@gmail.com> #146
Galaxy Nexus user confirms the 4.2.2 did NOT fix the quality issue with A2DP streaming.
Restoring (again) back to 4.1.2...
Restoring (again) back to 4.1.2...
st...@gmail.com <st...@gmail.com> #147
HTC One XL with Samsung HS3000 apt-x bluetooth headset and Shure SE215s, sounded as clear as a wired connection on 4.1.2. Updated to 4.2.1 and it's now unlistenable.
Given that 4.2.2 on my Nexus 7 has the same problem, and seeing how long it takes for even minor Android updates to filter down non-Nexus devices, even via custom ROMs, I'm not optimistic about seeing a fix any time soon.
4.2.3, please?
Given that 4.2.2 on my Nexus 7 has the same problem, and seeing how long it takes for even minor Android updates to filter down non-Nexus devices, even via custom ROMs, I'm not optimistic about seeing a fix any time soon.
4.2.3, please?
ju...@gmail.com <ju...@gmail.com> #148
Distorted high frequency in music, like in high vocals and cymbals. Using Galaxy Nexus 4.2.2 with Skoda Superb car audio (Amundsen+). E.g., Boston - More Than a Feeling at 0:50 when the chorus starts.
te...@gmail.com <te...@gmail.com> #149
My Nexus 4 was out for repairs for the past few weeks, so I only got to upgrade to 4.2.2 last night. I can also confirm that Bluetooth Audio quality still has the same distorted sound for high frequency music such as high vocals & cymbal crashes.
Matthew Xie, this defect has been assigned to you for over 3 months. Could you maybe get around to fixing it at some point?
Matthew Xie, this defect has been assigned to you for over 3 months. Could you maybe get around to fixing it at some point?
ma...@googlemail.com <ma...@googlemail.com> #150
Same problem here with LG Nexus 4, distorted sounds on my car (Peugeot)
Please fix! :(
Please fix! :(
dj...@gmail.com <dj...@gmail.com> #151
I grew tired of this issue keeping me from retiring my Android 4.1 ROM, so I started looking into it. There seems to be *2* problems with bluedroid A2DP when compared with Android 4.1's blue-z implementation.
The first is the calculation used for the bitpool size. bluedroid is reverse engineering this value based on a default and quite arbitrary quality level, which is set to MEDIUM (229) instead of HIGH (328) for the 44.1Khz sample rate. This can be seen in the external/bluetooth/bluedroid/btif/src/btif_media_task.c file [android-4.2.2_r1 branch] -- find "DEFAULT_SBC_BITRATE". Blue-Z would use a bitpool of 53 for stereo A2DP, bluedroid ends up using 31, and the sound quality suffers greatly .. just like the old days.
Based on the A2DP spec, the bitpool for JOINT_STEREO "Medium Quality" at 44.1Khz should also be 35 rather than 31, but that's not really important :) My proposed fix for this part is to change that DEFAULT_SBC_BITRATE value in btif_media_task.c to 328. This will cause the resulting bitpool calculation to become 53, which is now correct for the default 44.1Khz sample rate. [This of course doesn't help anyone that isn't compiling from AOSP ... sorry]
The second part is the gain/output volume. It's notably higher than it was in Android 4.1, which causes clipping and distortion, at least on my A2DP receiver. I've found that setting the A2DP volume (which will be remembered by Android) to around 80% will provide the same output levels as Android 4.1 did at maximum volume. I haven't really looked into this part any further yet, but my guess is that it's either a limitation of my A2DP receiver and not really a problem OR it's another very simple fix once somebody smart at Google looks into it.
The big big big improvement comes from changing that simple quality constant, though. The secondary issue is quite easy to work around ... just turn the volume up until it clips, then back it off!
The first is the calculation used for the bitpool size. bluedroid is reverse engineering this value based on a default and quite arbitrary quality level, which is set to MEDIUM (229) instead of HIGH (328) for the 44.1Khz sample rate. This can be seen in the external/bluetooth/bluedroid/btif/src/btif_media_task.c file [android-4.2.2_r1 branch] -- find "DEFAULT_SBC_BITRATE". Blue-Z would use a bitpool of 53 for stereo A2DP, bluedroid ends up using 31, and the sound quality suffers greatly .. just like the old days.
Based on the A2DP spec, the bitpool for JOINT_STEREO "Medium Quality" at 44.1Khz should also be 35 rather than 31, but that's not really important :) My proposed fix for this part is to change that DEFAULT_SBC_BITRATE value in btif_media_task.c to 328. This will cause the resulting bitpool calculation to become 53, which is now correct for the default 44.1Khz sample rate. [This of course doesn't help anyone that isn't compiling from AOSP ... sorry]
The second part is the gain/output volume. It's notably higher than it was in Android 4.1, which causes clipping and distortion, at least on my A2DP receiver. I've found that setting the A2DP volume (which will be remembered by Android) to around 80% will provide the same output levels as Android 4.1 did at maximum volume. I haven't really looked into this part any further yet, but my guess is that it's either a limitation of my A2DP receiver and not really a problem OR it's another very simple fix once somebody smart at Google looks into it.
The big big big improvement comes from changing that simple quality constant, though. The secondary issue is quite easy to work around ... just turn the volume up until it clips, then back it off!
sm...@gmail.com <sm...@gmail.com> #152
@ #151:
I changed it in the source for AOKP. I used Task's build for my i747 device, and he builds from AOKP. I'm still trying to get used to github..... but hopefully I submitted the patch correctly.
I changed it in the source for AOKP. I used Task's build for my i747 device, and he builds from AOKP. I'm still trying to get used to github..... but hopefully I submitted the patch correctly.
ni...@gmail.com <ni...@gmail.com> #153
Google you need to fix this. Audio quality is unbearable. Can't make car calls anymore.
ar...@gmail.com <ar...@gmail.com> #154
Another victim here. Resorting to my CDs now while I'm driving. Looking to downgrade to 4.1 just for this.
dj...@gmail.com <dj...@gmail.com> #155
Re #151 (also me)
I bought a new A2DP receiver (Rocketfish RF-BTR212) today and tested both my custom 4.2.2 ROMs (Verizon Fascinate and Verizon Galaxy Nexus) with the quality set to 328 and they both sound really good. It seems my statement about the gain was erroneous and it was indeed my old receiver not being able to handle whatever bluedroid is doing as compared with Blue-Z. Still a hint of scratchiness at max volume, but one tick down and it cleared up.
Anyway, I'm still pretty convinced that one setting is the ticket to resolve the bulk of the quality issue here. It's too bad that bluedroid doesn't seem to be as compatible with A2DP receivers as Blue-Z was, maybe in time.
Good luck to everyone, I hope this information has been useful and helps to lead to a real and verifiable fix from Google/Broadcom in the near future.
I bought a new A2DP receiver (Rocketfish RF-BTR212) today and tested both my custom 4.2.2 ROMs (Verizon Fascinate and Verizon Galaxy Nexus) with the quality set to 328 and they both sound really good. It seems my statement about the gain was erroneous and it was indeed my old receiver not being able to handle whatever bluedroid is doing as compared with Blue-Z. Still a hint of scratchiness at max volume, but one tick down and it cleared up.
Anyway, I'm still pretty convinced that one setting is the ticket to resolve the bulk of the quality issue here. It's too bad that bluedroid doesn't seem to be as compatible with A2DP receivers as Blue-Z was, maybe in time.
Good luck to everyone, I hope this information has been useful and helps to lead to a real and verifiable fix from Google/Broadcom in the near future.
ch...@gmail.com <ch...@gmail.com> #156
@ #151 and #155: Would you be able to provide a link to your Galaxy Nexus ROM? I'd like to test it out.
dj...@gmail.com <dj...@gmail.com> #157
Re: #156 .. certainly.
** NOTE FOR FUTURE READERS AFTER 2013-03-03: VOLATILE DOWNLOAD LINKS THAT WILL NOT EXIST FOREVER! **
Here's my latest VZW Galaxy Nexus build "kit". It's generally private and I only share for a couple co-workers, but you are welcome to it to do what you want. It's a huge download (> 500MB) since it includes the stock 4.1.1 image so they can back it out (noobs, what can you do? LOL). It's the same AOSP baseline as my "GeeWiz 4.2" baseline for the Fascinate (find on XDA if you care), just compiled for Toro. Buyer beware, ok? This isn't Cyanogenmod here, it's a fastboot-based full-wipe setup, so it may not be what you're looking for ...
http://www.mediafire.com/file/5ul18qfkmgesyda/galaxynexus-lte-djp952-20130301.zip
Given that I don't share that ROM with the public and is intended for a full-wipe scenario with fastboot over Windows, you may be happier with just the /system/lib/hw/bluetooth.default.so file itself from that build, so I zipped that up and posted it for you. Provided the ROM/build you are running is based from am AOSP 4.2.2/JDQ39 Toro build, this may be sufficient. Put the file in /system/lib/hw and then chmod it to 0644 and reboot.
http://www.mediafire.com/file/ujll8gtbhxnz32b/4.2.2-toro-aosp-bluetooth.default.so.zip
I hope this is enough to be of assistance, but I fear it may not be since every build/ROM is different. Please feel free to point the developer/compiler of the ROM you use to this very simple 1-line commit on github:https://github.com/djp952/android-platform-external-bluetooth-bluedroid/commit/2ee778598e3b2e3f826e3f6b4eeafbb11005b21b . If we're lucky, that's all they need to do to restore A2DP to its former glory. I have no delusions that this will work for every device/receiver, I just think it's a step forward.
Good luck my friend! I've been cranking A2DP on my GNex build for hours now and it's been phenomenal. I truly hope your results are the same.
** NOTE FOR FUTURE READERS AFTER 2013-03-03: VOLATILE DOWNLOAD LINKS THAT WILL NOT EXIST FOREVER! **
Here's my latest VZW Galaxy Nexus build "kit". It's generally private and I only share for a couple co-workers, but you are welcome to it to do what you want. It's a huge download (> 500MB) since it includes the stock 4.1.1 image so they can back it out (noobs, what can you do? LOL). It's the same AOSP baseline as my "GeeWiz 4.2" baseline for the Fascinate (find on XDA if you care), just compiled for Toro. Buyer beware, ok? This isn't Cyanogenmod here, it's a fastboot-based full-wipe setup, so it may not be what you're looking for ...
Given that I don't share that ROM with the public and is intended for a full-wipe scenario with fastboot over Windows, you may be happier with just the /system/lib/hw/
I hope this is enough to be of assistance, but I fear it may not be since every build/ROM is different. Please feel free to point the developer/compiler of the ROM you use to this very simple 1-line commit on github:
Good luck my friend! I've been cranking A2DP on my GNex build for hours now and it's been phenomenal. I truly hope your results are the same.
yu...@gmail.com <yu...@gmail.com> #158
#157 Thank you for your post. I set up a build environment for 4.2.2-r1 for the Nexus 4 and built an entire AOSP image with the DEFAULT_SBC_BITRATE adjustment just to get to that file. I pushed it into the path you listed on my Nexus 4, changed the permissions, and now my bluetooth no longer has the distortion at high frequencies. Sound quality is very much improved. Is it the best it can be? Who knows since Google has not released an official fix, but it sounds way better now.
I have attached the file to this post for anyone else to push to their Nexus 4. If anyone wants to try it feel free, it should work on any Nexus 4, but I am not guaranteeing that. If there is a better way to get the file out there, please let me know.
I have attached the file to this post for anyone else to push to their Nexus 4. If anyone wants to try it feel free, it should work on any Nexus 4, but I am not guaranteeing that. If there is a better way to get the file out there, please let me know.
sm...@gmail.com <sm...@gmail.com> #159
@ #157 & 158:
I pasted each of your files (one at a time, obviously) to where they should go, verified correct permissions, and definitely noticed a change. However, I get a 'popping' sound during playback (like popcorn). The audio also seems slowed down for some reason. I'm still messing with it, so I'll report back if I can fix it.
However, I am on an ATT GS3, not a nexus, so that's likely why....
I'm running an AOKP ROM (based on AOSP).
I pasted each of your files (one at a time, obviously) to where they should go, verified correct permissions, and definitely noticed a change. However, I get a 'popping' sound during playback (like popcorn). The audio also seems slowed down for some reason. I'm still messing with it, so I'll report back if I can fix it.
However, I am on an ATT GS3, not a nexus, so that's likely why....
I'm running an AOKP ROM (based on AOSP).
dj...@gmail.com <dj...@gmail.com> #160
Re #159: I looked and AOKP changed the Bluetooth code to use 48Khz as their default sampling rate rather than 44.1KHz, that's causing it to sound slow when you replace the bluetooth library file. You would need to get an unmodified A2DP audio HAL library (/system/lib/hw/audio.a2dp.default.so ) to match it, or wait until somebody has a bluetooth.default.so file with the same 48KHz sampling rate set.
It sounds like this is a generally positive change, I'm sure it won't be long at all before it becomes available for various ROMs.
It sounds like this is a generally positive change, I'm sure it won't be long at all before it becomes available for various ROMs.
ff...@gmail.com <ff...@gmail.com> #161
#158 I just tried your file into my N4, running lastest Paranoid ROM. The sound quality is better, but the 'popping' it's still there.
ve...@gmail.com <ve...@gmail.com> #162
#158
To clarify: do we need to rebuild the ROM or is it okay if we just replace the file (bluetooth.default.so ) and set the correct permissions?
Thanks heaps to everyone working on this!
To clarify: do we need to rebuild the ROM or is it okay if we just replace the file (
Thanks heaps to everyone working on this!
yu...@gmail.com <yu...@gmail.com> #163
#161, #159, #160, #161. I built it from AOSP using the full_mako lunch target (profile), so I suspect this would work best running on a stock or AOSP Nexus 4 (I am running stock, not AOSP). I'm not sure what, if any, differences Paranoid ROM or AOKP would have to cause the popping. I'm posting the audio.a2dp.default.so file that I ended up building with bluetooth file, but if this does not help, then I suspect #160 is right. The bluetooth file would need to be built with that sampling rate in mind, or just make a similar bitrate adjustment in the Paranoid and AOKP sources.
#162, if you're running AOSP or stock N4, it should be enough to just replace the file and set the permissions. That is what I did.
Side Note: if AOKP or CM10.1 are using 48khz as the default sampling rate, I would definitely ask to see if they would switch it to 44.1khz from now on. Most music is in 44.1khz and resampling to 48khz would degrade sound quality unless a high quality resampler was used (I highly doubt it is). I have found that resampling removes some of the power and impact from snare drum hits and shrinks the stereo image a bit. That's my experience at least on other devices.
#162, if you're running AOSP or stock N4, it should be enough to just replace the file and set the permissions. That is what I did.
Side Note: if AOKP or CM10.1 are using 48khz as the default sampling rate, I would definitely ask to see if they would switch it to 44.1khz from now on. Most music is in 44.1khz and resampling to 48khz would degrade sound quality unless a high quality resampler was used (I highly doubt it is). I have found that resampling removes some of the power and impact from snare drum hits and shrinks the stereo image a bit. That's my experience at least on other devices.
ch...@gmail.com <ch...@gmail.com> #164
@ #160 I swapped in your bluetooth.default.so and it sounds great. Thank you! I had been trying to find how to modify the bitpool settings everywhere, but nobody was diving deep enough to modify the .so files. I don't have that knowledge myself, so I'm glad you were able to find it. I can't understand why Google would put a lower-than-maximum value as the default.
I haven't listened enough to be able to notice a speed difference due to the sampling rate, but it the high-end distortion is completely gone.
@ #162 Replacing the file worked fine for me.
I haven't listened enough to be able to notice a speed difference due to the sampling rate, but it the high-end distortion is completely gone.
@ #162 Replacing the file worked fine for me.
da...@gmail.com <da...@gmail.com> #165
@yuxu
Thanks for your effort, your files work like a charm on my Samsung SII (AOKP 4.2.2)!
CPU usage is also in line with what it used to be on my previous ROM (ICS), and as a far as my non-musician ears can tell, there's no degradation in sound quality.
@Thread
The change seems to be pretty device-independent, so give the files in @158 and @163 a try.
Thanks for your effort, your files work like a charm on my Samsung SII (AOKP 4.2.2)!
CPU usage is also in line with what it used to be on my previous ROM (ICS), and as a far as my non-musician ears can tell, there's no degradation in sound quality.
@Thread
The change seems to be pretty device-independent, so give the files in @158 and @163 a try.
sm...@gmail.com <sm...@gmail.com> #166
Alright AOKP Users:
I have created a zip file with instructions to revert the 48khz based .so audio files back to 44.1khz so the postedbluetooth.default.so files will work properly with no popping and no slowing down of the audio. However, THERE ARE ISSUES.
I have had the A2DP audio get really distorted after a few minutes of playback. This may be related to CPU settings, though I'm not sure yet.
Also, turning off bluetooth has locked up my phone. Just hold the power button and restart. Not sure why it's ocurring....
This is a really dirty way of fixing it because I'm not terribly familiar with android yet. The original issue of distortion is gone though. I'll post back if I can fix the issues I presented that are associated with this change.
The ZIP file is posted, please read the instructions!
FYI, I'm running Task650's i747 (ATT GS3) ROM.
I have created a zip file with instructions to revert the 48khz based .so audio files back to 44.1khz so the posted
I have had the A2DP audio get really distorted after a few minutes of playback. This may be related to CPU settings, though I'm not sure yet.
Also, turning off bluetooth has locked up my phone. Just hold the power button and restart. Not sure why it's ocurring....
This is a really dirty way of fixing it because I'm not terribly familiar with android yet. The original issue of distortion is gone though. I'll post back if I can fix the issues I presented that are associated with this change.
The ZIP file is posted, please read the instructions!
FYI, I'm running Task650's i747 (ATT GS3) ROM.
sm...@gmail.com <sm...@gmail.com> #167
[Comment deleted]
sm...@gmail.com <sm...@gmail.com> #168
To add to my above post..
To fix the issue of the distorted audio, increase the buffer size on your music playback application. I also increased my minimum CPU freq, but I think the increase in buffer size fixed it.
It may also help to increase the priority of the audio stream.
I user PowerAmp, and I set the buffer size to "Huge (+750ms)". I haven't had any distortion since that change.
To fix the issue of the distorted audio, increase the buffer size on your music playback application. I also increased my minimum CPU freq, but I think the increase in buffer size fixed it.
It may also help to increase the priority of the audio stream.
I user PowerAmp, and I set the buffer size to "Huge (+750ms)". I haven't had any distortion since that change.
sm...@gmail.com <sm...@gmail.com> #169
To yet again add to my above post:
I spoke to soon. I'm still getting distortion after a few minutes of playback. Pausing for at least 5 seconds and playing again temporarily fixes it. It seems like a buffer issue, but I can't increase the buffer past 750ms in power amp.
It isn't app specific either. WinAmp does the same. I think it has to do with the higher bitrate implemented by the change to the bluetooth file in the first place.
I spoke to soon. I'm still getting distortion after a few minutes of playback. Pausing for at least 5 seconds and playing again temporarily fixes it. It seems like a buffer issue, but I can't increase the buffer past 750ms in power amp.
It isn't app specific either. WinAmp does the same. I think it has to do with the higher bitrate implemented by the change to the bluetooth file in the first place.
ga...@gmail.com <ga...@gmail.com> #170
[Comment deleted]
[Deleted User] <[Deleted User]> #171
Using files from post #158 and #163 fixed things for me on my Galaxy Nexus with RootBox ROM.
Brilliant... and what a relief! Finally the dull sound is gone and I can enjoy listening to music again using my bluetooth headset (SE MW-600 in my case).
Many thanks to the poster for the fix!
Brilliant... and what a relief! Finally the dull sound is gone and I can enjoy listening to music again using my bluetooth headset (SE MW-600 in my case).
Many thanks to the poster for the fix!
te...@gmail.com <te...@gmail.com> #172
If Android users can find and release a fix in less than a week, why can't Google? Please release an official fix for those of us who aren't technically capable enough to implement the above fix!
cb...@gmail.com <cb...@gmail.com> #173
Looks like akellar has submitted a commit that has been merged into AOKP. I have been using his ROM (on xda and rootwiki, with cherry picks, including the bluetooth fix) since yesterday on my verizon gnex and the problem is gone. Looks like the problem should be gone in any AOKP ROM built after today. Hopefully. Good to finally be on 4.2.2.
cb...@gmail.com <cb...@gmail.com> #174
Also, I just want to add that I ha entry noticed any popping. Only listened in my car with road noise, and I am not sure how prevalent it is supposed to be. Also haven't noticed music slow down, but again haven't listened that much, just enough to realize the high end distortion is gone.
sm...@gmail.com <sm...@gmail.com> #175
[Comment deleted]
sm...@gmail.com <sm...@gmail.com> #176
Hooray, my branch got merged.
Task650's ROM had a new release today which incorporates the change in AOKP.
http://forum.xda-developers.com/showthread.php?t=1766684
Downloading and flashing as I type this....
Task650's ROM had a new release today which incorporates the change in AOKP.
Downloading and flashing as I type this....
be...@bekit.net <be...@bekit.net> #177
Michael's change has been merged into the CyanogenMod 10.1 sources as well. This should be resolved for all future nightlies. Thanks, Michael!
bu...@gmail.com <bu...@gmail.com> #178
@ #177, the problem is that the sampling rate in CM 10.1 is still 48khz. Either the sampling rate needs to get dropped back to 44.1khz, or the bitrate update needs to be increased to 345kbps.
dj...@gmail.com <dj...@gmail.com> #179
Re #177, you're quite welcome! I'm all smiles for the past couple days, it's nice to be able to do something that helps a wide audience. Even if it's not a complete fix for everyone, at least we made some progress on our own here, and may be pointing Google in the right direction for a full set of fixes.
Re #178: I checked the A2DP spec, and while 345kbps is listed as the value for High Quality @ 48KHz, the way bluedroid uses that particular constant we've been changing only affects the calculation for the bitpool size. I may not have the latest spec (I'm looking at v10), but it says the bitpool for High Quality @ 48Khz is actually *smaller* than it would be for 44.1Khz. 51 instead of 53. Changing the constant to 345 will yield a slightly larger bitpool setting, but that may not be of any value to the audio quality for that sample rate. It's certainly worth trying, of course!
Re #178: I checked the A2DP spec, and while 345kbps is listed as the value for High Quality @ 48KHz, the way bluedroid uses that particular constant we've been changing only affects the calculation for the bitpool size. I may not have the latest spec (I'm looking at v10), but it says the bitpool for High Quality @ 48Khz is actually *smaller* than it would be for 44.1Khz. 51 instead of 53. Changing the constant to 345 will yield a slightly larger bitpool setting, but that may not be of any value to the audio quality for that sample rate. It's certainly worth trying, of course!
bu...@gmail.com <bu...@gmail.com> #180
@ #179, thanks for clarifying.
And a big thanks to both #179 and #177 for their work making the improvement and getting it merged into CM 10.1, respectively :)
And a big thanks to both #179 and #177 for their work making the improvement and getting it merged into CM 10.1, respectively :)
de...@gmail.com <de...@gmail.com> #181
Confirmed! CM 10.1 is streaming crystal clear audio!
ma...@android.com <ma...@android.com> #182
Hi think you for the invaluable discussion and suggestion here. Please keep it going!
We are also experimenting the changes here, like 229 to 328 - 53 bit pool. But we have to be careful not to introduce the stuttering problem, discussed in another thread. More testing and optimizing...
In short, we are working on it.
We are also experimenting the changes here, like 229 to 328 - 53 bit pool. But we have to be careful not to introduce the stuttering problem, discussed in another thread. More testing and optimizing...
In short, we are working on it.
br...@gmail.com <br...@gmail.com> #183
Has this change come through to CM10.1 M2? I'm downloading a rom now based on this (dated 6th of MAR) for my Nexus7 so hopefully this will fix :)
br...@gmail.com <br...@gmail.com> #184
I can confirm it is fixed on CM10.1 M2 !!!
Awesome work guys, sounds like 4.1 again. Very happy
Awesome work guys, sounds like 4.1 again. Very happy
te...@gmail.com <te...@gmail.com> #185
@182 - Thanks for replying Matthew! I'm glad to know you guys are working on an official fix. It appears as if the fix has been incorporated into Cyanogenmod 10.1, and no one seems to be complaining about the stuttering issue. Personally, I never experienced the stuttering ever, in any version of Android on any device.
Do you think it would make sense to check out what was done for CM 10.1, test it on your end, and then incorporate it into an official Android release?
Do you think it would make sense to check out what was done for CM 10.1, test it on your end, and then incorporate it into an official Android release?
br...@gmail.com <br...@gmail.com> #186
Just updated to 4.2.2 on my VZW GNex and noticed the BT Streaming quality issue as well. I am considering going back to 4.1.2 because of this. FIX IT GOOGLE!
ar...@gmail.com <ar...@gmail.com> #187
Those files didn't work for me. Thanks for the effort!
Galaxy Nexus GSM, Carbon-JB-1.5 ROM, 710.422.Cylon kernel.
Galaxy Nexus GSM, Carbon-JB-1.5 ROM, 710.422.Cylon kernel.
tk...@gmail.com <tk...@gmail.com> #188
te...@gmail.com <te...@gmail.com> #189
@188 I think that fix is specific to Windows phone because of registry edits. But it's very interesting to hear that other mobile operating systems are also experiencing this issue. I've heard similar problems from friends with iPhones.
Come on Google, be the first to fix this issue! How hard is it to change the sample rates?
Come on Google, be the first to fix this issue! How hard is it to change the sample rates?
bu...@gmail.com <bu...@gmail.com> #190
I'd just like to add that though music sounds incredible streaming now, low quality audio (specifically phone calls) are still horribly distorted and amplified. This change may just be a bandaid, and I hope the google engineers are looking into this case as well.
But for serious... please get AVRCP 1.3 working while you guys are tweaking this code :D
But for serious... please get AVRCP 1.3 working while you guys are tweaking this code :D
ju...@gmail.com <ju...@gmail.com> #191
Files from 158 and 163 made clear improvement on my stock rooted 4.2.2 Galaxy Nexus GSM. Just renamed old files, copied new ones using Root Explorer and set permissions to same as old files had. Then reboot.
ar...@gmail.com <ar...@gmail.com> #192
AOKP and CM10.1 fixed the issue on my GNex GSM.
k....@gmail.com <k....@gmail.com> #193
cm10.1 did not fix the audio quality. The high frequentie sounds are stil distorted
k....@gmail.com <k....@gmail.com> #194
I have to take that back.... The last nightly version sounds very very good!
k....@gmail.com <k....@gmail.com> #195
[Comment deleted]
ar...@gmail.com <ar...@gmail.com> #196
The latest ParanoidAndroid ROM works.
ap...@gmail.com <ap...@gmail.com> #197
Just upgraded to 4.2.2 on Verizon Galaxy Nexus last night and noticed the degraded sound quality this morning. Kind of discouraging that this has been going on for months. Please fix this. Running 4.2.2 JDQ39
st...@gmail.com <st...@gmail.com> #198
GS3 LTE (i9305)- moved from stock 4.1.2 to ROM4.2.2 and 2 problems have appeared:
1. headphone mic gain is horrible (http://code.google.com/p/android/issues/detail?id=41860 ), this was not an issue on the stock 4.1.1 and the upgrade to 4.1.2; i noticed this immediately after uprading to LiquidSmooth 4.2.2
2. bluetooth - as discussed in this thread it is clearly a problem related to sample rate and bit pool
Would like to see some android updates to address these 2 issues. Its clear that the issue SHOULD be fixable, as the coders from Samsung had obviously fixed it with their stock 4.1.1 and 4.1.2. Anyway have access to their code and can incorporate into the ROMs that are out there?
I'm not keen on reverting back to the stock flavour but am thinking that i have no choice as these 2 issues are deal breakers.
1. headphone mic gain is horrible (
2. bluetooth - as discussed in this thread it is clearly a problem related to sample rate and bit pool
Would like to see some android updates to address these 2 issues. Its clear that the issue SHOULD be fixable, as the coders from Samsung had obviously fixed it with their stock 4.1.1 and 4.1.2. Anyway have access to their code and can incorporate into the ROMs that are out there?
I'm not keen on reverting back to the stock flavour but am thinking that i have no choice as these 2 issues are deal breakers.
da...@googlemail.com <da...@googlemail.com> #199
@198
I don't know about 1. but 2. was not present in any Version of 4.1.x or 4.0.x be it
Samsung or Nexus devices. It was introduced in 4.2.0 with the switch to another bluetooth stack.
I don't know about 1. but 2. was not present in any Version of 4.1.x or 4.0.x be it
Samsung or Nexus devices. It was introduced in 4.2.0 with the switch to another bluetooth stack.
ar...@gmail.com <ar...@gmail.com> #200
CarbonROM also fixed this issue.
tu...@gmail.com <tu...@gmail.com> #201
Upgraded to 4.2.2 today thanks to the Verizon rollout. Bluetooth Music streaming is an integral part of my day (I'm an unlimited data plan user that streams up to 4 times daily, anywhere from 1-4 hours worth of play depending on my rides.)
The Bluetooth streaming problem is a major issue for an audiophile like myself. Stuttering is not an issue, but the scratchy paperlike audio quality is a deal breaker.
I'm extremely concerned because since I got my Galaxy nexus back in December of 2011 I've never once rooted it nor flashed it. I've waited very patiently for this update, and now that it has happened, because of Verizon's slow upgrade time I'm terrified that I'll be waiting another 6 months after its resolution for it to roll out.
Hoping for a speedy fix. Definitely a big issue for me!
The Bluetooth streaming problem is a major issue for an audiophile like myself. Stuttering is not an issue, but the scratchy paperlike audio quality is a deal breaker.
I'm extremely concerned because since I got my Galaxy nexus back in December of 2011 I've never once rooted it nor flashed it. I've waited very patiently for this update, and now that it has happened, because of Verizon's slow upgrade time I'm terrified that I'll be waiting another 6 months after its resolution for it to roll out.
Hoping for a speedy fix. Definitely a big issue for me!
ni...@gmail.com <ni...@gmail.com> #202
Yep, one of my music apps (ReLoop sequencer) outputs a staticy sound, especially when playing Bass loops. It sounds almost like off by one buffer errors. It DID NOT sound like this until after I updated to 4.2.2 this morning (Galaxy Nexus).
The app sounds correct on an old Original droid (2.2.2), and on my Galaxy Tab 10.1 (4.0.2).
It seems to be some problem with the audio buffers on 4.2.2.
ReLoop uses the AudioTrack object in Streaming mode, outputting 44100khz.
My other app, Electrum Drum, outputs at 22050Khz, and it sounds great yet. Seems like a problem with 44100Khz
The app sounds correct on an old Original droid (2.2.2), and on my Galaxy Tab 10.1 (4.0.2).
It seems to be some problem with the audio buffers on 4.2.2.
ReLoop uses the AudioTrack object in Streaming mode, outputting 44100khz.
My other app, Electrum Drum, outputs at 22050Khz, and it sounds great yet. Seems like a problem with 44100Khz
ni...@gmail.com <ni...@gmail.com> #203
Just to clarify, at 44100Khz audio output, the sound crackles.
ek...@gmail.com <ek...@gmail.com> #204
I recently upgraded to the HTC Droid DNA from the Galaxy Nexus and experienced the same high end frequency sound quality issues via bluetooth. The Droid DNA though is using 4.1.2 so this may just be an HTC issue as I know they use a different bluetooth driver. I have since returned the phone and gone back to my Galaxy Nexus. The audio was fine until today when I received the 4.2.2 update at which point I noticed the high frequency degradation in sound quality similar to that of the Droid DNA.
Music and bluetooth streaming are a huge part of my day so hopefully a quick fix is coming.
Music and bluetooth streaming are a huge part of my day so hopefully a quick fix is coming.
an...@googlemail.com <an...@googlemail.com> #205
N4 like everyone else here, please Google fix this issue it is ruining the best phone made!
dr...@gmail.com <dr...@gmail.com> #206
I had to go back to 4.1.1 because the Bluetooth audio will not stay connected in my car. I even tried a factory reset, which didn't work. The main reason I bought a smart phone was to run Pandora in the car without wires. So Verizon delayed the 4.2.2 OTA for 2 months longer than other carriers, claiming testing, and never caught the fact a fundamental piece of the phone, the Bluetooth stack, was broken. Also, anyone else notice all the GN's are getting the same build now?
wi...@gmail.com <wi...@gmail.com> #207
Confirmed along with 200+ other users who paid a lot of money for our phones. VZW Nexus upgraded to 4.2.2. Not an issue on previous build. Making me want to run over my Nexus now due to crappy A2DP audio quality. Please fix this, Google!
wi...@gmail.com <wi...@gmail.com> #208
Confirming that the combined fix of #158 and #163 resolves this issue on my recently upgraded 4.2.2 VZW Galaxy Nexus. Shame on you, Google. As a manager of software development and engineer, I am sad that a company with your resources and testing capabilities allows issues like this to remain open for 4+ months when the simple fix is vetted by community members with no action by you.
ab...@gmail.com <ab...@gmail.com> #209
Adding my 2 cents in as well that I am experiencing this Bluetooth Audio static issue as well. Google, Please Fix ASAP...
co...@gmail.com <co...@gmail.com> #210
After the installation of 4.2.2 on my Galaxy Nexus, Bluetooth did not work with car audio. While the car audio showed that it was paired with the phone, only the microphone would work occasionally. Sound came from the Galaxy Nexus. Most of the time, Bluetooth did not work at all.
te...@gmail.com <te...@gmail.com> #211
@210 - You seem to be experiencing an issue different from this one. This issue is specifically regarding poor Bluetooth audio quality on Android 4.2 and later.
Although since this affects every single device running 4.2+, as soon as you are able to fix your connection issue, you will likely find the terrible sound quality unbearable.
I mean, how could you not? Unless of course you are an Android developer, since they seem to think this is an issue that can wait 5 months.
Although since this affects every single device running 4.2+, as soon as you are able to fix your connection issue, you will likely find the terrible sound quality unbearable.
I mean, how could you not? Unless of course you are an Android developer, since they seem to think this is an issue that can wait 5 months.
da...@googlemail.com <da...@googlemail.com> #212
Are the users of bluetooth audio such a minority that google can just ignore us?
te...@gmail.com <te...@gmail.com> #213
They're not technically ignoring it. The dev assigned to this issue replied back at #182 saying they're working on it. He says they're experimenting with modifying the bit pool, but they have to be careful not to reintroduce the stuttering issue.
Personally I've never experienced stuttering with any version of Android on any device, so I'm not sure how prevalent that issue was. Maybe they could just add a toggle for the quality settings. It could be high quality by default, then toggle to lower quality if you experience stuttering.
Personally I've never experienced stuttering with any version of Android on any device, so I'm not sure how prevalent that issue was. Maybe they could just add a toggle for the quality settings. It could be high quality by default, then toggle to lower quality if you experience stuttering.
an...@gmail.com <an...@gmail.com> #214
really? issue was reported almost 6 month ago, but we still here
good job, google!
good job, google!
wg...@gmail.com <wg...@gmail.com> #215
No problem with Nexus 7 but Galaxy Nexus from V must be paired each time I drive auto. Not recognized by car after ignition off and restarted.
bs...@gmail.com <bs...@gmail.com> #216
My god! Bluetooth audio is terrible on my Nexus 4 on 4.2.2... please fix this google!
ki...@gmail.com <ki...@gmail.com> #217
Seems to be happening to my (rooted) GNex GSM model as well when paired with Jaybird's Bluebuds X earphones (crackling). I initially thought it was an unlucky purchase. After reading this thread and tested it on my iPad, audio output showed no signs of crackling noise.
Can anybody else confirm suggestion #191 solves this issue for GNex ?
Can anybody else confirm suggestion #191 solves this issue for GNex ?
wi...@gmail.com <wi...@gmail.com> #218
#217: I confirmed this in post #208 above. All is well after overwriting those files on a rooted device running 4.2.2
ki...@gmail.com <ki...@gmail.com> #219
@218 - Sweet! thanks man!! I'll try it out now :D
ni...@teknister.nu <ni...@teknister.nu> #220
For "#¤%#% sake Google! Fix this!
It's been 5 months now. Are you freaking kidding me?
It's been 5 months now. Are you freaking kidding me?
th...@gmail.com <th...@gmail.com> #221
Are there any fixes for HTC/Sense devices? I want to keep Sense but the BT Audio Streaming is too bad...
te...@gmail.com <te...@gmail.com> #222
@221 - You won't see any fixes for your non-Nexus device coming from Google. Your best bet is to bug HTC. Any fix Google implements will be delayed by your carrier and manufacturer by at least several months. That's how long it takes them to bastardize the vanilla Android interface with things like HTC Sense.
The only devices that will receive this update in a timely manner (I'm being generous with the word 'timely') will be GSM Nexus devices. CDMA Galaxy Nexus owners will likely have to wait as long as they did to get Jellybean. Verizon was incredibly late with 4.2 and I'm not sure what happened with Sprint.
The only devices that will receive this update in a timely manner (I'm being generous with the word 'timely') will be GSM Nexus devices. CDMA Galaxy Nexus owners will likely have to wait as long as they did to get Jellybean. Verizon was incredibly late with 4.2 and I'm not sure what happened with Sprint.
ry...@gmail.com <ry...@gmail.com> #223
Same problem here with Verizon Samsung Galaxy Nexus on 4.2.2. What a bummer.
cb...@gmail.com <cb...@gmail.com> #224
#223 Your choices are to go with cm or aokp on your Verizon gnex, or try changing the files mentioned above. Once you go to aokp or cm you will wonder why you waited so long. Both blow stock away with feature sets.
bn...@gmail.com <bn...@gmail.com> #225
I installed the modified libraries in #157 and #163 on my stock OTA Jelly Bean 4.2.2 and there seems to be a noticeable improvement in A2DP audio quality. There is still some aliasing in high frequencies but it's fairly slight, and over all it's much improved. There were no noticeable side effects or incompatibilities. I am running a completely stock, unmodified (until now) takju build on GSM/HSPA+ Galaxy Nexus.
ed...@yahoo.com <ed...@yahoo.com> #226
[Comment deleted]
ed...@yahoo.com <ed...@yahoo.com> #227
The new HP Slate 7 suffers from the same issue. Sounds like digital clipping to me, mostly during loud moments or high frequencies (symbols crashing). Ironically, the HP TouchPad (webos) has the same issue. An ipod touch, however, works fine on the same bluetooth speakers being used. The HP Slate 7 hasn't been rooted yet (so i can't try the proposed fixes to the bluetooth shared object).
--edfardos
--edfardos
te...@gmail.com <te...@gmail.com> #228
[Comment deleted]
te...@gmail.com <te...@gmail.com> #229
It has been almost 6 months. Could we get an update on the status of this fix? Or do you just want us to wait for the Nexus 5?
aa...@gmail.com <aa...@gmail.com> #230
I have a VZW Galaxy Nexus running 4.2.2, and I had a problem with my Bluetooth stereo headset disconnecting frequently. Also, sometimes Bluetooth would lock up while turning off, and the only solution was a reboot. I noticed some sound issues as well, but that was overshadowed by the connectivity issues. Both these other problems have been reported elsewhere by other users. I took a chance and tried implementing the fix in #158 & #163. Turns out this solved my connectivity problems! My GNex's Bluetooth is now operating as well as it did in 4.1.2.
I should also note that I'm running CyanogenMod 10.1 M3 (released 4/11/13), and although it was mentioned in other posts that CyanogenMod had incorporated the fix, I was still having these problems until I replaced the .so files myself.
Thank you so much to the users who developed this fix! It should be really embarrassing to Google that some power users were able to fix this while Google dragged their feet for months.
I should also note that I'm running CyanogenMod 10.1 M3 (released 4/11/13), and although it was mentioned in other posts that CyanogenMod had incorporated the fix, I was still having these problems until I replaced the .so files myself.
Thank you so much to the users who developed this fix! It should be really embarrassing to Google that some power users were able to fix this while Google dragged their feet for months.
pg...@gmail.com <pg...@gmail.com> #231
I have a Verizon Wireless Galaxy Nexus LTE/CDMA with stock Android 4.2.2 build JDQ39, and I was having the Bluetooth audio problem where it made a lot of music sound "raspy". I was able to place bluetooth.default.so and audio.a2dp.default.so from posts #158 and #163 into /system/lib/hw/, overwriting the files that were there, and this fixed my audio problem. Thank you yuxu...@gmail.com.
For those wondering how to go about doing this, here are some hints. I unlocked my phone using Wug's Nexus Root Toolkit a long time ago. After doing the Over The Air upgrade to 4.2.2, I rooted my phone using the Nexus Root Toolkit. I installed an app called "[root] adbd Insecure". I used an app called AirDroid to copy the above files into /sdcard/ (there are lots of other ways to do this, too). On my computer, I downloaded and extracted the ADT Bundle. I ran the adbd Insecure app on my phone, and I used the ADB tool on my computer from ADT to open a console onto my phone. Once there, I used my Linux command line know how to backup the current files in /system/lib/hw/, copy the new files from /sdcard/ to there, and make sure the file permissions were correct. Then I rebooted the phone.
For those wondering how to go about doing this, here are some hints. I unlocked my phone using Wug's Nexus Root Toolkit a long time ago. After doing the Over The Air upgrade to 4.2.2, I rooted my phone using the Nexus Root Toolkit. I installed an app called "[root] adbd Insecure". I used an app called AirDroid to copy the above files into /sdcard/ (there are lots of other ways to do this, too). On my computer, I downloaded and extracted the ADT Bundle. I ran the adbd Insecure app on my phone, and I used the ADB tool on my computer from ADT to open a console onto my phone. Once there, I used my Linux command line know how to backup the current files in /system/lib/hw/, copy the new files from /sdcard/ to there, and make sure the file permissions were correct. Then I rebooted the phone.
te...@gmail.com <te...@gmail.com> #232
Happy 6 month anniversary, Issue 36949180 .
Maybe at I/O tomorrow Google will talk about how it took 6 months to fix this one little bug.
Maybe at I/O tomorrow Google will talk about how it took 6 months to fix this one little bug.
cl...@gmail.com <cl...@gmail.com> #233
[Comment deleted]
mi...@gmail.com <mi...@gmail.com> #234
High range sounds are garbled and sound pretty terrible on my Samsung Galaxy Nexus (VZW).
Basbeand: l1515.10 V.FK01/l1515.FK02
Kernel Version: 3.0.31-g9f818de
android-build@vpbs1.mtv.corp.google.com #1
Wed Nov 28 11:20:29 PST 2012
Build Number: JDQ39
Basbeand: l1515.10 V.FK01/l1515.FK02
Kernel Version: 3.0.31-g9f818de
android-build@vpbs1.mtv.corp.google.com #1
Wed Nov 28 11:20:29 PST 2012
Build Number: JDQ39
an...@gmail.com <an...@gmail.com> #235
Have the same problem with my Galaxy s3 (SGH-I747M) Jelly bean. I can pair the device and hear music when streaming over bluetooth (car and jawbone) but soon after playing any song, it just start with these unbearable crackling noises.
a....@gmail.com <a....@gmail.com> #236
[Comment deleted]
a....@gmail.com <a....@gmail.com> #237
I just realised I have the same problem with my Galaxy Nexus with Android 4.2.2... the Bluetooth quality sucks... with Soundcloud everything sounds ok... but with Google Music the Quality is very low and there are a lot of crackling noises and breaks... even more when you use the phone for other things... Please improve this soon!!!
Thank you.
Btw... with the Nexus 7is the same bad Quality but with out the crackling noises.
Thank you.
Btw... with the Nexus 7is the same bad Quality but with out the crackling noises.
st...@gmail.com <st...@gmail.com> #238
Has anyone heard whether or not the upcoming Android 4.3 release will address this problem?
ni...@teknister.nu <ni...@teknister.nu> #239
How is 39632 a duplicate of 39633?
Issue 36949180 : Bluetooth sound quality suffer after upgrade to 4.2 with Galaxy Nexus
Issue 36949180 : 4.2.x Bluetooth audio stuttering every few seconds
Both are bluetooth issues but the symptoms are totally different.
Both are bluetooth issues but the symptoms are totally different.
da...@googlemail.com <da...@googlemail.com> #240
I really would have thought better of google.
Come on, these are clearly two different bugs.
At least give an explanation to the merge.
Come on, these are clearly two different bugs.
At least give an explanation to the merge.
te...@gmail.com <te...@gmail.com> #241
This is a completely different issue than the Bluetooth stuttering issue. This issue concerns low-quality audio on Android 4.2. I have never experienced stuttering, but the low-quality audio has been present ever since I upgraded to 4.2. Please address this issue specifically instead of merging them.
ni...@teknister.nu <ni...@teknister.nu> #242
Google! Will this be solved in 4.3 (or whatever it will be called)?
Please let us know if it's worth the wait?
Please let us know if it's worth the wait?
do...@gmail.com <do...@gmail.com> #243
Nexus 7 running 4.2.2: Cannot stream audio over BT at all. All audio is crackly and unintelligible. I tested my headset on my droid phone (which is running 2.6) and it works flawlessly. I did not try to stream audio over BT before 4.2.1 so I cannot say if it worked before then.
Please fix this issue and give us updates to let us know you're working on this?
I love Android and my N7 -- so far this is the only issue.
Please fix this issue and give us updates to let us know you're working on this?
I love Android and my N7 -- so far this is the only issue.
op...@gmail.com <op...@gmail.com> #244
I recently upgraded from a Nexus S 4G to a Nexus 4, and am now experiencing this issue. The sound quality over bluetooth has the same crackling/static noise at higher frequencies, definitely noticeable on cymbal crashes and the like.
I've come to understand that it was most likely the software version (now 4.2.2) that is causing the problem.
I notice it when connecting to my Mazda 3's bluetooth audio system for music playback. I've tested that it is indeed the bluetooth causing it by connecting via an AUX cable, which sounds just fine.
I've come to understand that it was most likely the software version (now 4.2.2) that is causing the problem.
I notice it when connecting to my Mazda 3's bluetooth audio system for music playback. I've tested that it is indeed the bluetooth causing it by connecting via an AUX cable, which sounds just fine.
pa...@gmail.com <pa...@gmail.com> #245
I built the bluetooth.default.so library with the DEFAULT_SBC_BITRATE adjustment described in #157 for the Sprint Galaxy Nexus (toroplus) running android-4.2.1_r1 (JOP40D).
ra...@gmail.com <ra...@gmail.com> #246
I just installed the stable CM 10.1 release and it still has this issue. Is there any 4.2.2 based ROM for the Galaxy Nexus that has the CD-like quality with A2DP audio that we had before 4.2?
te...@gmail.com <te...@gmail.com> #247
So will this issue be fixed in Android 4.3? It should be out before the end of July, right?
ed...@gmail.com <ed...@gmail.com> #248
[Comment deleted]
ed...@gmail.com <ed...@gmail.com> #249
I finally rooted my HP Slate7, but couldn't find bluetooth.default.so anywhere on the filesystem? HP is loading 4.1.1 at this time. Did the shared libraries go through a name change? All I see is a libbluetooth.so and very few symbols match but the size is similar.
# find / -name "bluetooth.default.so "
<nothing>
/system/lib/hw # ls
audio.a2dp.default.so gpu.rk30board.so local_time.default.so
audio.primary.default.so gralloc.default.so power.default.so
audio.primary.rk30board.so gralloc.rk30board.so power.rk30xx.so
audio_policy.default.so hwcomposer.rk30board.so sensors.rk30board.so
audio_policy.rk30board.so keystore.default.so
camera.rk30board.so lights.rk30board.so
curiously,
-edfardos
# find / -name "
<nothing>
/system/lib/hw # ls
curiously,
-edfardos
te...@gmail.com <te...@gmail.com> #250
Did anyone get 4.3 yet? Is this issue fixed?
ho...@gmail.com <ho...@gmail.com> #251
Confirmed... This issue is not fixed in today's 4.3 image for the N4.
ag...@gmail.com <ag...@gmail.com> #252
Galaxy Nexus 4.3 A2DP issue not fixed.... Goodbye Google.
ni...@teknister.nu <ni...@teknister.nu> #253
Google, you suck! I can't believe this is not fixed yet... Unacceptable...
te...@gmail.com <te...@gmail.com> #254
Over 8 months without an update or any sort of progress. 3 operating system iterations without improvement. It's time to start emailing the developers directly. So far I have found these email addresses associated with this issue. Feel free to send them your complaints directly.
jaikumarg@android.com
mattx@android.com
jbq@android.com
jaikumarg@android.com
mattx@android.com
jbq@android.com
ad...@gmail.com <ad...@gmail.com> #255
This is unreal.
#158 yuxu...@gmail.com Are you do another fix for v4.3 for the Nexus 4. Or outline how to do it? I'm up for trying.
#158 yuxu...@gmail.com Are you do another fix for v4.3 for the Nexus 4. Or outline how to do it? I'm up for trying.
te...@gmail.com <te...@gmail.com> #256
I got 4.3 this weekend and I can also confirm that the low audio quality issue has not been fixed. Although I was happy to see that track titles now appear on my car's display.
te...@gmail.com <te...@gmail.com> #257
I realize that the Android devs are hesitant to implement the fix that several users and developers have discovered, because they don't want to reintroduce the Bluetooth Audio stuttering issue.
But couldn't they implement a change to the settings where users could manually lower the quality if they experience stuttering, but still allow users to select the settings that produced crystal clear audio in Android 4.1?
But couldn't they implement a change to the settings where users could manually lower the quality if they experience stuttering, but still allow users to select the settings that produced crystal clear audio in Android 4.1?
bn...@gmail.com <bn...@gmail.com> #258
Confirming that the audio quality is still an issue in OTA 4.3 on Galaxy Nexus (maguro). Can someone who has the 4.3 AOSP source tree rebuild the two shared object files with the corrected values as djp in #151 did for 4.2.2? I was using those libs prior to the update, and the audio quality was great.
dj...@gmail.com <dj...@gmail.com> #260
Wow, when I finished building 4.3 for my VZW GNex, I was pretty freaking disappointed to see, er, hear, my/our/the fix wasn't included! Geez, I posted that back on 2/28. I followed the change for a while as it made the rounds and trust us Google -- it's good! It comes from the A2DP specification, the current default is clearly set to sub-optimal "Medium" quality (says so right in the comment).
Anyway, I'm glad to see that folks have picked it up for 4.3 and it's still working for them. I attached theaudio.a2dp.default.so and bluetooth.default.so files from my GNex build (JWR66V / android-4.3_r1) here, in case they are of value like they were for 4.2.x when others posted them. They would both go into /system/lib/hw and have 0644 permissions. XDA's cbaronne (link in Post #260 above)
Comparing it to the same change in Android 4.2.2, I think it has the same positive results. Hope that's the case for everyone.
Google, you guys have to take this stuff more seriously, it's really important to a lot of people that their device "just works" or is made to work in a reasonable timeframe. In this case, the community provided a fix and tested it across many many many devices with no cost to you; it's pretty insulting that it wasn't included based on just the feedback posted here! Ah well, I still get to keep posts #151 and #155 on my resume -- woot!
Anyway, I'm glad to see that folks have picked it up for 4.3 and it's still working for them. I attached the
Comparing it to the same change in Android 4.2.2, I think it has the same positive results. Hope that's the case for everyone.
Google, you guys have to take this stuff more seriously, it's really important to a lot of people that their device "just works" or is made to work in a reasonable timeframe. In this case, the community provided a fix and tested it across many many many devices with no cost to you; it's pretty insulting that it wasn't included based on just the feedback posted here! Ah well, I still get to keep posts #151 and #155 on my resume -- woot!
an...@stanisci.ca <an...@stanisci.ca> #261
This issue has been bugging me and certainly a lot of others for over a year and it's still not fixed? This is ridiculous. I can't use my phone at all in BT mode because the quality is so bad. I'm on a Nexus 4 now and it's still the same problems as before.
Google, c'mon! This is an important fix, because it's currently nullified the ability to stream music at all.
Google, c'mon! This is an important fix, because it's currently nullified the ability to stream music at all.
ma...@android.com <ma...@android.com> #262
We are still working on the issue. Increasing bitpool impacted some devices interaction with some carkits. We had to be cautious.
te...@gmail.com <te...@gmail.com> #263
SOME devices. That's the key word. Why not provide a setting for it and let the user toggle between different qualities.
I never experienced the stuttering on any phone, tablet, or Bluetooth device. I'm guessing many users here haven't either. Why not provide an option? Why do we all have to suffer because of lower quality devices?
I never experienced the stuttering on any phone, tablet, or Bluetooth device. I'm guessing many users here haven't either. Why not provide an option? Why do we all have to suffer because of lower quality devices?
te...@gmail.com <te...@gmail.com> #264
I really don't understand why adding a quality slider for this isn't an option.
Set "medium" quality as the default (as it exists now). Then add a slider in the Bluetooth settings menu that allows users to increase the quality, which increases the bitpool.
I'll even give you some copy for it, free of charge: "Increase this setting to improve quality on Bluetooth Audio devices. If stuttering occurs, reduce the quality."
Some transparency on this issue would go a long way to making your users happy. This has been a problem for NINE MONTHS. The only update we've received is "we're working on it", and it seems like that only comes after I send an email to the developers attached to this issue.
By the way, their email addresses are jaikumarg@android.com, mattx@android.com, and jbq@android.com. Feel free to contact them personally.
Set "medium" quality as the default (as it exists now). Then add a slider in the Bluetooth settings menu that allows users to increase the quality, which increases the bitpool.
I'll even give you some copy for it, free of charge: "Increase this setting to improve quality on Bluetooth Audio devices. If stuttering occurs, reduce the quality."
Some transparency on this issue would go a long way to making your users happy. This has been a problem for NINE MONTHS. The only update we've received is "we're working on it", and it seems like that only comes after I send an email to the developers attached to this issue.
By the way, their email addresses are jaikumarg@android.com, mattx@android.com, and jbq@android.com. Feel free to contact them personally.
ag...@gmail.com <ag...@gmail.com> #265
After waiting for such a long time, i was finally forced to follow the solution given above, although i never intended to root my nexus. The files are working on 4.3. The sound is now perfect on my xplod car stereo and Sony Ericsson mw600 bluetooth headset. But I think that the solution should have been given by Google, so that we didn't have to root.....
te...@gmail.com <te...@gmail.com> #266
A new firmware update was pushed to my Nexus 4 yesterday. It did not change the version number (it's still 4.3). I'm not sure what the update was for, but I can definitely confirm that the Bluetooth Audio issue still exists.
ra...@gmail.com <ra...@gmail.com> #267
Same problem with my HTC One (M7). The music quality through BT is horrible now.
te...@gmail.com <te...@gmail.com> #268
Will Bluetooth Audio quality be fixed in Android 4.4?
ra...@gmail.com <ra...@gmail.com> #269
[Comment deleted]
ra...@gmail.com <ra...@gmail.com> #270
Same problem here. Terrible sound quality on bluetooth MW600 earphones. I am so disappointed. I bought Nexus 4 yesterday because I had audio problems with SGS3 (hiccups) and now this!!! I've overwritten the both files from #261, audio quality is a lot better but I am experiencing hiccups again. They are not as bad as on Galaxy S3 but still... If iPhones were not so expensive I'd go back to iOS without any hesitation. Unfortunately I am still on contract and have to wail till summer next year. If Google won't fix this issue I am going back to iOS as soon as possible.
PS. I did not have any audio related problems on ICS. Have any of you tried to copyaudio.a2dp.default.so and bluetooth.default.so from ICS to android 4.3?
PS. I did not have any audio related problems on ICS. Have any of you tried to copy
sc...@gmail.com <sc...@gmail.com> #271
I have had a Nexus 4 for about a month now. I've run stock 4.2, 4.3, and Cyanogenmod 10.1.2, 10.2 (nightlies) and have had this issue since day 1. I never had this issue with my Galaxy S2. I now cringe when I have to get in my 2012 Mazda to listen to tinny distortion.
an...@gmail.com <an...@gmail.com> #272
This is absurd, how has this issue not been fixed? It is an absolute deal breaker for me and now I have to revert back to and old firmware which is such a pain in the ass. Really reflects poorly on Google and and Android team.
jo...@gmail.com <jo...@gmail.com> #273
I have this same issue with my Galaxy S4, in my car (2012 Audi A4). Static noise only while connecting BT with Voice AND Media audio. When I connect only to Media audio I do not experience static. This problem did not occur with my old galaxy S3 running 4.1.2. Google please fix!
tv...@gmail.com <tv...@gmail.com> #274
[Comment deleted]
pe...@gmail.com <pe...@gmail.com> #275
Got the nexus 7 FHD LTE and returned it because of of the crackling sound on BT at high frequencies (vocals, cymbals). It runs on 4.3.
Now I have the Vz note 3. Same issue - BT sound is useless - especially when you play it on bose, yamaha in the home and JBL in the car.
On the note 2, while I could tell the difference between aux cable and BT audio, it was ok.
how can this be a year old issue and not be fixed. BT audio is the way forward.
Now I have the Vz note 3. Same issue - BT sound is useless - especially when you play it on bose, yamaha in the home and JBL in the car.
On the note 2, while I could tell the difference between aux cable and BT audio, it was ok.
how can this be a year old issue and not be fixed. BT audio is the way forward.
kb...@gmail.com <kb...@gmail.com> #276
After reading so many complaints and seeing no fix from Google, I see no value in adding my own two cents except to make myself feel better. So, here goes. I always got great sound from my phone calls on my Galaxy Nexus using a Plantronics 925 which cost me around $100. When 4.2 came out and my conversation sound quality became horrible, I thought my earpiece had gone bad. So, I then bought a new BT earpiece, a Plantronics Legend reviewed as one of the best sounding headsets. When the sound was equally bad, I figured I had a lemon and exchanged it for the same model. Of course, there was no improvement. I primarily use my Nexus for phone calls. Google clearly has become more interested in making money than in having good customer service. Of course, they have the technical ability to fix this. They are just not willing to put the money in to fixing this problem. If 4.4 fixes it, it is not even certain that the Verizon Galaxy Nexus will get any more updates. I'm totally disgusted with Google.
bc...@gmail.com <bc...@gmail.com> #277
Same issue with bluetooth here on s3, auxiliary sound amazing though...
bc...@gmail.com <bc...@gmail.com> #278
Heres a solution for google, either roll back to 4.1.2 bluetooth settings or make a menu where people can choose between medium or high quality. Whats so hard about that? Im starting to seriously look at device alternatives because bluetooth mp3 is a MUST. Since im rooted im going to try the 2 files mentioned above but its a shame that we have to do that.
te...@gmail.com <te...@gmail.com> #279
Well, hopefully when Android 4.4 KitKat rolls out in a few days, the issue will be fixed. If it's not fixed by then (ONE YEAR after it was reported), then let the slew of "give me a break" puns commence.
bc...@gmail.com <bc...@gmail.com> #280
So i tried the 2 files above and it changed nothing besides add more static, i even rolled back to CM 4.1.2 and that made it even wrose, i have no bass and static sound. Last thing to try is to go back to my TouchWiz rom ewwww but who knows if that will change anything.
ra...@gmail.com <ra...@gmail.com> #281
Rolling back to 4.1.2 is not a solution because of stuttering issue - https://code.google.com/p/android/issues/detail?id=39633 .
If they won't fix both these issues in KitKat I am going back to iOS next summer.
If they won't fix both these issues in KitKat I am going back to iOS next summer.
te...@gmail.com <te...@gmail.com> #282
Actually, the stuttering issue and the low-quality audio issue were not introduced until 4.2. 4.1 had perfect audio.
dj...@gmail.com <dj...@gmail.com> #283
Just got AOSP 4.4_r1 downloaded -- the default was changed to high quality! THANK YOU GOOGLE! (You should change the comment in the code to say "High Quality" instead of "Middle Quality Quality", but who cares about that - lol)
Out of curiosity, were you able to resolve the stuttering issues on some devices with additional changes or did that turn out to be something different?
Regardless, thank you, I'm certain a lot of people are going to very happy when their devices hit KitKat.
Out of curiosity, were you able to resolve the stuttering issues on some devices with additional changes or did that turn out to be something different?
Regardless, thank you, I'm certain a lot of people are going to very happy when their devices hit KitKat.
te...@gmail.com <te...@gmail.com> #284
^ Good to know, thanks for reporting back on that. My Nexus 5 shipped over the weekend. Now I'm even more psyched to get it this week.
te...@gmail.com <te...@gmail.com> #285
Finally got to try out my Nexus 5 (Android 4.4) in my car with Bluetooth Audio. As far as I can tell, it sounds perfect now! Music and phone calls sound very crisp, even at high volumes. Thank you so much for finally fixing this.
ch...@gmail.com <ch...@gmail.com> #286
^ I really hope KitKat fixes this issue.
My N4 is running 4.3 Paranoid Android - the provided files in #261 improved the sound quality, but the higher frequencies still sound "ugly".
I'm using a Kenwood BT43U radio.
The Bluetooth audio quality of my 30€ U8160 is better than the one my N4 produces.
My N4 is running 4.3 Paranoid Android - the provided files in #261 improved the sound quality, but the higher frequencies still sound "ugly".
I'm using a Kenwood BT43U radio.
The Bluetooth audio quality of my 30€ U8160 is better than the one my N4 produces.
te...@gmail.com <te...@gmail.com> #287
@287, as far as I can tell, KitKat does fix the issue. At least on the Nexus 5. When 4.4 rolls out to your Nexus 4, please be sure to post your results for the benefit of the rest of the group.
ad...@gmail.com <ad...@gmail.com> #288
Unfortunately, it looks like it's NOT fixed on Android 4.4. On my Nexus 5, the audio distortion at high frequencies is still there when using A2DP on my pioneer car deck. This is getting crazy. This has been around since 4.2.
bc...@gmail.com <bc...@gmail.com> #289
i just tried a CM11 4.4 beta build for galaxy s3 d2tmo and bluetooth audio is HORRIBLE (static and poping noise) in my car, probably worse then on 4.2 and 4.3 roms =(
ch...@gmail.com <ch...@gmail.com> #290
Updating #287
I also own a N7 2012 grouper, which gave me horrible bluetooth audio output in my car.
I updated to the offical 4.4 yesterday (fullwipe, adb sideload), copied one song on it... and it seems like it is fixed! :)
To be absolutely sure I'm going to test some more audiofiles.
I'll report back later today.
I also own a N7 2012 grouper, which gave me horrible bluetooth audio output in my car.
I updated to the offical 4.4 yesterday (fullwipe, adb sideload), copied one song on it... and it seems like it is fixed! :)
To be absolutely sure I'm going to test some more audiofiles.
I'll report back later today.
ch...@gmail.com <ch...@gmail.com> #291
In the meantime I updated my N4 to the offical 4.4, too.
Bluetooth audio now sounds excellent with both N4 + N7.
Thanks Google, problem is solved for me.
Bluetooth audio now sounds excellent with both N4 + N7.
Thanks Google, problem is solved for me.
bc...@gmail.com <bc...@gmail.com> #292
still sounds like crap for me =( stuck with using aux cable.
bc...@gmail.com <bc...@gmail.com> #294
lol i am a musicien, i can trust my ears =)
sounds AMAZING on AUX CABLE
sounds AMAZING on CD PLAYER
sounds like SHIT on bluetooth.
Its very easy to tell the difference.
If its fixed why am i not the only one with the problem? Others are reporting that its still broken and some say its fixed =(
sounds AMAZING on AUX CABLE
sounds AMAZING on CD PLAYER
sounds like SHIT on bluetooth.
Its very easy to tell the difference.
If its fixed why am i not the only one with the problem? Others are reporting that its still broken and some say its fixed =(
ra...@gmail.com <ra...@gmail.com> #295
[Comment deleted]
ra...@gmail.com <ra...@gmail.com> #296
On my N4 KitKat fixed the issue with audio quality. It is a lot better than it was on 4.3.
Unfortunately I am still experiencing music stuttering.
Unfortunately I am still experiencing music stuttering.
da...@googlemail.com <da...@googlemail.com> #297
At @295
The source code implies there are 2 modes.
The higher bitrate is only used when both devices support Blutooth EDR (http://en.wikipedia.org/wiki/Bluetooth#Bluetooth_v2.0_.2B_EDR ).
When there is not EDR support, it falls back to the bitrate used in versions before.
So perhaps you have hardware with old Bluetooth versions or your smartphone and audio device are unable to establish an EDR link because of other reasons.
The source code implies there are 2 modes.
The higher bitrate is only used when both devices support Blutooth EDR (
When there is not EDR support, it falls back to the bitrate used in versions before.
So perhaps you have hardware with old Bluetooth versions or your smartphone and audio device are unable to establish an EDR link because of other reasons.
bc...@gmail.com <bc...@gmail.com> #298
im guessing all new hardware support EDR though... youd think that a brand new car of the year would support that no?
im...@gmail.com <im...@gmail.com> #299
My car's bluetooth stereo is v1.2 and so it does not have EDR support. This must be why I'm still hearing the crackling audio...
[Deleted User] <[Deleted User]> #300
2010 Nissan Maxima evidently has v1.2 A2DP.
Why can't we have control over the bitrate on our phones with the previously mention slider or switch? Not even an option from the developer menu?
Why can't we have control over the bitrate on our phones with the previously mention slider or switch? Not even an option from the developer menu?
xa...@gmail.com <xa...@gmail.com> #301
Last week i've upgraded my MotoX (4.4.2) hoping it fix the audio quality specially to use my Scala Rider Q1...but it seems the problem is not fixed in kitkat yet...Using a older phone that i have (Galaxy Ace w/ Froyo) works just perfect eith all my bluetooth devices...
gu...@c-one.cc <gu...@c-one.cc> #302
I am using a Nexus 4 with 4.4.2 - The problem still subsists with an EDR Infiniti Q56 car kit. It makes my Bluetooth Carkit almost unusable, very dissappointing!
ab...@gmail.com <ab...@gmail.com> #303
+1 to the ones that can't believe how long this bug survives.
da...@gmail.com <da...@gmail.com> #304
please google
do some thing
this has been such a draw back on my nexus 10
do some thing
this has been such a draw back on my nexus 10
mr...@gmail.com <mr...@gmail.com> #305
I hate google nobody cares
bf...@gmail.com <bf...@gmail.com> #306
My android phone (Note 2) just upgraded itself to 4.2.2 and now my Plantronics bluetooth is crackling and popping. Is there a workaround? Hope I'm on the right forum for this question.
Thx.
Thx.
su...@gmail.com <su...@gmail.com> #307
I have the same issue as #307 : Exact situation.
su...@gmail.com <su...@gmail.com> #308
Another point : Lets say you have the headset on the right ear, bring the phone close , the quality improves. Second if you bring the phone to the left now, the crackling starts
mt...@gmail.com <mt...@gmail.com> #309
Same on Nexus 5 with 4.4.4.
All i can say is SHAME.
All i can say is SHAME.
ra...@gmail.com <ra...@gmail.com> #310
Same on Sony Xperia L with Android 4.2.2. When in a call, I am able to hear the call reasonably OK, but others listening to me have complained about the call quality. Can't imagine such a basic thing is broken
ry...@gmail.com <ry...@gmail.com> #311
I too am experiencing skipping when using my Bluetooth speaker. Have a Droid Razr Maxx HD running 4.4.2. My Nexus 7 2nd Gen seems to be working fine. I've tried disabling all amazon apps, clearing memory so used doesn't dip below 100 Mb. Any help or news on this issue?
sb...@gmail.com <sb...@gmail.com> #312
I have this issue using a Nexus 4 in my car. The music seems to randomly slow down, and frequently mutes for a second and then continues playing.
Description
Phone Model: Galaxy Nexus
Bluetooth Device : LG HBS-700
Andriod Version : 4.2
Baseband Version : I9250XXLH1
Kernel Version : 3.031-gd5a18e0
andriod-build@vpbs1.mtv.corp.google.com #1
Fri Nov 2 11:02:59 PDT 2012
Build Number : JOP40c