Hi
Guys i hear about kernel and can be flash into the device
What kernel can do?
if it helpful for the device can i have a new kernel for my device
Thanks guys
Search for kernel in Google. Kernel is the heart of our mobile. You can flash modified kernels.
Sent from my GT-I9082 using xda premium
IRAQIGHOST said:
Hi
Guys i hear about kernel and can be flash into the device
What kernel can do?
if it helpful for the device can i have a new kernel for my device
Thanks guys
Click to expand...
Click to collapse
Try google like maxxinn said for better info.
But basically, Kernel the the software between your firmware/ROM and our phone. Kernel is how your ROM governs your phone. So kernel has to be different for each phone model.
Stock kernels usually just have the essential things, just to run the phone like it should. Custom kernels have tweaks to make your phone better in several ways like faster, less lag, overclocking and better response and input options.
For our phone there is custom kernel but only for 4.1.2
k2wl is working on 4.2.2 kernel but it's not finished yet, but it's up for testing
What is KERNEL ?
{
"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"
}
A kernel isn't something unique to Android -- iOS and MacOS have one, Windows has one, BlackBerry's QNX has one, in fact all high level operating systems have one. The one we're interested in is Linux, as it's the one Android uses. Let's try to break down what it is and what it does.
Android devices use the Linux kernel, but it's not the exact same kernel other Linux-based operating systems use. There's a lot of Android specific code built in, and Google's Android kernel maintainers have their work cut out for them. OEMs have to contribute as well, because they need to develop hardware drivers for the parts they're using for the kernel version they're using. This is why it takes a while for independent Android developers and hackers to port new versions to older devices and get everything working. Drivers written to work with the Gingerbread kernel on a phone won't necessarily work with the Ice Cream Sandwich kernel. And that's important, because one of the kernel's main functions is to control the hardware. It's a whole lot of source code, with more options while building it than you can imagine, but in the end it's just the intermediary between the hardware and the software.
When software needs the hardware to do anything, it sends a request to the kernel. And when we say anything, we mean anything. From the brightness of the screen, to the volume level, to initiating a call through the radio, even what's drawn on the display is ultimately controlled by the kernel. For example -- when you tap the search button on your phone, you tell the software to open the search application. What happens is that you touched a certain point on the digitizer, which tells the software that you've touched the screen at those coordinates. The software knows that when that particular spot is touched, the search dialog is supposed to open. The kernel is what tells the digitizer to look (or listen, events are "listened" for) for touches, helps figure out where you touched, and tells the system you touched it. In turn, when the system receives a touch event at a specific point from the kernel (through the driver) it knows what to draw on your screen. Both the hardware and the software communicate both ways with the kernel, and that's how your phone knows when to do something. Input from one side is sent as output to the other, whether it's you playing Angry Birds, or connecting to your car's Bluetooth.
It sounds complicated, and it is. But it's also pretty standard computer logic -- there's an action of some sort generated for every event. Without the kernel to accept and send information, developers would have to write code for every single event for every single piece of hardware in your device. With the kernel, all they have to do is communicate with it through the Android system API's, and hardware developers only have to make the device hardware communicate with the kernel. The good thing is that you don't need to know exactly how or why the kernel does what it does, just understanding that it's the go-between from software to hardware gives you a pretty good grasp of what's happening under the glass.
Click to expand...
Click to collapse
j.posarekar70 said:
Click to expand...
Click to collapse
Nice 1 buddy
Special Thanks
Thanks guys for replay
I Will try to install a new one for my device
Related
Sorry if I'm misunderstanding how this works, but I don't understand what a kernel does. I recently installed the Franco kernal Milestone 2 onto my Android Revolution 3.0 ROM. I thought it would add new options to my device or something based on the description of the kernel, but I feel as if nothing changed...
Would anyone be kind enough to explain how these things work?
To put it as simply as I can, and the way I understand it (correct me if I am wrong anyone).. A kernel is the code between the ROM and the actual phone hardware itself, so in order for your firmware to communicate with your device hardware, it uses this middleman known as a kernel.
The easiest way to explain it is to say the kernel is like the brain for Android while the ROM is it's body. It's the core part of any operating system that is responsible for the most basic tasks such as turning on and off LEDs, charging the battery, distributing processor time to different apps/processes, etc.
You can find more about their differences @
ROM-VS-Kernel
xHausx said:
The easiest way to explain it is to say the kernel is like the brain for Android while the ROM is it's body. It's the core part of any operating system that is responsible for the most basic tasks such as turning on and off LEDs, charging the battery, distributing processor time to different apps/processes, etc.
You can find more about their differences @
ROM-VS-Kernel
Click to expand...
Click to collapse
A kernel is the ECU in a car.
The rest is the OS
I should be able to answer this myself since I just took a class that covered the basics of computing last semester, but despite the dozens of pages of notes, I can't. So... Wikipedia:
In computing, the kernel is the main component of most computer operating systems; it is a bridge between applications and the actual data processing done at the hardware level. The kernel's responsibilities include managing the system's resources (the communication between hardware and software components)
Click to expand...
Click to collapse
http://en.wikipedia.org/wiki/Kernel_(computing)
Which explains why you would flash a kernel that improves battery life (resource and power management) and/or increasing the processor's clock speed.
The Linux kernel handles the process sharing (multitasking), resource management and using device drivers abstracting the hardware from the applications.
A user program might address memory, but this is in a virtual address space. The kernel uses memory management to map this to physical memory (and maybe swap it out if other programs need to run).
(The kernel is in the middle (like the kernel of a nut). It is surrounded by the shell (like a nut!) )
{
"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"
}
Ah, aha! Thank you! So basically I have to read the description of the kernel and what it does before I install it, because the things it changes aren't actually options? This makes more sense now. Thanks for the help everyone!
Luuthian said:
Ah, aha! Thank you! So basically I have to read the description of the kernel and what it does before I install it, because the things it changes aren't actually options? This makes more sense now. Thanks for the help everyone!
Click to expand...
Click to collapse
Franco lets you change options through his app...
https://play.google.com/store/apps/details?id=com.franco.kernel
Or if you're running a custom rom, many of these options are changeable in the "performance" section of the rom settings.
Does the Kernal have anything to do with the radio function? Reception?
Sent From My Sprint Galaxy Nexus via XDA Premium
ÜBER™ said:
Sent From My Sprint Galaxy Nexus via XDA Premium
Click to expand...
Click to collapse
Ha ha ha ha ha!!!!!
keving75 said:
Does the Kernal have anything to do with the radio function? Reception?
Click to expand...
Click to collapse
My mistake.
Does the Kernel affect the radio function? What about GPS lock?
Luuthian said:
Sorry if I'm misunderstanding how this works, but I don't understand what a kernel does. I recently installed the Franco kernal Milestone 2 onto my Android Revolution 3.0 ROM. I thought it would add new options to my device or something based on the description of the kernel, but I feel as if nothing changed...
Would anyone be kind enough to explain how these things work?
Click to expand...
Click to collapse
Latest milestone its 3 and this speaks by itself :
Sent from my Galaxy Nexus using xda premium
I also would have accepted colonel sorcerer.
Any word on getting around the Sprint blocks (error 67) on a stock-derived ROM? WiFi tether works fine, but I'd rather use USB since it is faster, more secure, less of a PIA, and saves battery on my phone and laptop. I'm looking for a real solution where the phone relays the PC's packets, not some janky solution that involves an application running on my computer and/or the phone changing packet headers.
I'll probably switch to Cyanogen when a stable build is out, but until then...
So, no one knows how to USB tether? Damn.
You want rndis. This has been in the Linux kernel since 2.6 or so, but I haven't seen a prebuilt kernel that has it enabled.
(I'm a Linux guy, not an Android guy, so take the following with a grain of salt...)
I've been trying to get this working, which I thought would be a fairly trivial task (Set up a cross-compiler, download the Samsung kernel sources, turn on iptables and rndis, build kernel and modules, copy over, and go home happy.)
What I've found is:
1) Setting up the toolchain and building the cross-compiler is easier than expected because folks have automated most of it. (Look up crosstool-ng... sexy!)
2) Downloading the Samsung sources is easier than expected; Samsung has 'em right on their web site.
3) Stepping into Samsung's kernel source tree is like walking into a horror movie. You can almost see little sticky notes reading "OK GUYS I GOT THIS THING WORKING, DON'T KNOW HOW, NOBODY TOUCH IT" hanging off things. Maybe I'm just spoiled by being used to kernel source trees where changes are vetted by committee.
Part of the problem is that the stock kernel that comes on the phone is not compiled with CONFIG_IKCONFIG_PROC (which would let you check out the config at /proc/config.gz), and extract_ikconfig doesn't like it either. (This means that instead of starting with a known-good configuration and changing things slowly from there, as you would on a Linux box, you get to start with a "sounds-good-to-me" configuration and hope it works, which is extra-fun given that a lot of the things Samsung added are undocumented (and occasionally unlabeled).
Anyway, I'm working on it, but just building a kernel has turned out to be nontrivial. Once I get the stock Samsung kernel compiling, getting rndis and iptables going should be pretty easy, even if the code for them has to be merged in (this stuff has been in the linux kernel forever).
As an update, I got Garwynn's newest community kernel to build using a somewhat modified config extracted from the whompasaurus kernel (which is Perseus) (I did that because I didn't want to make sure I had drivers for all the twiddles and bobs in whompasaurus). The new kernel is running great!
It turns out that a little kernel hacking is going to be involved for those who want RNDIS and the android gadget driver; config makes them mutually exclusive. It will bear some looking into to see why that is (it might not need to be set up that way). One of the gadgets excluded is the Samsung Exynos Superspeed USB 3.0 device, which I do not think is an issue for the Note 2, but could well be a deal breaker for upcoming Exynos 5 phones. I'm too tired to dig through all the drivers and see what exactly is being broken, but that would need to be done before I declared this to be a good tradeoff.
For now, I'm just going to build it with RNDIS and without android gadget, and see how my phone likes it (and how USB tethering works).
Late breaking update: The RNDIS code in the kernel appears broken. Looks like a scope-of-function problem (conflicting functions named rndis_bind_config); will hack it into submission tomorrow.
I was about to look to see how you can enable USB tether till I realized my wifi tether is just as fast
{
"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"
}
Any updates, really need usb tether for my car stereo
Sent from my PG86100 using xda app-developers app
I tried to build kernels with all three RNDIS kernel drivers. I did some hacking to try to get the samsung gadget that includes RNDIS to build, but have stopped work on this because:
1) I think getting this to work would take a significant investment of time
2) Samsung has announced that my phone will get Android 5; Android 5 is supposed to be Linux 3.9.x; so any work I do now will be obsolete in a couple months.
Note that I am not talking about getting Sprint's paid tethering app to work; I am talking about using the native rndis support in the linux kernel. (Frankly, that's probably all theirs is too, but they got the driver to compile.
I want this to work too, but I am done messing with it until Android 5.
dear 1ceb0x
first of all i want to thank you very much for creating your great rom.
after installing it, it was the first time i had a responsive smartphone.
as we all know, android is open source and as the Apache License states, derived work must be open source, too.
so will you provide a source code repository or (at least) a downloadable zip of your rom sources somewhere?
this is less about obeying the rules, i'm just frightened, something might happen to you so you can't continue working on the rom and all your work would be lost...
he built it from source as in built from scratch
well - sure he built it from source - from HIS sources
this isn't AOSP vanilla, it's a modified version of the android source, so those sources must be republished
>>??
u can use the rom as base just as long he provides permission to do so
Seraz007 said:
>>??
u can use the rom as base just as long he provides permission to do so
Click to expand...
Click to collapse
sorry, don't want to be offensive, but this is nonsense.
there's nothing to need permission for.
as long as it's an android rom (which it really seems to be), it is work derived from AOSP and there the license clearly points out what I stated.
(see http://source.android.com/source/licenses.html)
and even if it wasn't - this doesn't answer my concerns regarding him not being able (or wanting) to continue development.
wait for 1ce's reply as i dont get what you're sayin (sorry ) :angel::angel:
as for dev. he will sell his v so i think that's the reason he cant continue
:highfive:
when the time comes i will provide my sources. in the meantime, shpongle is yet to see some new updates.
1ceb0x said:
when the time comes i will provide my sources. in the meantime, shpongle is yet to see some new updates.
Click to expand...
Click to collapse
Great to hear this... waiting for update eagerly as i need to give away this after flashing your final rom.
BTW i got my white nexus 4. Hope to see you soon there too...
@rolandkohn don't get me wrong but it's 1ce's decision. He is not forced to release anything because shpongle is a personal project. 1ce built it for himself and was kind enough to share it for free. If he pleases he can also remove the download links and you can't do anything about it. Hence the best approach will be to kindly ask him for source code and not talk about licensing or trying to force his hand. You can take the licensing part with HTC if you want to fight that battle.
ok guys just drop the topic b4 it gets ugly
i first wanted to write this as a personal message, but in the end (as a software developer myelf who wants his licensing terms be cared about), i think this is something important enough for everyone on xda to think about:
please - everyone here - don't get ME wrong...
it's absolutely not that i woud want to force anyone to do something.
as you can see in my first post i was just asking if he would release the source, as i was worried about the future of the project because he's getting a new phone.
for that part, this thread is answered to me. i'm fine with it, no need for further discussion!
now about the licensing part and - as it seems to me, some general misunderstandings here on XDA:
sorry, but you're so wrong. he definitely IS forced to release its source. the apache license (which applies to android) states so. those licenses aren't only about comercial projects, they are about using the original source and doing something with it - You can imagine it as a contract between google and the developer, google gives the sources out for free, but want the terms to be followed in return.
Everyone who is involved into development (and if it's even just using the rom) can be happy, that google is offering android (the open source parts) for free under the apache license. google invested quite some man hours (and money) into android and they've been so kind to let it be open source. anyhow this (the apache license) states that any modification to the source must be made public for everyone (in special the original license holder) to see the changes, to learn from them and to make things in their projects better. if any develper doesn't accept the licensing terms, you don't need to use the sources to do something with them.
btw - it's not my fault that some smartphone manufacturers (e.g. as mentioned htc) don't care about this.
{
"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"
}
@rolandkohn I can understand that you are afraid that shpongle development might be over since 1ce has bought a new device and that you or anyone else would like to get 1ce sources to continue the development. My reply was about your tone. It would have been better if you asked nicely, instead of being (kind of) rude.
PS: are you sure that the licensing applies to all the projects? For example I am playing with CM sources and I'm building a ROM for personal use. Am I forced to make those sources public? I don't think so.
\Post doesn't belong here. Sorry
nepotu said:
It would have been better if you asked nicely, instead of being (kind of) rude.
Click to expand...
Click to collapse
uh - did it sound rude to you? I'm really sorry then. It absolutely wasn't ment anyhow offensive and I'd like to excuse for this.
nepotu said:
PS: are you sure that the licensing applies to all the projects? For example I am playing with CM sources and I'm building a ROM for personal use. Am I forced to make those sources public? I don't think so.
Click to expand...
Click to collapse
well - another very big excuse from my side.
i did quite some reading meanwhile and i have to admit - seems i was wrong.
please - everyone excuse me for my aggressive behavior, it seems i somehow mixed GPL/AL. :angel:
as i've read now, you're indeed allowed to even create proprietary work - so software you charge people for - out of AL licensed code.
this means that even HTC & such are fine with not releasing their sources, as long as it's not about GPL licensed stuff (e.g. the kernel).
facebook sync
do anyone knows how to sync clender and contacts with facebook
Weird thing i found is how invisible this release from WPH is.
The Notification Center, the dream of every Windows Phone is forgotten !
I tested the app on my own phone... it doesn't work. OK, but still i found absolutely no thread about this Xap, i think it could be developped if known better (jaxbot has retired from the WP7 scene i think, so i guess he won't do it. We can be grateful for this very good start)
{
"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"
}
Here is his the presentation of the app found i here
There's been more opposition for this project than with... well, I tried to come up with a good joke, but let's cut to the chase.
I've decided to release a rewrite I made of Notifications. It only works on full unlocked devices. Here's the details:
This app caches the push notifications sent to your phone. So if someone mentions you on Twitter, and you miss the toast, it will appear in Notifications.
This app does not cache non-push messages, such as texts, emails, calls, etc.
Complete rewrite; it works differently than the original Notifications app. No PC tether, no external servers, etc.
The NC service runs on the device. This is why you need your device to be full unlocked.
I'll repeat that. It must be full unlocked, meaning you must be able to run EXE programs on it.
The setup is simple. Download and install it to your device. Run the app, and it should take you to the setup page. Press install, then agree to the disclaimer. It will prompt you to reboot. Do so, and with any luck, it'll work.
I'm releasing it without support. Notifications works for some people, doesn't for others. The problem is likely to do with full unlocking. If you have a custom ROM that is fully unlocked, it should work. As for EXE unlocking rooted devices, it may be hit or miss. We'll see on that.
The source is available on Github. Download the XAP here: ncroot1.xap. If you didn't read anything else: You need a policy unlocked or full unlocked device. If your device is not full unlocked, read the instructions appended below.
Also, if you want to test if it works, install SimplePush. It'll send a quick toast to your device.
Other than that, enjoy. I'm curious to see what the feedback is, and whether or not it works in certain scenarios. I don't know what the demand is to keep working on it, but here it is, and with that, enjoy.
Update: Should now work on interop-unlocked devices, provided you use WP7 Root Tools. To do this, install the XAP, mark it as "Trusted", run Notifications, click Install, and reboot your phone. Presto. Do give feedback on whether or not this works.
Xap File : View attachment ncroot1.xap
[QRCODE]http://goo.gl/jUScYQ[/QRCODE]
Source on github
As I understand it Jaxbot withdrew this after he was made aware of security vulnerabilities it exposed my MS.
Sent from my Lumia 920 using Board Express
pvt_nemesis said:
As I understand it Jaxbot withdrew this after he was made aware of security vulnerabilities it exposed my MS.
Sent from my Lumia 920 using Board Express
Click to expand...
Click to collapse
Oh, that's a shame :S
rsepierre said:
i think it could be developped if known better
Click to expand...
Click to collapse
It's just a http server written using .Net (not silverlight), that listens for every push notification. But I really don't know what we can develop in this application. Any idea?
well personnaly i don't like the idea to have notification push making my phone ring every minuts (if i'm active on facebook or twitter).
So i use snotify to silence the notifications. This app would be ideal to tell me what did i miss on what app.
That's an exemple for one use, but i'm sure there is many others.
Actualy for twitter, my dream would be an app that puts in cache every tweets i missed (or the number of tweet i missed, even if i'm not mentionned, or every tweet from some selected profiles) so i would know if its worth opening the app or no (instead of checkin every 10 mins if there's something interesting) but we're maybe out of subject !
Any idear why it wouldn't work on my device btw ? I am full unlocked (septvies's devbuild_8862 1.5) on samsung Omnia 7
This is a Magisk module that adds a hardware overlay for the Xperia 10 III for any PHH-Treble based ROM.
This amongst other things enables auto brightness!
To install, simply copy to your phone, and in Magisk use the "install from storage" option, then reboot.
While this overlay is based on official Sony files, it should be considered very experimental because I have no idea what I'm doing. GLHF
{
"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"
}
Upstream PR: https://github.com/phhusson/vendor_hardware_overlay/pull/413
Many thanks to ada12, j4ger, and in particular phhusson.
pepijndevos said:
This is a Magisk module that adds a hardware overlay for the Xperia 10 III for any PHH-Treble based ROM.
This amongst other things enables auto brightness!
To install, simply copy to your phone, and in Magisk use the "install from storage" option, then reboot.
While this overlay is based on official Sony files, it should be considered very experimental because I have no idea what I'm doing. GLHF
View attachment 5458901
Upstream PR: https://github.com/phhusson/vendor_hardware_overlay/pull/413
Many thanks to ada12, j4ger, and in particular phhusson.
Click to expand...
Click to collapse
hi . your overlay is fine exept you have missed to remove some no-existing attribute for phh-gsi see https://github.com/pepijndevos/vendor_hardware_overlay/pull/1
phh said in my PR "I'll allow it" regarding these properties, which is why I left them. https://github.com/phhusson/vendor_hardware_overlay/pull/413#issuecomment-968368630 but I have not heard from him since, so unclear to me if he'll whitelist them or what I should do about them. If he'd told me to remove them I'd obviously have done so.
pepijndevos said:
phh said in my PR "I'll allow it" regarding these properties, which is why I left them. https://github.com/phhusson/vendor_hardware_overlay/pull/413#issuecomment-968368630 but I have not heard from him since, so unclear to me if he'll whitelist them or what I should do about them. If he'd told me to remove them I'd obviously have done so.
Click to expand...
Click to collapse
/vendor_hardware_overlay/tests/tests.sh tell you if its fine I recommand you to check witch it if you want phh merge PR.
pepijndevos said:
This is a Magisk module that adds a hardware overlay for the Xperia 10 III for any PHH-Treble based ROM.
This amongst other things enables auto brightness!
To install, simply copy to your phone, and in Magisk use the "install from storage" option, then reboot.
While this overlay is based on official Sony files, it should be considered very experimental because I have no idea what I'm doing. GLHF
View attachment 5458901
Upstream PR: https://github.com/phhusson/vendor_hardware_overlay/pull/413
Many thanks to ada12, j4ger, and in particular phhusson.
Click to expand...
Click to collapse
Phhusson have merged my PR .
See https://github.com/phhusson/vendor_hardware_overlay/pull/423
Overlay checked in sources & tested its fully stable.
Its will be included in next phh release its good news!
Great news. Bit weird that he did not give feedback on my PR for almost a month and then merged yours, but whatever.
One weird issue I'm having with my phone is that audio from Whatsapp/Signal/Twitter spaces plays at 3x speed fragments. I should test if this overlay has any effect on that. @ada12 does calling in Whatsapp/Signal work for your?
pepijndevos said:
Great news. Bit weird that he did not give feedback on my PR for almost a month and then merged yours, but whatever.
One weird issue I'm having with my phone is that audio from Whatsapp/Signal/Twitter spaces plays at 3x speed fragments. I should test if this overlay has any effect on that. @ada12 does calling in Whatsapp/Signal work for your?
Click to expand...
Click to collapse
I use WhatsApp for professional . call & video call is normal here . need look in your logcat what happened
pepijndevos said:
Great news. Bit weird that he did not give feedback on my PR for almost a month and then merged yours, but whatever.
One weird issue I'm having with my phone is that audio from Whatsapp/Signal/Twitter spaces plays at 3x speed fragments. I should test if this overlay has any effect on that. @ada12 does calling in Whatsapp/Signal work for your?
Click to expand...
Click to collapse
In lineage 19 sources ( Andy yan ) have added great AOD configuration also
Configure AOD for Sony Xperia 10 III · AndyCGYan/[email protected]
Change-Id: I6a1ac887b0e2ac3b3d63d0a2d05957cb6018d83b
github.com