The extra features of the newest Kindle for Android app are really neat on Honeycomb, but it force closes. I've found two cases:
1. When the device is in landscape mode.
2. When you open a book.
Obviously, both of these are fail, and the second renders Kindle on Honeycomb useless. Problem is the API level. Note:
Code:
I/dalvikvm( 1767): Could not find method android.view.ViewGroup.setSystemUiVisibility, referenced from method com.amazon.kcp.reader.ReaderActivity.setSystemUiVisibility
W/dalvikvm( 1767): VFY: unable to resolve virtual method 1227: Landroid/view/ViewGroup;.setSystemUiVisibility (I)V
D/dalvikvm( 1767): VFY: replacing opcode 0x6e at 0x000a
D/dalvikvm( 1767): GC_CONCURRENT freed 606K, 37% free 7390K/11651K, paused 4ms+13ms
D/dalvikvm( 1767): GC_CONCURRENT freed 1044K, 34% free 7749K/11651K, paused 3ms+5ms
D/AndroidRuntime( 1767): Shutting down VM
W/dalvikvm( 1767): threadid=1: thread exiting with uncaught exception (group=0x40014760)
E/AndroidRuntime( 1767): FATAL EXCEPTION: main
As you can see, it is trying to call android.view.ViewGroup.setSystemUiVisibility, which, according to the API reference, was released in API level 11, as per this link:
http : / / developer.android.com/reference/android/view/View.html#setSystemUiVisibility(int)
(sorry for the broken link, but this is my first post, and, well, you know...)
Looks like there is no way around it, far as I can tell, except to rebuild the base image using the newer API. The v04 image we've all got access to was built, iirc, from the "preview" Honeycomb SDK AVD, which had API level 10.
Bummer, huh? Anyone have any ideas? Does deeper-blue want to hand me some notes so I can rebuild the image from the newer SDK release?
Thanks!
Here is the cliff notes:
http://www.xda-developers.com/android/how-to-port-honeycomb-to-your-favorite-device/
Good luck if you are going to try. Seems like most developers have given up on Honeycomb, preferring to wait for the Ice Cream release that comes with a source.
My experience is the same as clstearns (thanks for the thread, BTW).
The kindle app is critical to me as I have the Nook Color in large part to share books with my wife (who uses a kindle), though I was excited about the rest of Honeycomb as well. But without a functioning kindle app I'll probably restore the NC and return it to Best Buy.
I'll watch here to see if anything develops in the next week or two, by which time my refund period will expire.
Amazon.Kindle.v2.0.4.103870164.apk works with Honeycomb v4.
smpainter2 said:
Amazon.Kindle.v2.0.4.103870164.apk works with Honeycomb v4.
Click to expand...
Click to collapse
Thanks so much for the hint dude. My entire argument for putting honeycomb on my gf's nook was hinged on the fact that she can use kindle too. I'm setting it all up while she's at work and I was freaking when I found out the app FC.
I downloaded my apk here, just to save some one some time. Cheers fellow nook color users!
So the Samsung Clock is force closing when passing it an alarm intent from NFC Task Launcher. I need someone with an S3 to capture that logcat output and send it to me so I can see if I can fix it. Any takers?
Edit:
I made a quick APK, no NFC tag needed - anyone can test this, I just need the logcat output. The following APK should make the S3 clock app crash when it's run (in theory). I need to know why (logcat output would be really helpful).
APK in the 4th post
http://forum.xda-developers.com/showpost.php?p=27742575&postcount=4
Anybody I can create a quick APK to simulate this if anyone wants to do it but lacks NFC tags.
I have S3 and have NFC tags...if you tell me EXACTLY what to do, I will help.
ANDREW
adchesney said:
I have S3 and have NFC tags...if you tell me EXACTLY what to do, I will help.
ANDREW
Click to expand...
Click to collapse
I made a quick APK, no NFC tag needed - anyone can test this, I just need the logcat output. The following APK should make the S3 clock app crash when it's run (in theory). I need to know why (logcat output would be really helpful).
In case you are curious about nefarious activities, here's the code:
Code:
public class ClockTestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void setAlarm(View v)
{
Intent intent = new Intent();
intent.setAction(AlarmClock.ACTION_SET_ALARM);
intent.putExtra(AlarmClock.EXTRA_HOUR, 3);
intent.putExtra(AlarmClock.EXTRA_MINUTES, 25);
intent.putExtra(AlarmClock.EXTRA_SKIP_UI, true);
startActivity(intent);
}
}
Edit: Capturing logcat output:
If you have ADB set up you can merely plug the device in and issue:
adb shell logcat > debug.log
This will dump all output to this file. Run the app, hit OK on the crash. Break the dump (ctrl-c) and send the log file.
If you don't have ADB set up you can use something like aLogcat (https://play.google.com/store/apps/details?id=org.jtb.alogcat). Install and start that. Same as above, run the application and let the clock app crash. Go back into aLogcat and send the log (can reach me at gmail, krohnjw) or attach it here.
Email sent with attachment...I hope I've done it right.
ANDREW
adchesney said:
Email sent with attachment...I hope I've done it right.
ANDREW
Click to expand...
Click to collapse
You did, thank you. Now to see if I can get it sorted out. If anyone is curious here's the exception that's causing some perfectly valid code to crash on this device.
Code:
E/AndroidRuntime( 4529): FATAL EXCEPTION: main
E/AndroidRuntime( 4529): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sec.android.app.clockpackage/com.sec.android.app.clockpackage.alarm.HandleSetAlarm}: java.lang.NullPointerException
E/AndroidRuntime( 4529): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1970)
E/AndroidRuntime( 4529): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1995)
E/AndroidRuntime( 4529): at android.app.ActivityThread.access$600(ActivityThread.java:128)
E/AndroidRuntime( 4529): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1161)
E/AndroidRuntime( 4529): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4529): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 4529): at android.app.ActivityThread.main(ActivityThread.java:4514)
E/AndroidRuntime( 4529): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4529): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 4529): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:993)
E/AndroidRuntime( 4529): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:760)
E/AndroidRuntime( 4529): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 4529): Caused by: java.lang.NullPointerException
E/AndroidRuntime( 4529): at com.sec.android.app.clockpackage.alarm.HandleSetAlarm.onCreate(HandleSetAlarm.java:54)
E/AndroidRuntime( 4529): at android.app.Activity.performCreate(Activity.java:4562)
E/AndroidRuntime( 4529): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1053)
E/AndroidRuntime( 4529): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1934)
krohnjw said:
You did, thank you. Now to see if I can get it sorted out. If anyone is curious here's the exception that's causing some perfectly valid code to crash on this device.
Code:
E/AndroidRuntime( 4529): FATAL EXCEPTION: main
E/AndroidRuntime( 4529): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sec.android.app.clockpackage/com.sec.android.app.clockpackage.alarm.HandleSetAlarm}: java.lang.NullPointerException
E/AndroidRuntime( 4529): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1970)
E/AndroidRuntime( 4529): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1995)
E/AndroidRuntime( 4529): at android.app.ActivityThread.access$600(ActivityThread.java:128)
E/AndroidRuntime( 4529): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1161)
E/AndroidRuntime( 4529): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4529): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 4529): at android.app.ActivityThread.main(ActivityThread.java:4514)
E/AndroidRuntime( 4529): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4529): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 4529): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:993)
E/AndroidRuntime( 4529): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:760)
E/AndroidRuntime( 4529): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 4529): Caused by: java.lang.NullPointerException
E/AndroidRuntime( 4529): at com.sec.android.app.clockpackage.alarm.HandleSetAlarm.onCreate(HandleSetAlarm.java:54)
E/AndroidRuntime( 4529): at android.app.Activity.performCreate(Activity.java:4562)
E/AndroidRuntime( 4529): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1053)
E/AndroidRuntime( 4529): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1934)
Click to expand...
Click to collapse
Hey krohnjw! Were you able to figure out the issue and a work around? I also have an app that sends an alarm intent and I'm hearing issues from users with Samsung devices (it works perfectly on all other devices) and I can't really pinpoint the issue (I only have a Galaxy Tab 10.1). One user told me that he has a Galaxy Note With ICS 4.0.4 (Touchwiz) and one person wrote a review saying that the app was being funky on his GSIII with the preinstalled alarm app anddd I got a ANR report from a GT-I9100M (which after a quick Google search shows that it's a GSII) . This is pretty confusing and a bit frustrating since I don't have the issue right in front of me. Hopefully you can shine some light on this issue :/
Game4set said:
Hey krohnjw! Were you able to figure out the issue and a work around? I also have an app that sends an alarm intent and I'm hearing issues from users with Samsung devices (it works perfectly on all other devices) and I can't really pinpoint the issue (I only have a Galaxy Tab 10.1). One user told me that he has a Galaxy Note With ICS 4.0.4 (Touchwiz) and one person wrote a review saying that the app was being funky on his GSIII with the preinstalled alarm app anddd I got a ANR report from a GT-I9100M (which after a quick Google search shows that it's a GSII) . This is pretty confusing and a bit frustrating since I don't have the issue right in front of me. Hopefully you can shine some light on this issue :/
Click to expand...
Click to collapse
yeah. Send me a pm. I'm a bit busy tonight but I can send you over the relevant info by tomorrow evening most likely.
Sent from my Nexus 7 using Tapatalk HD
krohnjw said:
yeah. Send me a pm. I'm a bit busy tonight but I can send you over the relevant info by tomorrow evening most likely.
Sent from my Nexus 7 using Tapatalk HD
Click to expand...
Click to collapse
PM sent!
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?
{
"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?
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.