Android M is coming tomorrow to an i9000 near you! - Galaxy S I9000 General

OK,
so i thought I would let everyone know tomorrow I will release the first M release for i9000, the reason I waited so long is because I felt it was pointless to release something that was barley working, now keep in mind there are still many stuff still to fix but its a great achievement after weeks of work which I would like to share with you.
So the first ROM will be OMNI, and before you all go crazy and say "you promised CM", It may come later but right now CM is so bloated its not worth it, I got it running but its slow as hell and has more work to do to bring it up.
Omni is usable but don't expect 5.1.1 performance, even using the overclocked kernel its pretty damn slow with the google framework.
Anyway here is the current progress:
Fully Working:
* Wifi
* RIL
* Sensors
* Audio
Unknown/half-baked:
* GPS (I'm not sure, I think it needs a few updates so don't count on it)
* BT (it turn on and connects but sometimes disconnects itself, anyway its 50% done)
* Camera (doesn't work using aosp app, works on 3rd party apps but for some reason rotation doesn't always work)
* Storage works but since we can't emulate partitions yet we only can used the shared data partition so no access to the full storage only 1.5GB or so, I will fix it once I figure out how to apply LVM to android M
Notes: I created a special gapps since system partition is too small even for omni and a pico gapps, it removes some apps that can be downloaded via play store such as browser and camera.
Also keep in mind its pretty sluggish at times, memory is used 100% of the time and zRAM is pretty slow
I will upload the package tomorrow.
On a side note: I used a special dedicated server with high speed internet to sync and push commits, I can't afford it myself anymore, its only $50 a month but sadly its too much for me, if I don't renew it by the 2, they will close me down and I will need to work on my home PC which is much slower and will take longer to compile, if anyone can donate anything it would help. I also spent $50 on this phone (I own a LG G3 as my main device) just to show you how much I want to help everyone out. its a fun hobby
Anyway feel free to comment.
Screenshot bellow
{
"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"
}

Deleted.

Amazing!!!

Ok, I will try Optimize
A-6.0.0 in coming

sooti said:
OK,
Unknown/half-baked:
* GPS (I'm not sure, I think it needs a few updates so don't count on it)
* BT (it turn on and connects but sometimes disconnects itself, anyway its 50% done)
* Camera (doesn't work using aosp app, works on 3rd party apps but for some reason rotation doesn't always work)
* Storage works but since we can't emulate partitions yet we only can used the shared data partition so no access to the full storage only 1.5GB or so, I will fix it once I figure out how to apply LVM to android M
Click to expand...
Click to collapse
Not sure exactly your sources, but with bluetooth you probably want to modify bdroid_buildcfg.h in device/samsung/galaxysmtd and disable BLE, GATT, and SMP from the bluetooth stack. To fix compilation issues, you will then need to apply Dmitry Grindberg's system/bt patch.
For the insufficient storage for gapps problem, you could try modifying the updater.sh and changing the SYSTEM_SIZE declaration near the top to something larger. Note that this does take away from /data. You could also try disabling DEX_PREOPT if you haven't already.
Did you get selinux working, even in permissive mode? If so, then I could probably help with creating the proper policies to set it to enforcing.
Anyways, thanks for all your work!

xc-racer99 said:
Not sure exactly your sources, but with bluetooth you probably want to modify bdroid_buildcfg.h in device/samsung/galaxysmtd and disable BLE, GATT, and SMP from the bluetooth stack. To fix compilation issues, you will then need to apply Dmitry Grindberg's system/bt patch.
For the insufficient storage for gapps problem, you could try modifying the updater.sh and changing the SYSTEM_SIZE declaration near the top to something larger. Note that this does take away from /data. You could also try disabling DEX_PREOPT if you haven't already.
Did you get selinux working, even in permissive mode? If so, then I could probably help with creating the proper policies to set it to enforcing.
Anyways, thanks for all your work!
Click to expand...
Click to collapse
Hey, regarding BT, it compiles fine, and turns on fine, i can connect to other devices, but sometimes get disconnections, in short its just not 100% stable
storage i'll look into it, thanks for the tip.
selinux is disabled right now, if you want to help me with se policies that would be great, i can probably do it myself but help would be great.
What wo;; DEX_PREOPT do?
big question is how to get it running smoother, even using commits from your kernel for OC its still slow as hell with gapps...

sooti said:
Hey, regarding BT, it compiles fine, and turns on fine, i can connect to other devices, but sometimes get disconnections, in short its just not 100% stable
storage i'll look into it, thanks for the tip.
selinux is disabled right now, if you want to help me with se policies that would be great, i can probably do it myself but help would be great.
What wo;; DEX_PREOPT do?
big question is how to get it running smoother, even using commits from your kernel for OC its still slow as hell with gapps...
Click to expand...
Click to collapse
DEX_PREOPT basically pre-compiles the system apps for ART. You can read more about it at https://source.android.com/devices/tech/dalvik/configure.html. It speeds up the first boot significantly at the trade-off for storage space. We have it enabled in BoardConfigCommon.mk
For the BT bit, when I first brought up my variant to Omni5.1 I didn't have those bits disabled and I got similar random disconnections, etc so I figured it might be a similar problem (plus on the CM13 branch on your github you have them enabled).
With selinux, where is it disabled? l couldn't get anything to boot if I had selinux enabled in the defconfig, but when I disabled selinx (as you have in the android-6.0 branch of your kernel) then things started booting.
And I have no idea how to get it running smoother....

xc-racer99 said:
DEX_PREOPT basically pre-compiles the system apps for ART. You can read more about it at https://source.android.com/devices/tech/dalvik/configure.html. It speeds up the first boot significantly at the trade-off for storage space. We have it enabled in BoardConfigCommon.mk
For the BT bit, when I first brought up my variant to Omni5.1 I didn't have those bits disabled and I got similar random disconnections, etc so I figured it might be a similar problem (plus on the CM13 branch on your github you have them enabled).
With selinux, where is it disabled? l couldn't get anything to boot if I had selinux enabled in the defconfig, but when I disabled selinx (as you have in the android-6.0 branch of your kernel) then things started booting.
And I have no idea how to get it running smoother....
Click to expand...
Click to collapse
I'll look into the bt, selinux is disabled in kernel
https://github.com/lollipopi9000/android_kernel_samsung_aries/commit/c1d925aeca5af739206df44f742ddb0d32ab6d3e

Your Bulid 6.0.0 support init.d ?

dracov76 said:
Your Bulid 6.0.0 support init.d ?
Click to expand...
Click to collapse
No idea...

Not ready??

althafvly said:
Not ready??
Click to expand...
Click to collapse
Almost, since I couldn't offord my build server I set up build on my local pc and its slow and has issues, hopefully in a few hours ill post it

i use on my old hp touchpad the new marshmallow version from flintman and it it's faster then the old 5.1.1 version. Perhaps you can ask him to improve the speed.

Trainer_H said:
i use on my old hp touchpad the new marshmallow version from flintman and it it's faster then the old 5.1.1 version. Perhaps you can ask him to improve the speed.
Click to expand...
Click to collapse
HP touchpad has 1GB of ram, that will work ok on 6.0, the i9000 has 512MB which 380MB are used for actual OS use, so you really are pushing the limit, i'll look into it in any case.
Also, official thread is up in development forum, I'm uploading the build now

Thanks God it's not CM. Please, not CM. Always that damn CM! Why? It is good, yes, but usually more laggy than others.

OmniROM 6.0 (Android M) v. ALPHA 2
When does the update do? Can not wait. Thank you
:good:

for I9000
Will it be capable of handling the firmware?
---------- Post added at 05:38 AM ---------- Previous post was at 05:37 AM ----------
abc_sk2002 said:
Will it be capable of handling the firmware?
Click to expand...
Click to collapse
not able to believe....

Related

the g1 is a phone. and a music player. talk about this.

hey i know the whole OMG APPS2SD WE HAVE ROOT thing is big around here. but i dont have use for apps2sd at all. i have 14 apps and i change firmware like 9001 times a day when something new comes out. but i have 2gigs of OGG music files. and every firmware i have used ends up bugging out when im playing music and i get a notifacation with the usb headphone adapter connected. could we get a firmware optimized for music and enjoying it instead of showing off our rooted phones with no real use behind it. redirect this post if you need to. i know the whole "WRONG FORUM TOPIC LOCKED" thing happens alot here.
you can try the getting the EQ mod or the Max volume mod as well
would there be any use in me attempting to set up the sdk and pulling an all nighter to learn how to make my own NON BLEEDING EDGE but very stable release? cuz i would love to just have a stable phone with every volume thing and EQ pre installed. and that pesky sound service bug, dats gotta get fixed.
navdroid said:
would there be any use in me attempting to set up the sdk and pulling an all nighter to learn how to make my own NON BLEEDING EDGE but very stable release?
Click to expand...
Click to collapse
kinda answered your own question there didnt you?
navdroid said:
cuz i would love to just have a stable phone with every volume thing and EQ pre installed. and that pesky sound service bug, dats gotta get fixed.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=517745
has preinstalled max volume, also a selection of the roms
You don't need the sdk to use the audio mods. Read a little bit more, and you will discover that you can use lucidrem's script to download the the audio mods without a pc. It takes a little patience,some time, and using the terminal. But it is easy if you follow the instructions. Also the developer of the audio mods also has several custom roms with the mods built in.
Edit. If you want a stable Rom use jf1.51, thedudes 1.2b you can add the audio mod on top of the using the bat files that comes with the audio mods
i'll try out *** - JF1.51 CRB43 US with V2 then. im used to using the terminal, its not a problem to mod my own, but being able to just quickly flash my phone back is too tempting. and @ubernicholi, i was meaning the sdk to build my own firmware as a whole. i assume its going to take me a while to understand why this whole multiple firmware bidness is a good thing, when its basicly taking all the newest unsupported code from the tree, and applying it and modifying it for the Dream handset, and in doing so, giving it 3rd party support. like downloading windows xp black pirate edition on TPB, to me its useless. ahhh the beauty of open source ^__^
why not go back to stock? it's not bleeding edge and it'll play your music just fine.
theres no shame in that.
wait. no, no...there is shame. terrible, terrible amounts of shame.
yea, but then i cant use debian. which is pretty cool so far.
{
"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"
}
SolemnWishing said:
Click to expand...
Click to collapse
you need to go to bed
lol I apologize I couldn't resist. So if a music centric build is what you are looking for, then it would be possible to strip out a lot of unnecessary features. First off, I think Google sync which is constantly running in the background can be taken out. Applications that are constantly refreshing, such as Mail can be removed. I understand you have apps to SD currently installed. Try internalizing the Music.apk, moving it back into the faster more reliable internal memory. Moreover, a good place to start I believe would be with the Google Ion build, which is lightning fast.
if i knew how to do that, i would slim down a stock JF update.
I think you should start out by flashing to Google Ion. Then, using ADB on your computer, enter ADB shell and being to manually remove the unnecessary applications. Whatever you don't need, take it out. As for Google sync, go to settings and disable it. Also in settings, disable notifications. At a point, you can even just turn off the radio and switch to airplane mode. That way no other services are running and you can listen to music uninterrupted, at the cost of not being able to accept calls.
wow, thanks for the support. i was looking at ION and thinking that it would be perfect. but im not really sure how to set up the development on fedora 11.
navdroid said:
wow, thanks for the support. i was looking at ION and thinking that it would be perfect. but im not really sure how to set up the development on fedora 11.
Click to expand...
Click to collapse
Ion FTW.
You set it up the same as you do on any other distro...
and...
what do you honestly do with debian on your phone?
As in on your computer? Are you running Linux or any operating system based on Linux? If so, unfortunately I can't help you there, I mostly use Windows and occasionally Wubi ):
(In all honesty I have very little knowledge when it comes to running Linux on a computer, so sorry about that haha)
I forgot to add, maybe increase your processor clock speed to 528Mhz. Look for an app called SetCPU. It is here on the forums for free, as the creator is among us or alternatively download it from the market, however it is a paid app on their.
if u use ion use R1 its faster than R2 in my opinion
i use um that overclock widget, i love that thing, works so well. umm. debian on my phone is pretty cool. it has potential. umm i might set this up and get a small release with just my name and roadmap on it.
navdroid said:
i use um that overclock widget, i love that thing, works so well. umm. debian on my phone is pretty cool. it has potential. umm i might set this up and get a small release with just my name and roadmap on it.
Click to expand...
Click to collapse
Hmm.. looking at your signature, overclocking your PC, and even getting Debian to work in the first place, I think you are definitely capable and very experienced. Best of luck to you
Let us know if you are able to get that stripped down version of Google Ion working. I would do it, but I don't know how to resign updates and I just finally settled down on Haykuro 6.0.1 after a ROM struggle between JAC's Hero, TwistedUmbrella's Hero and JF1.51 where I was flashing a new ROM on a daily basis.
my only thing is my work ethic and lack of programming experiance. if anyone could help me get started. hell, i might actually post something in the android development outlining the project goals and stuff like that.

[ROM][BETA] EnergyExpressoXDA v2.2.1.0.022 12-11 (Sense 2.2,Smartass,Cache2cache)

This ROM is rather incomplete as it is part of a project to backport parts of other HTC Sense 2.2 (Froyo) MDPI ROMs in ordr to have an HTC based Froyo ROM for Eris. Unlike the CyanogenMOD ports which have provided versions for models of their Froyo ROMs which were much easier to work on the Eris and have had 5+ months of painstaking work where this is only on its first month.
I'm just trying to get the optimization aspects done while others get full hardware functionality working, although I may join them soon. So what works? Allot actually. What doesn't? Thanks to Tazz, Tenzo, Conap & Decadance not much (BT audio, camera and WIFI hotspot).
It is fully themed using a combination of contributions providing a clean and somewhat unique Expresso look as well as many common performance tweaks which, to me, have provided a smoother, less choppy feel when interacting with the UI when compared to its parent ROMs.
Please note that portions of this ROM fall under the GPL, Apache and BSD licences. You may find the details of these licences here.
Since I rarely use the camera and never used BT audio I am currently using this as my day to day ROM. That does not mean it provides me a full experience. It is still very bleeding edge.
Features
Fully Expresso Based Themed
Additional Eye Candy
Official Google Reader
OI File Manager (Open Source, Apache License)
No BT Audio, Camera or Wifi Hotspot
Speed Optimizations
All HTC Goodies
Cache2cache (over 100MB additional app space)
Smartass CPU Scheduler (less voltage, automatic sleep cap, etc...)
CPU overclocking & underclocking provided by the feature above
HTC Marketplace in addition to Market
DroidX Boot Screen
No lame rainbow spotted default BG
etc...
New in this Release
Put all stock HTC apps back
Improved stability (less random FCs)
Removed OI Notepad since HTC Notepad works just fine
Added 3D gallery in addition to 2D gallery
Added Car Home (not tested)
etc...
{
"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"
}
Latest Download
Lite Version Download
NOTE:
Before releasing more updates I am moving my efforts towards helping Tazz & Tenzo with core functionality and take what I can for that and help Kaos with Gingerbread. Once all core functionality is in place for this ROM's parent ROMs I will get this going as a serious ROM with the same focus it has now. So development on this ROM is still 100% active but it is gonna take a bit before you see a new release.
If you want to donate then do so for the painful neuromuscular Cervical Dystonia disorder here. The only treatment is $3,000/15 injections worth of Botox every 3 months for the rest of my life.
thanks downloading now
cant wait to read all the responses about whether or not the camera works and all the *****ing about the camera not working. had to get my ***** about them out there.
rom sounds good. downloading now. always willing to play with a new rom.
thank you
Good job. I might try a flash.
wow slow downloading...lol
very nice looking,downloading now...looking forward to flashing
jdog94 said:
wow slow downloading...lol
Click to expand...
Click to collapse
Moved to a much faster 8 x64 CPUs/32GB RAM/SCSI server at my colo (able to serve about 1GBPS).
Hope it helps, sorry for the inconvenience.
I'm going to give this a try also. I've got two micro sd cards... one for Eclair ROMs and the other for Froyo ROMs. The Eclair card is partitioned for apps2sd and the Froyo card is all Fat32. I'm currently running Tenzo's xtrRCMix-Sense2.1 which is pretty awesome, but I think its time to swich cards for a while!
Installation aborted
Every time i try to flash it (downloaded it several times) it gives me "E:Can't open /sdcard/ExpressoEnergy.2.2.002.zip (bad). Not exactly sure what I'm doing since I have tried several times to download it.
also getting the bad zip please fix looks awesome
brandonpry said:
also getting the bad zip please fix looks awesome
Click to expand...
Click to collapse
Also....stoked to try but cant
Sent from my Tazz Vanilla using XDA App
kkpsichologist said:
Every time i try to flash it (downloaded it several times) it gives me "E:Can't open /sdcard/ExpressoEnergy.2.2.002.zip (bad). Not exactly sure what I'm doing since I have tried several times to download it.
Click to expand...
Click to collapse
I'm getting the same thing.
I'm getting installation aborted when I try to install it. I did a complete wipe and boot in recovery.
I tired re signing the .zip file I downloaded and even that wouldn't work. I opened it in winRAR just to check and I get a break operation where it says unexpected end of archive and it says there are 0 bytes of data. Properties says its 120MB but I don't have a checksum to verify that the file is intact. It seems whatever was uploaded has been corrupted.
The archive is corrupt. Please re-upload it.
johnny quest said:
I'm getting installation aborted when I try to install it. I did a complete wipe and boot in recovery.
Click to expand...
Click to collapse
Ditto here.
I downloaded it late last night and it took FOREVER! I see he updated the link... Anyhoo. I was able to get it to install and it seemed pretty smooth/stable. I saw a couple FCs.. one in particular was in Settings > Network > Mobile Net options. Each time I tried to get into that setting page, it would FC. I also tried to get Facebook from the Market and it would never download.
I like the new sense ui though! it looks really clean. I've not sampled Tazz's or Tenzo's yet.
No LWPs worked for me.
Switching back to XTRSense for now.
Keep up the work!
timmywa said:
I downloaded it late last night and it took FOREVER! I see he updated the link... Anyhoo. I was able to get it to install and it seemed pretty smooth/stable. I saw a couple FCs.. one in particular was in Settings > Network > Mobile Net options. Each time I tried to get into that setting page, it would FC. I also tried to get Facebook from the Market and it would never download.
I like the new sense ui though! it looks really clean. I've not sampled Tazz's or Tenzo's yet.
No LWPs worked for me.
Switching back to XTRSense for now.
Keep up the work!
Click to expand...
Click to collapse
Will you upload it for us since the OP is AFK?
Pretty please?
timmywa said:
I downloaded it late last night and it took FOREVER! I see he updated the link... Anyhoo. I was able to get it to install and it seemed pretty smooth/stable. I saw a couple FCs.. one in particular was in Settings > Network > Mobile Net options. Each time I tried to get into that setting page, it would FC. I also tried to get Facebook from the Market and it would never download.
I like the new sense ui though! it looks really clean. I've not sampled Tazz's or Tenzo's yet.
No LWPs worked for me.
Switching back to XTRSense for now.
Keep up the work!
Click to expand...
Click to collapse
Settings > Network > Mobile Net options. is a known fc issue on ports from gsm
timmywa said:
I downloaded it late last night and it took FOREVER! I see he updated the link... Anyhoo. I was able to get it to install and it seemed pretty smooth/stable. I saw a couple FCs.. one in particular was in Settings > Network > Mobile Net options. Each time I tried to get into that setting page, it would FC. I also tried to get Facebook from the Market and it would never download.
I like the new sense ui though! it looks really clean. I've not sampled Tazz's or Tenzo's yet.
No LWPs worked for me.
Switching back to XTRSense for now.
Keep up the work!
Click to expand...
Click to collapse
were you able to get bluetooth audio to work? I've been using Tenzo's which is awesome except the bluetooth will connect but i can't hear out of it (which is necessary in CA for driving)

[ROM] Vanilla AOSP Gingerbread v1.03 w/OC Kernel (updated 20110507)

Vanilla Flavored AOSP (Gingerbread 2.3.4)
Gtablet AOSP is a project for pure vanilla Android with the Gtablet. It aims to be bare bones and as true to the AOSP code as possible. The Google AOSP code is modified as little as possible to provide functionality, and the ability to boot. It is stripped down for modification by the end user.
Using CyanogenMod device files, Pershoot's latest kernel (20110501, 2.6.32.39 with overclock ability), and some cherry picked cyanogenmod/nv-tegra files, a functional 'rom' and a github repo for this project has been created. As functionality has been added since inception, more pieces from Cyanogen are making there way in (browser fix and tweaks, some under the hood stuff, internal storage fixes, etc) to improve overall experience. All variances from original AOSP code is visible via the public git.
Huge props to the Gtablet and the Cyanogen development community. Without your work, this wouldn't be possible.
Thanks to EJHart for his direct assistance with getting this project up and running. Thanks to GoJimi for a bunch of tweaks. Thanks to Pershoot for the pimp kernel. And thanks to Bekit and the Harmony team, as well as the Cyanogenmod team... probably more...
To use this rom, you will use ClockwordMod to flash the zip file as you would any other rom. I have only used ClockworkMod .8 in my testing.
DISCLAIMER: I cannot be held liable for anything you do to your GTablet. Make sure you are comfortable with recovery tools, such as nvflash, before proceeding. Do not overclock unless you fully understand the risk, by default this rom won't overclock on it's own.
Download V1.03 (20110503)
V1.03 zip file -- http://www.mediafire.com/?aj69ubpkm3dfk3x
MD5 -- b621ca65ee3f91d9c2bf5e8ab9125edf
Overclock kernel -- The default max scaling clock is 1ghz. Therefore to overclock, you will need to change the speed via a third party app (like setcpu) or to do it via the shell. With SetCPU, using the automatic detection mode should work, and allow you to change min/max speed.
Gapps -- Current Gingerbread GAPPS will work -- http://goo-inside.me/google-apps/ (Latest is 20110307 Universal).
Known Issues:
Most if not all the issues facing Cyanogen 7
Changes:
v1.03
External mounting now supports emmc and sdcard simultaneously.
FLAC decoding is included.
Minor upstream changes.
v1.02:
Fixed YouTube HQ video
Fixed h264/x264 video recognition
Fixed file downloads in browser
Latest GAPPS now work (no longer requires dated 20110120 build).
Forked skia from CM7 for performance enhancements
Previous builds see attached changelog.
Hardware acceleration for video and audio is a work in progress by the CM7 team You will find the hw acceleration works well with certain videos, including YouTube HQ. Video acceleration can be overwhelmed with larger files, overclocking the unit makes a noticeable difference.
---------------------------------------------------------------
BUILD YOUR OWN:
GitHub -- https://github.com/aosp-gtablet
Use this project from github to create your own image:
repo init -u git://github.com/aosp-gtablet/gtablet-aosp.git
The process for CM7 will work. Run extract-files.sh, run envsetup.sh, lunch, make -j[X] bacon. Anything more is outside the scope of this post.
** Additional notes -- GoJimi's Soft Buttons are available in the source code, but are disabled in this release.
I am a minimalist, and I know there are others. I hope others enjoy, and help make this a better project
Please let me know what bugs you find so I can work on them! Thanks.
Screenshots:
{
"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"
}
Note:
The max scaling clock is set to 912MHZ on boot. If you are not planning on using SetCPU and/or cpufreq sysfs to adjust your clocks, and you would like to run at max 1GHZ, do this for your specific device:
adb shell
cd /sys/devices/system/cpu/cpu0/cpufreq
echo 1000000 >scaling_max_freq
Alternatively, you can create an init.d script (on boot) and/or a gscript (manual click) to do this for you.
.....
Known Issue:
-If you are overclocking, please downclock to 1000 or below, before mounting USB. After dismounting, it can be clocked back up. Alternatively, you can disconnect the plug, and it will unmount.
CTRL + D'ed!
GAPPS+ROM is good to go
So apparently the GAPPS issue I found with this rom last night after rounds of testing was isolated to my tablet. I found an IO error on /data, which I have since resolved and proven this works just fine.
Is the G-sensor and camera working correctly?
theheathen said:
Is the G-sensor and camera working correctly?
Click to expand...
Click to collapse
+1, my camera in Vegan Gingerbread is really bad, like 8-bit color.
Current status
I have resolved the issue with GL games such as Samurai II crashing... there was some missing GL code in the source which has been applied (https://github.com/aosp-gtablet/gta...mmit/54cb22b60cbd654e3ddfda0b20e80f0452597f15). I have added Video Hardware Acceleration from the recent CM7 commits for stagefrighthw from Ventana. It loads matroska videos, but freezes within seconds of starting to play. This does not occur in CM7, so I have spent time trying to isolate what's causing it in AOSP. I don't know if it's something in stagefright or something else. I am working on an update which will include the GL fixes, the Browser agent set to Desktop by default, and catching up commits for IO performance increases.
Regarding the GSensor, it works properly to the best of my knowledge. The camera pictures work with a delay, and video recording still crashes. It looks grainy, and this may be due to the fact we are using Froyo libraries to accomplish functionality.
Does this ROM support FLAC?
scotchguy said:
Does this ROM support FLAC?
Click to expand...
Click to collapse
OP updated.
Regarding FLAC -- it's not currently implemented, but is on my list of items to add.
if your using the latest kernel, you don't need a custom setcpu file in /data/local anymore. use setcpu -> auto.
there is no more usb mount/unmounting issues. there is sufficient luns in the kernel to accomodate.
also, the default max scaling clock is now 1GHZ, and not 912MHZ.
pershoot said:
also, the default max scaling clock is now 1GHZ, and not 912MHZ.
Click to expand...
Click to collapse
Thanks pershoot, I have updated the OP accordingly.
I think it's time I try this ROM again
2.3.4 is supposed to have Google video chat built-in. Have you tested this out by chance?
Coldfirex said:
2.3.4 is supposed to have Google video chat built-in. Have you tested this out by chance?
Click to expand...
Click to collapse
I have been playing with the new Google Talk which has video. When initiating a connection, it crashes. I am not sure if this is specific to our device or the 1.3 Google Talk. Also, I am not sure it would work right now since the camcorder functionality is broken in Gingerbread GTablet.
i'm getting the "no sd card found" when trying to download anything. i did a full wipe and re-partitioned the internal sd but still getting the same thing. did i miss something?
Thanks for the build! Definitely moving in the right direction. However, a few notes:
- For some reason Google services (Gmail, Talk, News, Voice, Market, etc.) are not present. Market has an icon but is crashing. This really kills much of the functionality of the build.
- Most acceleration seems to work, but on some HD content I am still getting errors. A few games are also malfunctioning (Gun Bros, for example).
- Voice recognition, for some reason, is not available.
But I feel like this is very close! Great work so far! It is already significantly faster than the old build I was using.
Multimedia hardware acceleration works? So do we now have Nvidia drivers for Gingerbread? Or is this some fancy footwork?
asilentcivilian said:
i'm getting the "no sd card found" when trying to download anything. i did a full wipe and re-partitioned the internal sd but still getting the same thing. did i miss something?
Click to expand...
Click to collapse
This appears to be an issue which I did not originally reproduce. I will work on fixing this as soon as possible for the next build.
devilsadvocatenu said:
Thanks for the build! Definitely moving in the right direction. However, a few notes:
- For some reason Google services (Gmail, Talk, News, Voice, Market, etc.) are not present. Market has an icon but is crashing. This really kills much of the functionality of the build.
- Most acceleration seems to work, but on some HD content I am still getting errors. A few games are also malfunctioning (Gun Bros, for example).
- Voice recognition, for some reason, is not available.
But I feel like this is very close! Great work so far! It is already significantly faster than the old build I was using.
Click to expand...
Click to collapse
Thanks for the feedback. Google services are part of the separate gapps download. They should work fine. I will check out voice recognition.
adampdx said:
Multimedia hardware acceleration works? So do we now have Nvidia drivers for Gingerbread? Or is this some fancy footwork?
Click to expand...
Click to collapse
The hardware acceleration is in recent CM7 commits. It calls on portions of code from nvidia ported in, plus the Ventana board stagefrighthw library. This allows things like x264 to work.
Current issues
So I have isolated a few priority issues in the current v1.01.1 build which I will work on addressing as soon as possible:
* Youtube does not play video correctly. This is the same behavior I see with certain x264 videos which play music but seem to crash the gallery player. This appears isolated to this current build.
* Downloading files from the browser currently does not work.
-----------
This is all fixed in v1.02

[ROM][4.4.4]VanirAOSP[OFFICIAL][Galaxy Exhibit-SGH-T599X]

{
"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"
}
Smooth like Butta
Follow on G+: Team Vanir
Vanir Team:
NuclearMistake
Sonicxml
DHO
PrimeDirective
Not all features are available yet.
Features:
Welcome to VanirAOSP. Our mission is to deliver a clean optimized version of Android with subtly improved versions of the features you love to as many devices as possible. we've tried to incorporate and improve our features in a way that makes them more cohesive to improve the overall user experience while correcting any performance regressions and improving functionality..
What to expect:
- This is not a McCopy ROM. What goes into our build is well thought-out and not a bunch of stuff duck taped together because we could.
- maximum optimization. We do our research. We test hard. We build -fstrict -O3 globally and include a massive array of code optimizations and memory leak fixes that we write ourselves and eventually submit to AOSP or Linaro.
- originality in our source. We generate a lot of new commits being features or general code improvements. We are open source to share and improve the community but we also try to make sure we offer a unique experience.
- aesthetics.. hopefully in your opinion
General features:
stock mode - ability revert to stock AOSP code with the exception of a few custom features we chose to keep active
enhanced performance.. longer uptime with less slowdown
custom written CRON and init.d.
UI and graphics improvements
custom navbar, navring, and hardware key features
improved notification handling (active display & halo are in review also)
usability improvements like power reboot menu and sound
animation control
Improved Vanir keyboard
CM's profiles & quicksettings
additional quicksetting tiles
immersive mode
statusbar mods
clock & battery mods
lockscreen blur and other mods
soon to come -> quick cam and flash notifications
busybox, embedded root, init.d, cron etc
yatta yatta yatta
more to come when i feel like updating the op
Changelog:
**Vanir Open Status
**Vanir Merged Status
Vanir Downloads (nuclearmistake):
**Nightlies
Recovery Downloads:
**TWRP 2.7
**CWM
Vanir Github:
**VanirAOSP Git
Gapps:
**4.4.2 PA Gapps
Installation Instructions
Make sure your using twrp above it's required
Full wipe
Install ROM
Install Gapps
Thanks
TeamVanir
Meticulus
Everyone here for keeping me inspired
Too many to thank. You know who you are who stood by since day 1
Reserved

			
				
Awesome Job Unjustified Dev! Another New Great ROM to add to the list. It's definitely smooth like butter! Thank you!
Sent from my SGH-T599X using XDA Premium 4 mobile app
Thanks for this ROM which someone can fix the BT audio in call but thanks I will use this one I like thanks again
Sent from my SGH-T599N using xda app-developers app
Tethering
Nice to see a few ROMs for the T599! I am testing on the T599 T-Mobile variant.
Maybe there is an issue with Bluetooth.
Bluetooth tethering is not working.
But, WiFi tethering is working fine. :good:
Installed smoothly once I updated CWM. Will post on how it goes from here.
ps That's a bad ass boot image lol
Edit: Not a fan of how you put Vanir over the space bar, but I guess it doesn't matter because I'm not going to be using the stock keyboard anyway.
Edit2: Phone seemed to turn off randomly in the middle of the night, other than that it's working great so far.
Edit3: The music app combined with DSP Manager is pretty neat. If the music is distorting, the music app will pause to avoid damaging your system.
Edit4: Screen recording completely freezes the phone.
Kennehisftw said:
Installed smoothly once I updated CWM. Will post on how it goes from here.
ps That's a bad ass boot image lol
Edit: Not a fan of how you put Vanir over the space bar, but I guess it doesn't matter because I'm not going to be using the stock keyboard anyway.
Edit2: Phone seemed to turn off randomly in the middle of the night, other than that it's working great so far.
Edit3: The music app combined with DSP Manager is pretty neat. If the music is distorting, the music app will pause to avoid damaging your system.
Edit4: Screen recording completely freezes the phone.
Click to expand...
Click to collapse
Screen recording doesn't work on these devices. I am removing the option that shows that to prevent device freezing.
I've redone the device tree and device is now codinalte. I made this change so that the assert checks won't allow flashing of older recoveries which would lead to device bootloops if used with the new j4fs and param setup.
Make sure you see the new instructions.
Changelog
-Used gcc 4.8 instead of 4.7 now that it's been tested.
-Removed all device asserts to prevent use of older recoveries.
-Disabled the use of screen record
-Switched device name to codinalte to cause less confusion with ace 2 users
-Upstream Vanir changes
-Philz cwm , cwm , and twrp now available for codinalte enabled builds only
Excellent ROM
Sent from my SGH-T599N using XDA Premium 4 mobile app
To everyone wondering this is the initial release of codinalte. I made this change to ensure everyone would be on the correct recovery and if you are on an older one it wouldn't let you install it . It would cause a bootloop due to the mismatch of j4fs and param module. This is the only way I can think of to ensure everyone is safe.
Unjustified Dev said:
To everyone wondering this is the initial release of codinalte. I made this change to ensure everyone would be on the correct recovery and if you are on an older one it wouldn't let you install it . It would cause a bootloop due to the mismatch of j4fs and param module. This is the only way I can think of to ensure everyone is safe.
Click to expand...
Click to collapse
What bugs does this have other than the Bluetooth audio? Same as Omni Rom?
Cogra147 said:
What bugs does this have other than the Bluetooth audio? Same as Omni Rom?
Click to expand...
Click to collapse
Yes , we should all have the same bugs. The only ones that will make a difference are rom specific issues.
Unjustified Dev said:
Yes , we should all have the same bugs. The only ones that will make a difference are rom specific issues.
Click to expand...
Click to collapse
Here are some bugs I'd experienced recently with VanirAOSP ROM latest build.
1. Last night I had set my alarm clock to wake up this morning but the alarm didn't go off because I found my phone shutdown or powered off. Apparently the randomly shutdown in the middle of the night.
2. Yesterday I had two occasions where my Network was lost completely. I had to reboot the phone to get it back.
3. I noticed that when I receive a call or make a call the volume sounds like is half way down. I always have my volume set all the way up. When someone calls me I have to hit the volume down one or twice and then back up to fix the loudness of the call. Something is not right.
4. I noticed that when ever I play and embedded YouTube Video whether in a Browser of any kind or an RSS Reader it FCs the application before the video starts. All the time. Here is an example. I recorder this LogCat for you....https://www.dropbox.com/s/aaf7wgywrf66b7a/2014-03-17-14-15-24.txt I try playing a YouTube video on this website.. http://sploid.gizmodo.com/here-are-7-facts-about-superheroes-you-probably-didnt-1541767101 on the AOSP Browser and same thing happens with other Browsers and apps with YouTube Video embedded in them.
Sent from my SGH-T599N using XDA Premium 4 mobile app
DJVargas said:
Here are some bugs I'd experienced recently with VanirAOSP ROM latest build.
1. Last night I had set my alarm clock to wake up this morning but the alarm didn't go off because I found my phone shutdown or powered off. Apparently the randomly shutdown in the middle of the night.
2. Yesterday I had two occasions where my Network was lost completely. I had to reboot the phone to get it back.
3. I noticed that when I receive a call or make a call the volume sounds like is half way down. I always have my volume set all the way up. When someone calls me I have to hit the volume down one or twice and then back up to fix the loudness of the call. Something is not right.
4. I noticed that when ever I play and embedded YouTube Video whether in a Browser of any kind or an RSS Reader it FCs the application before the video starts. All the time. Here is an example. I recorder this LogCat for you....https://www.dropbox.com/s/aaf7wgywrf66b7a/2014-03-17-14-15-24.txt I try playing a YouTube video on this website.. http://sploid.gizmodo.com/here-are-7-facts-about-superheroes-you-probably-didnt-1541767101 on the AOSP Browser and same thing happens with other Browsers and apps with YouTube Video embedded in them.
Sent from my SGH-T599N using XDA Premium 4 mobile app
Click to expand...
Click to collapse
You could try this for low call fix http://forum.xda-developers.com/showthread.php?t=2676518
Use the onlyincallfix.apk it should work to fix volume please confirm this.
The video problem is due to the patches we used not supporting a certain function required for the video playing. The phone randomly dying is something i know nothing about as of yet.
Does it work on the international version and does it have random reboots like in the latest CM11?
LMH1998 said:
Does it work on the international version and does it have random reboots like in the latest CM11?
Click to expand...
Click to collapse
This is not for s3 mini. Please wait some time for me do a test build. I don't have the s3 mini but it's a similar device. If you want I can send you a pm of the test build. Please continue this conversation in a private message.
Phone died overnight even though on charger. I believe its the performance function. Installed voltage control. Still testing. Will post results.
Sent From DWil's Magic Carpet t599n
wilbigdaddy2000 said:
Phone died overnight even though on charger. I believe its the performance function. Installed voltage control. Still testing. Will post results.
Sent From DWil's Magic Carpet t599n
Click to expand...
Click to collapse
I am looking into it. I haven't noticed why it did that yet. I can add back dvfs limit if you think it's the voltage. Basically you won't be able to use performance control it will stay at 0 for min and max.
Unjustified Dev said:
I am looking into it. I haven't noticed why it did that yet. I can add back dvfs limit if you think it's the voltage. Basically you won't be able to use performance control it will stay at 0 for min and max.
Click to expand...
Click to collapse
wilbigdaddy2000 said:
Phone died overnight even though on charger. I believe its the performance function. Installed voltage control. Still testing. Will post results.
Sent From DWil's Magic Carpet t599n
Click to expand...
Click to collapse
The same thing happened to me, but while running Beanstalk. I have been running Vanir for the past few days and I have not seen any issues with FC or reboot yet. Battery life appears to be excellent, lasting 48 + hours with light use.
I am running the T-Mobile variant.

[UNOFFICIAL][ROM][13] LineageOS 20

{
"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"
}
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.
*/
LineageOS is a free, community built, aftermarket firmware distribution of Android 13 (T), which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. This version comes in two flavors, GMS and vanilla. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review.
Installation
Here
Extra features:
MindTheGapps included
3 finger swipe screenshot
NoName (4.14.314) kernel included
Stock-like FOD implementation
Signature spoofing patches
Download
GMS
Vanilla
Lineage Recovery
If you like my work consider supporting me:
Ko-Fi
Notes
Core google apps are pre-included in the GMS variant, hence it isn't needed to flash them on-top
Lineage Recovery included
Android 11 firmware Based​
Android OS version: 13
Security patch level: May 2023
Build author/Device Maintainer: Skyblueborb
Support Group: Here
Device Source code: Here
Vendor Source code: Here
Kernel Source code: Here
Source code: https://github.com/LineageOS
​
RESERVED
Changelod 05.05.2023:
• Updated to May ASB
• Introduced network traffic indicator
• Improved system smoothness on default kernel
• Improved UDFPS latency
Thanks friend. Just what I ve ben waiting for.
This looks tasty!
Two Questions:
(A) Is it possible to upgrade from your other LineageOS 18.1 Rom, or is a clean install required?
(B) I do a lot of long exposure pictures and therefore use the pro mode on the stock camera app quite often. Is it included again? (The camera app in LineageOS was always very limited years ago, I don't know how it is now.)
Typhoon_Master said:
This looks tasty!
Two Questions:
(A) Is it possible to upgrade from your other LineageOS 18.1 Rom, or is a clean install required?
(B) I do a lot of long exposure pictures and therefore use the pro mode on the stock camera app quite often. Is it included again? (The camera app in LineageOS was always very limited years ago, I don't know how it is now.)
Click to expand...
Click to collapse
A) you can't dirty flash, clean flash required
B) the stock cam is not included, but the aperture camera lineage 20 comes with is really great, not sure about long exposure shots tho, probably some gcam would suit that need nicely
Skyblueborb said:
RESERVED
Click to expand...
Click to collapse
Hi,
I installed your rom on my Mi A3 European model.
Since one week, everything went well, and overall everything works fine except:
- SMS won't send if LTE call are activate (I use google message app)
- Battery decreases when I use android auto in my car (connected on USB) whereas before (A11 xiaomi stock rom) my phone was charging
- The "night filter lighting" is too much yellow even when setting it to the minimum (0% now is ~30% before on A11 xiaomi stock rom)
- The automatic brightness works badly (I had to use macrodroid to manage this setting)
Otherwise thank you very much for your work, everything else works perfectly for the moment. It's the first time I use lineageos on my phone, how will it be for updates? (OTA or manually?)
Hobbi1 said:
Hi,
I installed your rom on my Mi A3 European model.
Since one week, everything went well, and overall everything works fine except:
- SMS won't send if LTE call are activate (I use google message app)
- Battery decreases when I use android auto in my car (connected on USB) whereas before (A11 xiaomi stock rom) my phone was charging
- The "night filter lighting" is too much yellow even when setting it to the minimum (0% now is ~30% before on A11 xiaomi stock rom)
- The automatic brightness works badly (I had to use macrodroid to manage this setting)
Otherwise thank you very much for your work, everything else works perfectly for the moment. It's the first time I use lineageos on my phone, how will it be for updates? (OTA or manually?)
Click to expand...
Click to collapse
1st and 2nd issues i haven't encountered (i don't have android auto easily accessible to test), night light can somewhat be tuned manually via the live display color calibration, auto brightness is tuned to your usage, if you have it enabled try nudging the bar to how you like it, after a while it will follow the preferences you set.
I might implement OTA, but that would still require at least one manual upgrade
Glad you enjoy the rom
Thanks a lot for the rom. Everything works perfect out of the box. I did a clean install coming from your lineageos 18 build. The new lineageos camera app is really good. I could easily install microG and universal safetynet fix. If we can't find updates here, I'll take a look at your telegram channel OTA would be a great solution to this.
Any chance of trying to go official? The immediate advantage would be the automated (weekly) builds, with free OTA upgrades, and fixes from the upstream devs when they break things on their side.
Skyblueborb said:
1st and 2nd issues i haven't encountered (i don't have android auto easily accessible to test), night light can somewhat be tuned manually via the live display color calibration, auto brightness is tuned to your usage, if you have it enabled try nudging the bar to how you like it, after a while it will follow the preferences you set.
I might implement OTA, but that would still require at least one manual upgrade
Glad you enjoy the rom
Click to expand...
Click to collapse
Hi,
For Android Auto, I tried with another USB cable and it charges correctly during use. It's strange the USB cable I had, worked perfectly for 2 years, I tried it again after android auto update and the phone still discharges but less... I think it comes from android Auto updates more than your rom.
Now I'm looking to recover the stock camera app from the mi A3 which allows the use of wide angle, the 48Mpx sensor and saving directy on SD card.
Anyone tried ANXCamera?
Can you release a version without the GAPPS ?
Or at least with the minimal Pico variant?
There are people who really dislike to see google everywhere and prefer to use devices that are out of the scope of constant surveillance and some of them prefer using LOS exactly with that idea in mind.
enapah said:
Any chance of trying to go official? The immediate advantage would be the automated (weekly) builds, with free OTA upgrades, and fixes from the upstream devs when they break things on their side.
Click to expand...
Click to collapse
There are several problems with official, the source modifications i made aren't allowed in official (without them performance would be slower, FOD would be blinding, just to name a few)
nov01 said:
Can you release a version without the GAPPS ?
Or at least with the minimal Pico variant?
There are people who really dislike to see google everywhere and prefer to use devices that are out of the scope of constant surveillance and some of them prefer using LOS exactly with that idea in mind.
Click to expand...
Click to collapse
Please read the post again, especially the download section, the vanilla version is available, and the gms variant is (as it states in the notes) only core Gapps (playstore and play services)
Skyblueborb said:
There are several problems with official, the source modifications i made aren't allowed in official (without them performance would be slower, FOD would be blinding, just to name a few)
Click to expand...
Click to collapse
Thanks for your time
Edit (quick reply posted prematurely on line change, sorry): Because you already build two different versions (GMS and vanilla) maybe it would be feasible to have the "less than ideal but well supported" official version while still keeping the "optimized and overall better" fork? Just spitballing here, I am fully aware of the hurdles the device charter creates -- incidentally, those that make it through the process usually end-up being well supported all-around.
I second that, that would be wonderful. People are so disappointed by Xiaomi about the A3. A nice device with great hardware but abandoned early by Xiami and the community and lots of problems during its official life span.
enapah said:
Thanks for your time
Edit (quick reply posted prematurely on line change, sorry): Because you already build two different versions (GMS and vanilla) maybe it would be feasible to have the "less than ideal but well supported" official version while still keeping the "optimized and overall better" fork? Just spitballing here, I am fully aware of the hurdles the device charter creates -- incidentally, those that make it through the process usually end-up being well supported all-around.
Click to expand...
Click to collapse
I thought long and hard about applying for official, but in the end i didn't think it would succeed, there are a plethora of different officially supported roms for A3 which would all perform better than Lineage official, and i feel that official is really limiting what i can do. About mainting two versions, yes i do, theoretically even 4 versions (GMS/Vanilla for Los 18/20), but official also needs a lot of attention, they require you to spend time on it, and that would mean it would eat more of my time, doing a thing i do not believe will succeed (maybe the fod can be fixed, but geekbench scores and others cannot be easily fixed from the device tree alone)
And what do you mean about the good all-round support? Getting regular updates?
The whole device tree and vendor passes the device requirements afaik, but i don't wanna release a build with FOD that doesn't have dimming, it would really make the build failed in my eyes.
Hey thank you for this great ROM, I really love it, it has much better functionality then stock. I like the adb root feature. Of course official would be nice, but I understand your decision.
I am having only one issue: When calling with headset via audio jack the volume is way to high even on the lowest setting. Is there any way to change this? Couldn't find a proper way to adjust that.
Thank you for a reply
MeatHill said:
Hey thank you for this great ROM, I really love it, it has much better functionality then stock. I like the adb root feature. Of course official would be nice, but I understand your decision.
I am having only one issue: When calling with headset via audio jack the volume is way to high even on the lowest setting. Is there any way to change this? Couldn't find a proper way to adjust that.
Thank you for a reply
Click to expand...
Click to collapse
The volume of the mic, or the volume of what you hear?
Hey, I am interested in installing this on my Xiaomi MI A3. Does it support adding a work profile/account? This is a feature that I use on my stock rom and it is essential. Thanks
Eleari said:
Hey, I am interested in installing this on my Xiaomi MI A3. Does it support adding a work profile/account? This is a feature that I use on my stock rom and it is essential. Thanks
Click to expand...
Click to collapse
Are you talking about the launcher (some google launchers have seperate tabs at the top to pick which profile to open an app in) or system wide (when you have a logo in the status bar/qs that you can open to sign in to another "account")?

Categories

Resources