[Q] App blocks ACTION_MEDIA_BUTTON - Android Q&A, Help & Troubleshooting

Hi.
I have almost no knowledge of Android development, sorry if the question is stupid or incorrectly formulated
An application named Sygic (satellite navigation, "com.sygic.aura" on Google Play) has a bug/feature that it blocks ACTION_MEDIA_BUTTON. From the user's point of view, media buttons of external keyboard or software buttons wit appropriate actions assigned (play/pause, skip, previous track) don't work when the app is running (in foregroud or even background as a service). As far as I could determine, the app doesn't register any broadcast receiver listening to MEDIA_BUTTON intent (at least not in Android Manifest). It certainly doesn't implement any useful feature based on media button presses.
Analysis of logcat didn't help me much. Below I quote both versions of log when I press Play and then Pause.
1. Standard log (filtered relevant entries) with no Sygic running (result is fine - music starts and then stops playing):
Code:
W/AudioTrack( 530): AUDIO_OUTPUT_FLAG_FAST denied by client due to mismatching sample rate (48000 vs 44100)
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
W/DvcNeonEqualizer( 4304): Starting fixed point NEON optimized equalizer with DVC
I/MediaFocusControl( 530): Remote Control registerMediaButtonIntent() for PendingIntent{41fa16e8: PendingIntentRecord{41fa20a0 com.maxmpz.audioplayer broad
castIntent}}
I/HeadsetService( 786): Audio session removed: 77
I/HeadsetService( 786): Selected configuration: speaker
I/PlayerService( 4304): ACTION_API_COMMAND cmd=1
I/MediaFocusControl( 530): AudioFocus requestAudioFocus() from [email protected][email protected]
I/MediaFocusControl( 530): Remote Control registerMediaButtonIntent() for PendingIntent{41f0a6b8: PendingIntentRecord{41fa20a0 com.maxmpz.audioplayer broad
castIntent}}
W/KeyguardUpdateMonitor( 650): Ignoring generation id 13 because it's not current
W/AudioTrack( 530): AUDIO_OUTPUT_FLAG_FAST denied by client due to mismatching sample rate (48000 vs 44100)
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
I/PlayerService( 4304): ACTION_API_COMMAND cmd=1
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
I/MediaFocusControl( 530): AudioFocus abandonAudioFocus() from [email protected][email protected]
W/PlayerService( 4304): Poweramp Player Service leaves the scene
2. With Sygic on it say only (no real action is visibly done):
Code:
W/AudioTrack( 530): AUDIO_OUTPUT_FLAG_FAST denied by client due to mismatching sample rate (48000 vs 44100)
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
W/AppOps ( 530): Bad call: specified package android under uid 10006 but it is really 1000
Other applications are working just fine.
The developer (Sygic) is not communicating at all with me. Is there any chance to help myself with that? Settings? Xposed module? Some utility to filter broadcast receivers?

Related

[GUIDE]For Flash Developers

Though most of the Android Development forums advocate native applications, for those who are more fluent with flash, don't give up hope just yet. Android's support for flash environment ain't too shabby and it's far better than those running on Apple (trust us, we tried). Flash provides some useful tools to do a quick mock up of concepts and/or visuals.
To get you started, check out Adobe's Guide to Android Air on Android.
But of course, nothing runs better or faster than a native app.
Happy Coding!
How do you intercept device sleep and wake events on adobe air
If you are developing your app on adobe air then you will definitely come across the need to decide what to do with your app when the user closes the app and how will it resume.
The following short guide will show you how to do this easily.
Add the following lines to attach the function calls to the respective events:
import flash.desktop.NativeApplication;
NativeApplication.nativeApplication.addEventListener(Event.DEACTIVATE , handleDeactivate, false, 0, true);
NativeApplication.nativeApplication.addEventListener(Event.ACTIVATE, handleActivate, false, 0, true);
function handleDeactivate(event:Event):void {
//Function called on app sleeps
}
function handleActivate(event:Event):void {
//Function called when app resumes.
}
How to handle back button key press
To control the behavior of the app when the back button is pressed, simply attach an event listener as shown below:
import flash.desktop.NativeApplication;
NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown, false, 0, true);
protected function onKeyDown(event:KeyboardEvent):void{
if( event.keyCode == Keyboard.BACK ) {
event.preventDefault();
event.stopImmediatePropagation();
//handle the button press here.
}
}
How to enable your Adobe Air app to be transferrable to the external SDcard
By default, the setting in Adobe Air is set such that apps cannot be moved to external storage. Some users prefer this due to limited storage space on their phones or because some apps take up alot of space.
To allow this behavior, you need to manually change the setting in the application.xml file under the android settings. Simply add the line in bold and wallah, your android will now allow your app to be moved between local and external storage.
<android>
<manifestAdditions>
<![CDATA[<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
</manifest>]]>
</manifestAdditions>
</android>
I appreciate you work man

CM Freezing bug Logcated

Anyone got an idea.. link to full post.. http://forum.xda-developers.com/galaxy-s4-sprint/help/lag-freezing-cm-base-logcat-t2823956
This is the output of my logcat. (Slimmed down. If you need more pastebin has more. And i can just pull another..)
E/TemperatureHumiditySensor( 743): mCompEngine is NULL
I/Choreographer( 1134): Skipped 778 frames! The application may be doing too much work on its main thread.
I/Choreographer( 1134): Skipped 65 frames! The application may be doing too much work on its main thread.
I/ActivityManager( 743): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.tsf.shell/.Home} from pid 743
W/Launcher( 4352): setApplicationContext called twice! [email protected] 24c0
Looks like android.view at API 16 Could be a possible culprit.. source..http://vaibhavtolia.wordpress.com/2013/10/03/79/
Daisflaque said:
Looks like android.view at API 16 Could be a possible culprit.. source..http://vaibhavtolia.wordpress.com/2013/10/03/79/
Click to expand...
Click to collapse
Bump.

Help needed in Making HWC 1 .3 work on Android 9

Hello,
I'm porting Android 9 in SM-G355H phone from a Android 8 tree but I cannot get pass the black screen or frozen screen.
This happens whenever the SurfaceFlinger has to compose the layers (Client Compositing) because the Framebuffer Target Layer that the Hardware Composer 1.3 code expects always have a NULL buffer handle so there's nothing to be displayed.
Usually SPRD GSP (a hardware blitter) does the compositing for n layers so it's possible to have a working display with the Framebuffer target layer's buffer_handle being null unless the blitter fails or SurfaceFlinger forces Client composition.
I have noted that this is also the same outcome with Android 8 when HWC2on1 adapter is used, which is part of the reason I disabled it on the Android 8 tree and went with the HWC1 support within SurfaceFlinger. The HWC1 support was removed on Android 9, so HWC2on1 adapter is a must.
Any ways to get the HWC2on1 work on this device for Android 9 (and also Android 8)?
Should there be steps to be done before using the adapter? Like changing some code in the HWC or something?
Preamble
This may probably turn to a Q&A section. So, I'll include a preamble of some sort.
I was right that there is only one issue on Android 8 which also affects Android 9. (and maybe Android 10 and above)
I was wrong about something needed to be done about the adapter, it just works.
The problem lies in the how the vendor decides to use the native_handle_t created in gralloc for "framebuffer" handles or handles that handle framebuffer memory.
Yeah, this means only Framebuffers allocated from gralloc are affected. Any other buffers from gralloc are okay.
TL;DR; Basically, the vendor use -1 as a FD while the whole HIDL, native_handle_clone(), and kernel binder operations always expects a valid FD. I just need to work around that.
Unfortunately, it is not possible to decrease the number of FD's when creating the native_handle_t since the underlying blob, libMali.so, will reject it stating that the handle is not valid. It compares the number of FDs and number of INTs, you could check what the "struct native_handle" holds.
But then again, that FD is used by libMali.so as a dma_buf fd.
This means that having a valid fd will make libMali.so issue an ioctl call expecting a dma_buf so I cannot just plug in a valid FD to /dev/null.
And to point, dma_buf fb support does not exist in the kernel provided by Samsung so the FD is set to -1.
When this FD is -1, libMali.so simply moves on and uses alternative methods aside dma_buf.
Then the handle goes to binder or HIDL which in effect needs to duplicate all file descriptors (fd). dup() doesn't work on -1 since it's an invalid fd.
Thus, this problem will prevent the FramebufferTarget layer from having a native_handle_t simply because SurfaceFlinger cannot send it through HIDL.

[ROM][Signature Spoofing/MicroG support][OTA updates] LineageOS 18.1 for S8/S8+/Note8

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
LineageOS 18.1 for 8895​
Code:
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
Working:
- Wifi
- Sound
- mali drivers
- USB tethering
- HW Backed video Playback
- Ril (Mobile data,calls, sms and stuff)
- Sensors
- Buttons and their backlight
- Bluetooth
- Wifi HotSpot
- MTP
- 2D and 3D gpu acceleration
- HW encoding/decoding
- Charging with device powered off
- Stuff I didn't test yet
- Camera
- GPS
- Fingerprint Sensor
- Mobicore
- SW codecs
Not Working
- HWC is temporarily disabled, should be fixed in next few builds
Take a note that a lot of LineageOS features have not been completed yet this is not a device bug and please do not report those
in this rom thread as you will be reported to moderator also do not post bug reports for known issues or bug reports without proper
a) Logcat
b) proc/last_kmsg (or proc/kmsg)
c) data/tombstones
d) dmesg
Also do not under any circumstances post bug reports if you are using substratum themes or unsupported magisk modules or you have performed any system modifications
Install gapps right after installing the rom itself dont try to boot to system before that if you want to use gapps
NikGapps and BiTgapps were both tested and working
Downloads:
Google Drive
GitHub releases
if you want to support the project feel free to buy me some coffee paypal.me/ivanmeler
BTC: 1Q823BsSbEKP62JFM7BjXiRCgF84qgcFST
ETH(erc20): 0x979a8e42551e62e6994d3762c9d9f0e76b5d87f9
Donations help cover the build server cost and since I do this in my free time, and also cover the coffee for time spent debugging stuff
Feel free to join telegram group with early builds progress updates and some off topic stuff Join
Due to requests from some users I added signature spoofing support to the rom which allows usage of MicroG
you can simply install MinMicroG and grant it needed permissions for signature spoofing to make it work as intended
Based On Android 11/R
Changelog
08.06.2023.
- Merged June 2023. Security update
- Synced with LOS source
08.05.2023.
- Merged May 2023. Security update
- Synced with LOS source
14.04.2023.
- Merged April 2023. Security update
- Synced with LOS source
21.03.2023.
- Merged March 2023. Security update
- Synced with LOS source
12.02.2023.
- Merged February 2023. Security update
- Backported hwc fixes from 19/20 branches
- Synced with LOS source
05.01.2023.
- Merged January 2023. Security update
- Synced with LOS source
08.12.2022.
- Merged December 2022. Security update
- Synced with LOS source
10.11.2022.
- Merged November 2022. Security update
- Synced with LOS source
06.10.2022.
- Merged October 2022. Security update
- Fixed samsungs bug with gps where it would start acting up over time due to time rollover bug
- Synced with LOS source
08.09.2022.
- Merged September 2022. Security update
- Synced with LOS source
07.08.2022.
- Merged August 2022. Security update
- Synced with LineageOS source
08.07.2022.
- Merged July 2022. Security update
- Synced with LOS source
09.06.2022.
- Merged June 2022. Security update
- Synced with LOS source
12.05.2022.
- Merged May 2022. Security update
- Synced with LOS source
07.04.2022.
- Merged April 2022. Security update
- Drastically speed up app launch time (more info about that here)
- Imrpoved performance and battery life by disabling some unnecessary logging
- Removed AudioFX which was breaking audio in some scenarios
- Synced with LOS source
12.03.2022.
- Merged March 2022. Security update
- Implemented OTA updates
- Synced with LOS source
- Fixed pointer offset for s-pen on note8
11.02.2022.
- Merged February 2022. Security update
- Fixed bug where camera would stop working after prolonged use due to file-descriptiors being left open and overflowing
- Fixed torch delay
- Fixed issues with camera auto focus locking up the camera
- Switched to half res boot anim which in turn gives us a slight boost in boot time
- Cleaned up gatekeeper rc files
- Removed arrow pointer (used for s-pen or mouse input) from non note8 builds and updated pointer for note8 build
- Cleaned up unneeded drm entries in hidl manifest
- Switched to source built librilutils
- Switched to source built libreference-ril
- Misc performance and stability improvements
- Synced with LOS source
10.01.2022.
- Merged January security update
- Imrpoved bt incall handling
- Synced with LOS source
15.12.2021.
- Merged December security update
- Increased zram size
- Fixed internal audio recording in apps such as screen recorders
- removed unused rild service that was causing race condition on rare ocasions
- Synced with LOS source
12.11.2021.
- Merged November security update
- Fixed bt incall audio on even more devices
- Misc performance and stability updates
- Synced with LOS source
06.10.2021.
- Merged October security update
- Added more advanced burn in protection
- Misc performance and stability updates
- Further imrpoved handling of calls over bluetooth
- Synced with LOS source
13.09.2021.
- Moved volume panel to left by default (Only affects clean install)
- Switched to Note10+ RIL stack (Mostly stability and battery life improvements, also a lot cleaner)
- Improved dual sim device detection
- Fixed bluetooth incall
10.09.2021.
- Initial release
- Switched to open source NFC hal
- Added signature spoofing patches
- Fixed tethering
- Improved wifi stability
- improved bt stability
- Fixed wireless display
- Merged September 2021. security update
- Synced with LOS source
Source Code: https://github.com/exynos8895/android_kernel_samsung_universal8895/tree/lineage-18.1
ROM OS Version: Android 11
ROM Kernel: Linux 4.4.x
I noticed lack of real development on 8895 device and had some extra time, so here we go, expect more progress happening and bug fixes (source will also be released soon)
Will OTA updates be available?
is it pass safety net (without root)
Thanks for the rom, I will use it until android 12 comes out <3
New build is up, changelog in the op
Does anyone know if internal audio works for screen recording?
This ROM is nearly perfect, I have only an issue with Android Auto. I installed NikGApps full to being sure to have all services but I cannot pair with the car, this is the log, seems something related to setAudioPolicy that fails, did someone managed to have Android Auto working?
Code:
2021-10-02 08:27:54.665 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:28:00.853 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:28:03.389 0-0/? E/[0: Thread-13:13834] audit: rate limit exceeded
2021-10-02 08:28:04.007 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:28:07.081 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:28:07.404 0-0/? E/[3:[email protected]: 4328] audit: rate limit exceeded
2021-10-02 08:28:10.222 0-0/? E/[0:HwBinder:4324_3: 4497] audit: rate limit exceeded
2021-10-02 08:28:10.826 4357-4420/? E/BufferQueueProducer: [ColorFade#0](id:11050000027f,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:28:10.900 4357-7837/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.companion.devsettings.DeveloperSettingsActivity#0](id:11050000027e,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:28:10.953 0-0/? E/[2:HwBinder:4324_3: 4497] PANEL: ERR:panel_do_seqtbl_by_index:dsim off
2021-10-02 08:28:11.277 0-0/? E/[0:[email protected]: 7105] audit: rate limit exceeded
2021-10-02 08:28:11.286 7090-7090/? E/gle.android.gm: Invalid ID 0x00000000.
2021-10-02 08:28:15.076 0-0/? E/[1:HwBinder:4613_2: 4741] audit: rate limit exceeded
2021-10-02 08:28:21.430 0-0/? E/[3: ICR: 5077] audit: rate limit exceeded
2021-10-02 08:28:37.922 4038-4038/? E/lowmemorykiller: Error writing /proc/4378/oom_score_adj; errno=22
2021-10-02 08:28:51.676 0-0/? E/[2: android.bg: 4651] audit: rate limit exceeded
2021-10-02 08:29:15.962 0-0/? E/[1: main: 6962] audit: rate limit exceeded
2021-10-02 08:29:16.002 6962-6962/? E/roid.apps.turb: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:29:16.242 4038-4038/? E/lowmemorykiller: Error writing /proc/5848/oom_score_adj; errno=22
2021-10-02 08:29:17.591 0-0/? E/[1: Thread-13:13834] audit: rate limit exceeded
2021-10-02 08:29:26.011 0-0/? E/[3:[email protected]: 4329] audit: rate limit exceeded
2021-10-02 08:29:28.983 0-0/? E/[2: lhd: 4453] audit: rate limit exceeded
2021-10-02 08:29:33.110 0-0/? E/[1: ICR: 5077] audit: rate limit exceeded
2021-10-02 08:30:13.127 0-0/? E/[0: main: 7000] audit: rate limit exceeded
2021-10-02 08:30:13.181 7000-7000/? E/id.partnersetu: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:30:13.412 7025-7025/? E/ocess.gservice: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:30:13.735 7069-7069/? E/gle.android.gm: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:30:14.817 0-0/? E/[2: lhd: 4453] audit: rate limit exceeded
2021-10-02 08:30:16.405 0-0/? E/[0:HwBinder:4314_1: 5165] audit: rate limit exceeded
2021-10-02 08:30:21.776 0-0/? E/[1: android.bg: 4651] audit: rate limit exceeded
2021-10-02 08:30:23.063 0-0/? E/[3: lhd: 4453] audit: rate limit exceeded
2021-10-02 08:30:25.590 0-0/? E/[2: ICR: 5077] audit: rate limit exceeded
2021-10-02 08:31:14.587 4038-4038/? E/lowmemorykiller: Error writing /proc/6109/oom_score_adj; errno=22
2021-10-02 08:31:35.292 0-0/? E/[3:HwBinder:4332_1: 4598] audit: rate limit exceeded
2021-10-02 08:31:35.292 0-0/? E/[3:HwBinder:4332_1: 4598] [SSP]: set_sensor_delay, dev_name = light_sensor index = 9
2021-10-02 08:31:35.479 4613-6653/? E/SoundTriggerService: error onStop(): Model 9f6ad62a-1f0b-11e7-87c5-40a8f03d3f15 has no stats available
2021-10-02 08:31:35.559 4770-5311/? E/bt_btm: BTM_BleObserve Observe not active
2021-10-02 08:31:35.635 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:31:35.642 7090-7090/? E/gle.android.gm: Invalid ID 0x00000000.
2021-10-02 08:31:35.673 7090-7090/? E/gle.android.gm: Invalid ID 0x00000000.
2021-10-02 08:31:35.687 7090-7176/? E/CastSocket: [com.google.android.gms] Failed to shutdown the output stream socket: [email protected]
java.net.SocketException: Socket is not connected
at sun.nio.ch.Net.translateToSocketException(Net.java:129)
at sun.nio.ch.Net.translateException(Net.java:166)
at sun.nio.ch.Net.translateException(Net.java:172)
at sun.nio.ch.SocketAdaptor.shutdownOutput(SocketAdaptor.java:426)
at myf.l(:[email protected]@21.36.14 (150408-395708125):4)
at myh.c(:[email protected]@21.36.14 (150408-395708125):50)
at myg.run(:[email protected]@21.36.14 (150408-395708125):3)
at java.lang.Thread.run(Thread.java:923)
Caused by: java.nio.channels.NotYetConnectedException
at sun.nio.ch.SocketChannelImpl.shutdownOutput(SocketChannelImpl.java:844)
at sun.nio.ch.SocketAdaptor.shutdownOutput(SocketAdaptor.java:424)
at myf.l(:[email protected]@21.36.14 (150408-395708125):4)
at myh.c(:[email protected]@21.36.14 (150408-395708125):50)
at myg.run(:[email protected]@21.36.14 (150408-395708125):3)
at java.lang.Thread.run(Thread.java:923)
2021-10-02 08:31:35.786 7090-30470/? E/CDC|API|10: [API] sendTextMessage - Text message has no destination ID. Message discarded.
2021-10-02 08:31:37.091 4793-4793/? E/KeyguardViewMediator: mHideAnimationFinishedRunnable#run
2021-10-02 08:31:37.069 0-0/? E/[2:[email protected]: 4467] audit: rate limit exceeded
2021-10-02 08:31:37.263 3653-3653/? E/GmsReceiverSupport: com.google.android.gms requires <allow-in-power-save> exemption in /system/etc/sysconfig/google.xml for core device features to function.
java.lang.SecurityException: Calling app u10a135 is not on whitelist
at android.os.Parcel.createExceptionOrNull(Parcel.java:2373)
at android.os.Parcel.createException(Parcel.java:2357)
at android.os.Parcel.readException(Parcel.java:2340)
at android.os.Parcel.readException(Parcel.java:2282)
at android.os.IDeviceIdleController$Stub$Proxy.addPowerSaveTempWhitelistApp(IDeviceIdleController.java:863)
at android.os.PowerWhitelistManager.whitelistAppTemporarily(PowerWhitelistManager.java:153)
at android.app.usage.UsageStatsManager.whitelistAppTemporarily(UsageStatsManager.java:1207)
at oyw.a(:[email protected]@21.36.14 (150408-395708125):10)
at oyw.onReceive(:[email protected]@21.36.14 (150408-395708125):21)
at android.app.LoadedApk$ReceiverDispatcher$Args.lambda$getRunnable$0$LoadedApk$ReceiverDispatcher$Args(LoadedApk.java:1580)
at android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA.run(Unknown Source:2)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
Caused by: android.os.RemoteException: Remote stack trace:
at com.android.server.DeviceIdleController.addPowerSaveTempWhitelistAppDirectInternal(DeviceIdleController.java:2549)
at com.android.server.DeviceIdleController.addPowerSaveTempWhitelistAppInternal(DeviceIdleController.java:2531)
at com.android.server.DeviceIdleController.addPowerSaveTempWhitelistAppChecked(DeviceIdleController.java:2495)
at com.android.server.DeviceIdleController$BinderService.addPowerSaveTempWhitelistApp(DeviceIdleController.java:1692)
at android.os.IDeviceIdleController$Stub.onTransact(IDeviceIdleController.java:414)
2021-10-02 08:31:37.385 4440-7209/? E/keymaster_worker: getAuthToken failed: -2
2021-10-02 08:31:37.655 4357-5293/? E/BufferQueueProducer: [NotificationShade#0](id:110500000280,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:31:38.556 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:31:38.565 0-0/? E/[2: HubConnection: 4525] audit: rate limit exceeded
2021-10-02 08:31:41.596 4770-5311/? E/bt_btm: BTM_BleObserve Observe Already Active
2021-10-02 08:31:47.564 0-0/? E/[2:mali-cmar-backe: 5283] audit: rate limit exceeded
2021-10-02 08:31:55.503 0-0/? E/[1: main: 7215] audit: rate limit exceeded
2021-10-02 08:31:55.549 7215-7215/? E/stagram.androi: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:31:55.600 7231-7231/? E/.apps.turbo:aa: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:31:56.023 7215-7269/? E/appstatelogger2: Can't run on P or newer
2021-10-02 08:31:56.267 7215-7269/? E/nightwatch-fd: Unable to open /proc/self/oom_adj (mode read) : 13 : Permission denied
2021-10-02 08:31:56.267 7215-7269/? E/nightwatch-fd: Unable to open /proc/self/oom_score_adj (mode read) : 13 : Permission denied
2021-10-02 08:31:56.535 0-0/? E/[1:stagram.android: 7215] audit: rate limit exceeded
2021-10-02 08:31:56.835 6674-776/? E/MediaProvider: insertFileIfNecessary failed
java.lang.IllegalArgumentException: Primary directory null not allowed for content://media/external_primary/file; allowed directories are [Download, Documents]
at com.android.providers.media.MediaProvider.ensureFileColumns(MediaProvider.java:2707)
at com.android.providers.media.MediaProvider.ensureUniqueFileColumns(MediaProvider.java:2372)
at com.android.providers.media.MediaProvider.insertFile(MediaProvider.java:2981)
at com.android.providers.media.MediaProvider.insertInternal(MediaProvider.java:3533)
at com.android.providers.media.MediaProvider.insert(MediaProvider.java:3249)
at com.android.providers.media.MediaProvider.insertFileForFuse(MediaProvider.java:6717)
at com.android.providers.media.MediaProvider.insertFileIfNecessaryForFuse(MediaProvider.java:6804)
2021-10-02 08:31:57.646 0-0/? E/[1:stagram.android: 7215] audit: rate limit exceeded
2021-10-02 08:31:58.818 0-0/? E/[2: android.bg: 4651] audit: rate limit exceeded
2021-10-02 08:31:58.841 4038-4038/? E/lowmemorykiller: Error writing /proc/6287/oom_score_adj; errno=22
2021-10-02 08:31:59.048 7406-7406/? E/am.android:mqt: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:31:59.387 7406-7437/? E/appstatelogger2: Can't run on P or newer
2021-10-02 08:31:59.623 4038-4038/? E/lowmemorykiller: Error writing /proc/6488/oom_score_adj; errno=22
2021-10-02 08:32:00.032 0-0/? E/[0:mali-cmar-backe: 5283] audit: rate limit exceeded
2021-10-02 08:32:01.044 0-0/? E/[0:Lacrima_startup: 7291] audit: rate limit exceeded
2021-10-02 08:32:08.040 0-0/? E/[2:HwBinder:4613_2: 4741] audit: rate limit exceeded
2021-10-02 08:32:14.390 0-0/? E/[3: ICR: 5077] audit: rate limit exceeded
2021-10-02 08:32:18.013 0-0/? E/[2: android.bg: 4651] audit: rate limit exceeded
2021-10-02 08:32:21.342 0-0/? E/[2: lhd: 4453] audit: rate limit exceeded
2021-10-02 08:32:24.383 0-0/? E/[1:mali-cmar-backe: 5283] audit: rate limit exceeded
2021-10-02 08:32:28.266 0-0/? E/[3:[email protected]: 4329] audit: rate limit exceeded
2021-10-02 08:32:31.030 0-0/? E/[3: ICR: 5077] audit: rate limit exceeded
2021-10-02 08:32:32.855 0-0/? E/[7: RenderThread: 5297] audit: rate limit exceeded
2021-10-02 08:32:40.700 0-0/? E/[0: RenderThread: 7508] audit: rate limit exceeded
2021-10-02 08:32:40.886 4357-5293/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.companion.devsettings.DeveloperSettingsActivity#0](id:110500000283,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:40.952 4357-7837/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.apps.auto.carservice.gmscorecompat.FirstActivityImpl#0](id:110500000284,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:41.079 4357-4420/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.companion.devsettings.DeveloperSettingsActivity#0](id:110500000283,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:41.512 4357-7837/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.apps.auto.carservice.gmscorecompat.FirstActivityImpl#0](id:110500000284,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:41.704 6570-7541/? E/CAR.XFER.LITE: CAR_SERVICE_PROXY Send channel opened control message: failed writer null 2
2021-10-02 08:32:41.705 6570-7541/? E/XFER.Proxy.LITE: Forward throttled, dropping control packet
2021-10-02 08:32:41.759 0-0/? E/[1:Lacrima_startup: 7291] audit: rate limit exceeded
2021-10-02 08:32:42.267 7553-7553/? E/droid.apps.map: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:32:42.760 4357-4420/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.gms.carsetup.SetupActivityImpl#0](id:110500000285,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:42.763 4357-7837/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.frx.SetupActivity#0](id:110500000286,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:42.787 4357-4420/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.companion.devsettings.DeveloperSettingsActivity#0](id:110500000283,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:42.783 0-0/? E/[7: DefaultPool5: 7585] audit: rate limit exceeded
2021-10-02 08:32:42.985 4357-7837/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.frx.SetupActivity#0](id:110500000286,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:43.277 7623-7623/? E/ocessService0:: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:32:43.869 31659-31659/? E/A: onError
com.google.android.apps.gsa.shared.speech.a.i: errorCode: 65572, engine: 2
at com.google.android.apps.gsa.s3.q.e(PG:30)
at com.google.android.apps.gsa.s3.p.run(PG:1)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at com.google.android.apps.gsa.shared.util.c.a.e.run(PG:2)
at com.google.android.apps.gsa.shared.util.c.a.az.run(PG:1)
at com.google.android.apps.gsa.shared.util.c.a.az.run(PG:1)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:923)
at com.google.android.apps.gsa.shared.util.c.a.h.run(PG:5)
Caused by: com.google.android.apps.gsa.shared.speech.a.k: errorCode: 500, engine: 2
at com.google.android.apps.gsa.s3.v.b(PG:8)
at com.google.android.apps.gsa.s3.q.e(PG:19)
at com.google.android.apps.gsa.s3.p.run(PG:1)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:462)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at com.google.android.apps.gsa.shared.util.c.a.e.run(PG:2)
at com.google.android.apps.gsa.shared.util.c.a.az.run(PG:1)
at com.google.android.apps.gsa.shared.util.c.a.az.run(PG:1)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:923)
at com.google.android.apps.gsa.shared.util.c.a.h.run(PG:5)
2021-10-02 08:32:44.021 0-0/? E/[0: RenderThread:10968] audit: rate limit exceeded
2021-10-02 08:32:44.136 4357-7837/? E/BufferQueueProducer: [com.google.android.googlequicksearchbox/com.google.android.apps.gsa.velour.dynamichosts.TransparentVelvetDynamicHostActivity#0](id:110500000289,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:44.265 4357-4420/? E/BufferQueueProducer: [com.google.android.googlequicksearchbox/com.google.android.apps.gsa.projection.OpaAutoOptInActivity#0](id:110500000288,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:44.511 7689-7689/? E/d.process.acor: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:32:44.587 4343-4736/? E/APM_AudioPolicyManager: Unable to find audio module for submix, aborting mix 0 registration
2021-10-02 08:32:44.591 6570-6570/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.google.android.projection.gearhead:car, PID: 6570
java.lang.RuntimeException: Unable to start service com.goog[email protected]1851503 with Intent { act=com.google.android.gms.car.HANDOFF_USER_AUTHORIZATION cmp=com.google.android.projection.gearhead/com.google.android.apps.auto.carservice.gmscorecompat.CarChimeraService (has extras) }: java.lang.RuntimeException: registerAudioPolicy failed -1
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:4338)
at android.app.ActivityThread.access$1800(ActivityThread.java:237)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1951)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
Caused by: java.lang.RuntimeException: registerAudioPolicy failed -1
at kuf.<init>(SourceFile:10)
at jyg.dF(SourceFile:95)
at lnp.j(SourceFile:3)
at kdd.bn(SourceFile:12)
at ker.bn(SourceFile:1)
at kdm.L(SourceFile:9)
at jzh.onStartCommand(SourceFile:56)
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:4320)
at android.app.ActivityThread.access$1800(ActivityThread.java:237)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1951)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
2021-10-02 08:32:44.609 6570-6570/? E/GH.CrashHandler: GH FATAL EXCEPTION: main
Process: com.google.android.projection.gearhead:car
PID: 6570
java.lang.RuntimeException: Unable to start service com.goog[email protected]1851503 with Intent { act=com.google.android.gms.car.HANDOFF_USER_AUTHORIZATION cmp=com.google.android.projection.gearhead/com.google.android.apps.auto.carservice.gmscorecompat.CarChimeraService (has extras) }: java.lang.RuntimeException: registerAudioPolicy failed -1
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:4338)
at android.app.ActivityThread.access$1800(ActivityThread.java:237)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1951)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
Caused by: java.lang.RuntimeException: registerAudioPolicy failed -1
at kuf.<init>(SourceFile:10)
at jyg.dF(SourceFile:95)
at lnp.j(SourceFile:3)
at kdd.bn(SourceFile:12)
at ker.bn(SourceFile:1)
at kdm.L(SourceFile:9)
at jzh.onStartCommand(SourceFile:56)
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:4320)
at android.app.ActivityThread.access$1800(ActivityThread.java:237)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1951)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
2021-10-02 08:32:45.038 0-0/? E/[1:mali-cmar-backe: 5283] audit: rate limit exceeded
2021-10-02 08:32:45.013 7726-7726/? E/on.gearhead:ca: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:32:45.179 4357-4419/? E/BufferQueueProducer: [com.google.android.projection.gearhead/com.google.android.projection.gearhead.frx.SetupActivity#0](id:110500000286,api:0,p:-1,c:4357) disconnect: not connected (req=1)
2021-10-02 08:32:45.321 3962-3962/? E/ActivityThread: Activity com.google.android.projection.gearhead.frx.SetupActivity has leaked ServiceConnection [email protected] that was originally bound here
android.app.ServiceConnectionLeaked: Activity com.google.android.projection.gearhead.frx.SetupActivity has leaked ServiceConnection [email protected] that was originally bound here
at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1835)
at android.app.LoadedApk.getServiceDispatcherCommon(LoadedApk.java:1707)
at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1686)
at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1819)
at android.app.ContextImpl.bindService(ContextImpl.java:1749)
at android.content.ContextWrapper.bindService(ContextWrapper.java:756)
at mqc.g(SourceFile:11)
at mqc.b(SourceFile:1)
at mqc.c(SourceFile:1)
at krz.<init>(SourceFile:10)
at krx.a(SourceFile:1)
at ksg.i(SourceFile:3)
at ksg.g(SourceFile:3)
at ksc.a(SourceFile:4)
at krt.run(SourceFile:3)
at krz.j(SourceFile:2)
at kry.onServiceDisconnected(SourceFile:7)
at android.app.LoadedApk$ServiceDispatcher.doDeath(LoadedApk.java:1997)
at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:2012)
at android.os.Handler.handleCallback(Handler.java:938)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
2021-10-02 08:32:45.577 7726-7726/? E/CAR.AUTH.LITE: Not completing service handshake due to error.
android.os.DeadObjectException
at android.os.BinderProxy.transactNative(Native Method)
at android.os.BinderProxy.transact(BinderProxy.java:550)
at cco.transactAndReadExceptionReturnVoid(SourceFile:2)
at mas.a(SourceFile:3)
at mgv.a(SourceFile:7)
at jzh.onStartCommand(SourceFile:6)
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:4320)
at android.app.ActivityThread.access$1800(ActivityThread.java:237)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1951)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:223)
at android.app.ActivityThread.main(ActivityThread.java:7664)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)
2021-10-02 08:32:45.981 4613-6523/? E/TaskPersister: File error accessing recents directory (directory doesn't exist?).
2021-10-02 08:32:46.081 0-0/? E/[1:Lacrima_startup: 7291] audit: rate limit exceeded
2021-10-02 08:32:46.305 7800-7800/? E/e.process.gapp: Not starting debugger since process cannot load the jdwp agent.
2021-10-02 08:32:46.338 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
2021-10-02 08:32:47.160 0-0/? E/[1:Lacrima_startup: 7291] audit: rate limit exceeded
2021-10-02 08:32:48.212 0-0/? E/[2: Thread-13:13834] audit: rate limit exceeded
2021-10-02 08:32:49.712 0-0/? E/[0:Chrome_InProcGp: 6404] audit: rate limit exceeded
2021-10-02 08:32:52.428 15795-15941/? E/CarrierServices: [3035] ccg.k: (RCS): [VPN]: NetworkType 17 not found.
Here we go october security update, here is a brief changelog
- Merged October security update
- Added more advanced burn in protection
- Further imrpoved handling of calls over bluetooth
- Synced with LOS source
Since Android 12 source is out now ill start working on getting it running on s8/s8+/n8 devices in coming days, Keep in mind i do this in my free time and free of charge (Donations do help get me a coffee and cover buid server cost tho) so no etas
Great ROM. Idle drain far better than one UI. Fast, snappy overall perfect. Thank you
Hiya folks.
Firstly thank you @Ivan_Meler for your work on this ROM !!
I've just inherited an N950F and am looking forward to flashing this sweet software.
(I'm yet to unlock bootloader, flash TWRP /&/ move from stock tho)
Just a couple questions about this ROM first:
Are there any S Pen features ?
Can I remap the Bixby button ?
Thanks in advance.
Nate
nathanielsametz said:
Hiya folks.
Firstly thank you @Ivan_Meler for your work on this ROM !!
I've just inherited an N950F and am looking forward to flashing this sweet software.
(I'm yet to unlock bootloader, flash TWRP /&/ move from stock tho)
Just a couple questions about this ROM first:
Are there any S Pen features ?
Can I remap the Bixby button ?
Thanks in advance.
Nate
Click to expand...
Click to collapse
As far as i have tested, there are no S pen features and the bixby button works as recent task button. Maybe somebody have tried a third party app but since you can root it there should be smth to use.
Prototype18 said:
As far as i have tested, there are no S pen features and the bixby button works as recent task button. Maybe somebody have tried a third party app but since you can root it there should be smth to use.
Click to expand...
Click to collapse
Sweet. Thanks for the info and prompt reply @Prototype18 ! Much appreciated
thanks for you effort.
does it support n9500?
chingchiu169 said:
thanks for you effort.
does it support n9500?
Click to expand...
Click to collapse
I think no. Only exynos
Build with november security update is up here is a brief changelog
- Merged November security update
- Fixed bt incall audio on even more devices
- Misc performance and stability updates
- Synced with LOS source
Big thanks to everyone who supported this project as their donations help cover the build server cost
also we are almost there with android 12 just sensor hal left to finish up as it was causing some random crashes
I ask again: Will OTA updates be available? -_-
Nice rom! I have been using it for couple days without problems
Does the pen work the same as in the stock rom ? Specifically : the floating cursor and button on the pen
Thtrr said:
Nice rom! I have been using it for couple days without problems
Click to expand...
Click to collapse
What gapps are you using?

Question App crashes with "To many Binders sent to SYSTEM"

12-02 16:38:13.792 E/BpBinder( 2658): Too many binder proxy objects sent to uid 1000 from uid 10363 (6000 proxies held)
12-02 16:38:13.792 E/ActivityManager( 2658): Uid 10363 sent too many Binders to uid 1000
12-02 16:38:13.796 I/sensors-hal( 1485): batch:207, android.sensor.accelerometer/11, period=200000000, max_latency=2000000000
12-02 16:38:13.796 I/sensors-hal( 1485): set_config:57, sample_period_ns is adjusted to 200000000 based on min/max delay_ns
12-02 16:38:13.796 I/sensors-hal( 1485): send_sensor_config_request:419, resampler is used, set resampler config
12-02 16:38:13.796 I/sensors-hal( 1485): send_sync_sensor_request:365, send sync request
12-02 16:38:13.796 I/sensors-hal( 1485): send_sync_sensor_request:391, wait for notification of response
12-02 16:38:13.798 I/ActivityManager( 2658): Killing 5973:com.innowireless.xcal.mobile5/u0a363 (adj 0): Too many Binders sent to SYSTEM
Can you tell what causes the App Crash?
If many calls are the cause, is there a way to plant a log of which uid is being called?
Any steps to reproduce that?
WalterCool said:
Any steps to reproduce that?
Click to expand...
Click to collapse
Thank you for your interest.
The ping test is conducted for 24 hours through the self-developed app.
Park Hyo Hyeon said:
Thank you for your interest.
The ping test is conducted for 24 hours through the self-developed app.
Click to expand...
Click to collapse
Hmmm, I think your problem is related to Android Development and not specific to Xperia 5 IV.
libs/binder/BpBinder.cpp - platform/frameworks/native - Git at Google
Looks like this error would happens when some application is spamming/abusing of binder calls. Just remember some background apps may fail to work after a while. Android recommends to use some Notification for background job at best.
WalterCool said:
Hmmm, I think your problem is related to Android Development and not specific to Xperia 5 IV.
libs/binder/BpBinder.cpp - platform/frameworks/native - Git at Google
Looks like this error would happens when some application is spamming/abusing of binder calls. Just remember some background apps may fail to work after a while. Android recommends to use some Notification for background job at best.
Click to expand...
Click to collapse
thank you
I will refer to the advice and check the error again.

Categories

Resources