Related
how do i enable/disable JIT with recent kernel/ froyo rom
I've read that some cookers keep it enable while other one don't
I would like to test the difference on Thoughtlesskyle's
I think you can enable it when you compile a version of new build... Maybe you can ask to Thoughtlesskyle if he can do it for you
Happy new year.
Cheers.
chourmovs said:
how do i enable/disable JIT with recent kernel/ froyo rom
I've read that some cookers keep it enable while other one don't
I would like to test the difference on Thoughtlesskyle's
Click to expand...
Click to collapse
manu33xtro said:
I think you can enable it when you compile a version of new build... Maybe you can ask to Thoughtlesskyle if he can do it for you
Happy new year.
Cheers.
Click to expand...
Click to collapse
happy new year manu
i just want the command line or the script to do the trick (ie: sh jitenable.sh like compcache or something about dalvik i don't remember)
and another one to verify if it is enable/turned on
I've already read it on several topic but no way to find it again
my wish for 2011 : a good and complete wiki for polaris android user with all this explained
I think it's in the build.prop
enable
dalvik.vm.execution-mode=int:jit
disable
dalvik.vm.execution-mode=int:fast
meknb said:
I think it's in the build.prop
enable
dalvik.vm.execution-mode=int:jit
disable
dalvik.vm.execution-mode=int:fast
Click to expand...
Click to collapse
i see thank you
in CM, we can enable/disable it via option panel so i thought it was possible "live" with every mod with the good kernel
Hi guy,
Happy new year
Can you put here the results of your tests ?
Cheers.
chourmovs said:
i see thank you
in CM, we can enable/disable it via option panel so i thought it was possible "live" with every mod with the good kernel
Click to expand...
Click to collapse
Of course i'll do it
You could probably set it live with setprop ie
setprop dalvik.vm.execution-mode int:fast
Click to expand...
Click to collapse
Not 100% sure as i havent a android device at the moment to test on?
meknb said:
You could probably set it live with setprop ie
Not 100% sure as i havent a android device at the moment to test on?
Click to expand...
Click to collapse
thx, i did an androidupdate.tar with properly configurated built.prop
It doesn't hurt the system but i'm not really sure of my conclusion
Linpack score didn't change a lot in fact...
I wait for better explanation/instruction, if any
Hi all! i liked to introduce my own build.prop tweaks that i got from my FRIEND IN GTALK :i know a lot of you think that build.prop is just a file that will let you modify the ROM name in about phone but build.prop is actually a configuration file you write a line of code into build.prop and that line tells the android system what to do.
for example lets take
Code:
debug.sf.hw=X
now this line tells the android OS how to render the UI,
Code:
debug.sf.hw=0
means that the OS uses CPU to render UI and if its
Code:
debug.sf.hw=1
it means that OS uses GPU to render the UI. (notice that we dont have this line in build.prop because our phone CPU and GPU sucks )
ok so now that you all know what build.prop can do lets get to the actual tweaks
**NOTE! If you dont have these lines on build.prop just add them to the last line in build.prop, BUT if you have these then you can just change the values
1.) save power while phone is in sleep mode
Code:
ro.ril.disable.power.collapse=1
2.) make the phone ring faster when dialing out
Code:
ro.telephony.call_ring.delay=1000
3.) make UI and scrolling more responsive (notice that this line should already be in build.prop but with different value)
Code:
windowsmgr.max_events_per_sec=150
4.) save battery by decreasing the amount of time Wifi looks for an access point (now it searchs an wifi acces point every 1.5 minute instead of 45secs)
Code:
wifi.supplicant_scan_interval = 150
5.) Change the Dalvik VM heap size (this line is also in build.prop, you can change the value whatever you like and test if it makes your system more stable but 32m is recommended, and in my phone its 32m by stock)
Code:
dalvik.vm.heapsize=32m
6.) disable usb debugging popup
Code:
persist.adb.notify=0
7.) get better signal and data
Code:
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=5
8.) enable JIT
Code:
dalvik.vm.execution-mode=int:jit
9.) disable JIT
Code:
dalvik.vm.execution-mode=int:fast
10.) fix that SUPER annoying black screen after/during call (i think its in build.prop already but with higher values)
Code:
mot.proximity.delay=150
11.) to enable lockscreen unlocking with menu button (true=enable and false=disable)
Code:
ro.config.hw_menu_unlockscreen=false
12.) change the lcd density (icons become smaller and you can gett more stuff on your home screen)(change to any value and test it ) **NOTE** this is just an example value
Code:
ro.sf.lcd_density=225
13.) enable Stagefright helps stream Video and Music Faster but may not let you watch recorded videos
Code:
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=true
media.stagefright.enable-http=true
ok. now to another tweaks ok so i recently got a bunch of build.prop code from my friend because i helped him on xda but i have no idea what they mean so here they are! (if you know what these mean please leave a reply and share your knowledge!)
Code:
persist.sys.use_dithering=0
Code:
persist.sys.purgeable_assets=1
Code:
dalvik.vm.dexopt-flags=m=y
Mod edit : removed the same dont use huge bold letters pls it looks like ur screaming
**note: my friend gave me most of these tweaks, the only ource i used besides my friend is this, now PLEASE stop quessing the source
MORE TO COME!
P.S ROM devs are free to use these tweaks, just give me the credits and a thanks
reserved for later use
Hmm nice... and very useful ) Congratulations
Our galaxy 3 is becoming epic phone
benzyniarz1 said:
Hmm nice... and very useful ) Congratulations
Click to expand...
Click to collapse
yes it is and nobody in G3 forums hasnt posted these before me... odd
Thank you excellent work mate !!! :d
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Rapier07 said:
Think you forgot to give credits! !
androidforums.com/droid-x-all-things-root/164447-mod-lots-build-prop-edits.html
Click to expand...
Click to collapse
no i didnt... as said my friend gave me these there is only 2 tweaks i took from another site (not xda)
cdesai said:
And what about the build.prop of pox 1.5
Must have something more too right
Anyways nice share
Read them long ago on android.com(removed now) but never tried
Click to expand...
Click to collapse
no, most of these are on POX v.1.5 build.prop
jazux said:
no, most of these are on POX v.1.5 build.prop
Click to expand...
Click to collapse
Please provide the modified build.prop
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
ash!sh said:
Here is the source
http://forum.xda-developers.com/showthread.php?t=1151608
All my roms have that tweaks
Click to expand...
Click to collapse
your right, but only 1 tweak is from there you do realize that internet is FULL of sites telling these tweaks (and i have looked 3 diff websites ) and as said almost ALL OF THESE TWEAKS i got from my friend (i have no idea where he got these ), so dont come here to tell what the source is!
is it possible to implement all tweaks into zip updateable via CWM?
max5800 said:
is it possible to implement all tweaks into zip updateable via CWM?
Click to expand...
Click to collapse
yes, but theres so many tweaks... i think its better to apply them manually, its not hard just open root explorer and go to /system, press R/W button and then find build.prop, long press it and choose "open in text editor"
jazux said:
so dont come here to tell what the source is!
Click to expand...
Click to collapse
The first line of your thread:
jazux said:
Hi all! i liked to introduce my own build.prop tweaks that i made
Click to expand...
Click to collapse
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Rapier07 said:
The first line of your thread:
Hence the need for giving out sources!!
You shouldn't present someone else's work as your own!!!
Click to expand...
Click to collapse
You should also read the WHOLE thread before replying
jazux said:
You should also read the WHOLE thread before replying
Click to expand...
Click to collapse
Yeah I did ! and fyi I've been using these tweaks since long.. no offence but you haven't invented those tweaks! There's no way you can call them your own!!
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Testing this now good find [[]]
dharamg3 said:
guys, please chill out...however it is, jazux is sharing some knowledge...
if anyone else had known about the tweaks, then they should have shared it with everyone instead of complaining what the original source is
Click to expand...
Click to collapse
Agreed.. i dont have anything against him but what bothers me is people using someone else's work under their name.. that's injustice flto the original dev.. it doesn't take much to give credits, does it?
from README file :
CpuFreq Patch for Samsung Galaxy Y (S5360)
==========================================
what this patch do
------------------
1. add additional freq to cpufreq 624mhz, make it have 3 freq scaling
(312,624,832 mhz)
2. fix bug while reading
"/sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies"
that bug make cpu spy not working.
Apply patch
-----------
1. copy all patch files outside kernel source dir. dir should be like this
kernel/common/
kernel/modules/
bcm_cpufreq.c.patch
clock-21553.c.patch
device.c.patch
2. goto kernel/common
$cd kernel/common
3. apply patch
$patch -p2 < ../../bcm_cpufreq.c.patch
$patch -p2 < ../../clock-21553.c.patch
$patch -p2 < ../../device.c.patch
4. build kernel
Note
----
this patch work using clock mode betwen 0xC (312mhz) and 0xF (832mhz) in
file "clock-21553.c". 0xD and 0xE working on same frequency 624mhz. don't
know yet whitch one to use (i use 0xE), so please contact me if you have
more information. right now this patch only effectife if you using
performance (or powersave) with app to control it (like setcpu). not
limitation of patch, but bcm21553 governor look like
ignore scaling_{min|max}_freq.
if you capable, please review my patch. scaling_available_frequencies
related is pretty safe. if you only interested to that part, get it from
file "bcm_cpufreq.c.patch" which call "cpufreq_frequency_table_get_attr"
and "cpufreq_frequency_table_put_attr". the other i am not sure yet. i am
still test it about 2-3 days.
i am not experiance creating patch file, so check file before apply and
tell me if i do it wrong. but patch is so small, apply it manually not
going to hurt you
i include test build (boot-sgy.tar). flash it with odin (pda) if you want
to try. it close to stock kernel only with patch and powersave governor
enable. and like usual, i am not responsible if some thing bad (or good)
happen to you device.
Click to expand...
Click to collapse
additional note :
- this patch for samsung's GT-S5360_GB_Opensource_Update2.zip kernel source
- this thread is about patch, not custom kernel. i include kernel test build only to make easy if someone need test it. so please don't request features like a2sd, cwm,etc.
- this patch is alpha quality. i already testing (>2 days) before submit here. but some of patch work on low level system and maybe effect on long term usage. until it fully tested, use only for testing purpose and remove from your device when done.
- i make small mistake in "apply kernel" part on README file inside archive. i already corrected the one in this thread. sorry.
Link
http://www.mediafire.com/download.php?08gwuw8et04bg4r
pretty decent
wow. excellent patch.
for tapatalk users it may come in handy to have the kernel available as attachment to run KernelUpdate on.
don't miss out on CPU-spy app.
mai77 said:
wow. excellent patch.
for tapatalk users it may come in handy to have the kernel available as attachment to run KernelUpdate on.
don't miss out on CPU-spy app.
Click to expand...
Click to collapse
Is it being patched.
What if it is uc,oc ,how will it have 642
premolikeshtc said:
Is it being patched.
What if it is uc,oc ,how will it have 642
Click to expand...
Click to collapse
yes, the boot.img is a ready-made patched image.
try it out with cpu spy.
then try cpu tuner , no-frills cpu app and so forth.
report back if poss.
What Iam saying, if the kernel is Oc to 1Ghz, and uc to 200 Mhz.Do I have to modify for every kernel, And do we open boot.img and put it there.
no. instead of patching a binary, we patch the kernel source code.
with this kernel we should be able to find out, whether clockspeed changes are working.
for that purpose, some PROPER and accurate benchmarking may be performed.
premolikeshtc said:
What Iam saying, if the kernel is Oc to 1Ghz, and uc to 200 Mhz.Do I have to modify for every kernel, And do we open boot.img and put it there.
Click to expand...
Click to collapse
you need apply patch to kernel source and rebuild. that source patch, not binary patch. but you can't make sgy work on 200Mhz or 1Ghz. 312,624,832 is not random number, it's multiple of 26mhz (or 13mhz) which is base frequency of sgy.
so maybe it is not 200.000 MHz precisely, but a multiple of a base frequency
clock frequency can be changed at intervals only
---------- Post added at 05:39 AM ---------- Previous post was at 05:37 AM ----------
cpu tuner seems to be at ease with this kernel, btw
---------- Post added at 05:49 AM ---------- Previous post was at 05:39 AM ----------
"benchmark & tuning trial" app also displays the percentage of total time spent at a given f, like cpu spy
link backed up
thanks i will try this .
i'll try this later..
i hope this thread will not be deleted.. this is a great help for our device
one down
sasan258 said:
i'll try this later..
I hope this thread will not be deleted.. this is a great help for our device
Click to expand...
Click to collapse
well, I take it, the head honcho of this place kinda took PG101 off the roster.
probably not the worst decision, after all ...
i see.. then maybe were on our way to a great development then
indeed. that decision was a great stride forward.
mai77 said:
wow. excellent patch.
for tapatalk users it may come in handy to have the kernel available as attachment to run KernelUpdate on.
don't miss out on CPU-spy app.
Click to expand...
Click to collapse
@whitexp : just a favor ,buddy can you run linpack test and see if the freq 624 works?
i will try it later today, but am still doin some stuff, looking for reference books.
at some point we might also look at this "cpu spy" app. it is open source. maybe we should rack our brains whether that app can be improved on in some way.
post edited
So all we have to do is flash boot.img via SGYbiCWM,
BTW the boot.img is a stock kernel of what? Based on what firmware? (what i mean for example is that is it a stock kernel of DDLA1?)
it's in the post#1. very close to stock kernel of that samsung update file.
focus is on setting clockspeed.
which stock rom version used that particular version of published source code, I don't know. build timestamp may tell.
KitKat (AND NOT LOLLIPOP):
These are based on the hammerhead/deb/flo/mako developer drivers from HERE.
Version: OpenGL ES 3.0 [email protected] [email protected] JHICKS_AU_LINUX_ANDROID_KK_3.5.04.04.02.003.389+PATCH[ES]_msm8974_KK_3.5__release_ENGG ([email protected])
What I did:
I copied the deb-flo-mako firmware folder ingredients into the hammerhead ones to have all firmwares updated which are included in the stock system folder, too and moved the firmware folder from /vendor to /etc. I modified the updater script, too to be sure it finds the right system drive and mounts it nicely.
Download: HERE
CHANGELOG
Lollipop (AND NOT KITKAT):
EDIT: Link taken down for now due to HW+ problems @ video playback!
New Lollipop driver v95 from Moto G extracted by SeannyM: OFFLINE for now!
Version: OpenGL ES 3.0 [email protected] [email protected] ([email protected])
AnTuTu before: ~41200ish and after ~42600ish
HOWTO:
Flash via Mobile Odin or TWRP/CWM.
WARNING:
NO GUARANTEE THAT IT WON'T KILL YOUR PHONE!!! Mine still works and that better than ever, but if it does, your fault! ^^
MAKE A BACKUP IF YOU FEAR A DEAD PHONE!
KNOX 0x1!!!!
My intention is/was to fix several bugs in their drivers to get Dolphin Emulator run nicely.
It became way better already, but is still badly distorted on KitKat.
The added Lollipop driver fixes most hiccups. Looks really nice now.
What is this?
I can try it, but still have my thoughts about it, because of the port-ism of it. Will try when the green light for this has been lit. Still why don't we massively contact the dolphin developer?
sonicadvance1 from the Dolphin dev team recommended to always update the Adreno drivers, because they are buggy as hell in OpenGL ES 3 matters. He filed a dozen bug reports over at Qualcomm's and some even were fixed by now. Some bigger ones causing the bad distortion are still there, but it starts to progress well. These are NO Dolphin bugs, these are evil misbehaviors in the drivers against the OpenGL ES 3 standards causing flipped framebuffers and way more funny things. The drivers work and are 100% compatible to the Adreno we use.
Video from sonicadvance1 explaining the steps to do.
So how do we install it? By manually move the files over to the system file or is it a flashable zip file?
---------- Post added at 07:41 PM ---------- Previous post was at 07:32 PM ----------
Ok my bad its a flashable zip files sorry for the noob questions
MxFadzil92 said:
So how do we install it? By manually move the files over to the system file or is it a flashable zip file?
---------- Post added at 07:41 PM ---------- Previous post was at 07:32 PM ----------
Ok my bad its a flashable zip files sorry for the noob questions
Click to expand...
Click to collapse
Flashable ZIP file. Use Mobile Odin OTA/ZIP File mode or a custom recovery.
I can decide for flashing ? Will this help for performance and battery too ? or is it only driver ?
This thread gets my attention. Any mirror?
Thanks
it worked for me thnx
---------- Post added at 04:42 PM ---------- Previous post was at 04:42 PM ----------
King ov Hell said:
I can decide for flashing ? Will this help for performance and battery too ? or is it only driver ?
Click to expand...
Click to collapse
it's got nothing to do with battery................read!!!
How i know which driver i use now because i wont replace drivers if is same does i can use this on any rom?
flashed and works fine, n900t
mokee open source rom 4.4.4
gonna test some stuff now
ok so some quick testing done and... no difference in game performance in fpse, espxe and reicast. same games, same speed issues and glitches.
example. silent hill 1 on fpse or espxe, bar in the beginning of the game, especially fight with a bat. same framedrops.
so not sure if there is any benefit.
thanks anyway.
Flashed....!!!
So, I have flashed it and it's successfully done, now dear dev can you tell how to feel the difference, will it improve the benchmarks, or will it improve graphics, plz share.
Changes are HERE. It won't help much in performance matters, mostly there are bugfixes and stability improvements.... yet. As soon as there's another new one, I will make it available here, too. At least Qualcomm seems to progress quite well in fixing the big flaws still left. These wont just help Dolphin, PSX emulation uses framebuffers, too. So, it might fix stuff here, too. Mostly any app which REALLY uses OpenGL ES 3 will benefit of that new one.
BLiNKT said:
How i know which driver i use now because i wont replace drivers if is same does i can use this on any rom?
Click to expand...
Click to collapse
Sorry, I overread that. I tested it on OFFICIAL FW with some modifications, like dumped KNOX crap and root + Ultimate Kernel. It should run on ANY Touchwiz ROM based on the official Version or S5 ROM. AOSP/AOKP... no clue. Never tested. Open Dolphin About page or Antutu Device Information page and check if the driver version it shows there is the one you can read above. If not... then the pathes are different there and it needs fxing.
No problems on NG1 odexed. Used for over a week, i have seen no difference so far.
i'm planing to test it on liquidsmooth 3.2.
but i have checked in antutu and my n3 have version of driver OpenGL ES 3.0 [email protected] [email protected] which is newer than OpenGL ES 3.0 [email protected] [email protected] as i understand so i will not try this one
that's why in latest liquidsmooth aosp rom have good camera photos now
On xxuend3 442 are working just fine. All my gta games are higher frames now, gameplay is better now.
Note 3 rooted knox 1, my last Samsuck crap. I want freedom. Stay away from Samsuck!
Can be flashed on AOSP? Or must use stock?
Yeah, already included in CRASH ROM V17 Testing
bibiner said:
Can be flashed on AOSP? Or must use stock?
Click to expand...
Click to collapse
On stock you can, on aosp you can try.... But backup first
Note 3 rooted knox 1, my last Samsuck crap. I want freedom. Stay away from Samsuck!
Created by MiustoneWELCOME TO THE FLUENCE UHD PATCHHOMEPAGE
INTRO
Started back in 2010 with a Motorola Milestone known as Droid somewhere else, i just felled in love with Android. Since then, I've always tried to get the best out of My Android Devices. My latest effort in that direction is called the "Fluence UHD" Project.
There are ROMs. There are Mods. And there is the PATCH...
Instead of downloading and flashing a whole Custom ROM, You can now easily choose Your Base OS without missing any Features from Your Favorite Developer (Me!?). Make it Yours! Use AROMA to customize Your Android OS and get some unique Options which You will find nowhere else! Add hidden Android/Qualcomm Functions, enable hidden Hardware/Software Features and Tweak Your Device for the best Audio/Visual Experience ever...
You can end up i a total Personalized Setup, or just rush thru the AROMA System and enjoy the full Fluence UHD Config. It's Your Decision...
FEATURES
-SIGNED ZIP
-Fluenced AROMA 3.0
-Fluenced SUPERSU
-Fluenced BUSYBOX
-Fluenced INIT.D
-Fluenced Prop Injection
-Full GPU UI Rendering
-32Bit UI Alpha Rendering
-Partition Trimming
-Battery Calibration
-System Read/Write
-Zipaligning Apps
-Battery Drain fixes
-Entropy Optimized
-Dex2oat Optimized
-Zygote Optimized
-Best possible Audio Quality
-Ported HTC Frameworks
-Ported SONY Frameworks
-Ported Samsung Frameworks
-Disabled forced Encryption
-Disabled DM Verity
-Disabled some Logging
-Disabled Rotation Lock
-Enabled hidden Bluetooth Features
-Enabled hidden GPS Features
-Enabled hidden Wifi/Mobile Features
-Enabled hidden Network Features
-Enabled hidden Audio Features
-Enabled Advanced Storage Handling
-Enabled Advanced Qualcomm Features
-Enabled Advanced Dalvik VM Handling
-Enabled Advanced Android Features
-Enabled Advanced Display Handling
-Enabled Advanced Gaming Handling
-Enabled Advanced Sensor Handling
-Enabled Advanced Doze Handling
........MoreMoreMore........
SUPPORTED
-Snapdragon 808 on Android 7+
-Snapdragon 810 on Android 7+
-Snapdragon 820 on Android 7+
-Snapdragon 821 on Android 7+
SPECIAL SUPPORT
-LG G6 - Maintainer: Searching...
-LG V20 - Maintainer: Searching...
-LG G5 - Maintainer: @Miustone
-LG V10 - Maintainer: Searching...
THREAD IS W.i.P! More to come...
XDA:DevDB Information
FLUENCE UHD, ROM for the LG V20
Contributors
Miustone, Miustone, Miustone, Miustone
ROM OS Version: 7.x Nougat
ROM Firmware Required: Android 7.X.X
Version Information
Status: Stable
Current Stable Version: V17.03.15
Stable Release Date: 2017-03-15
Created 2017-03-15
Last Updated 2017-03-14
Reserved
MAIN THREAD
LINKS:
-Google Plus Community
-Google Drive Content
-Google Docs Instructions
-Google Docs Changelogs
Amazing stuff! Put it on my phone today.... Genius. Thank you!
storm68 said:
Amazing stuff! Put it on my phone today.... Genius. Thank you!
Click to expand...
Click to collapse
You're Welcome! Hope You'll like it :angel:
Because I'm dumb, could someone explain the compatibility with other ROMs?
For example, does this work with lineage OS on the v20?
One question... If I make install them realize I want something I didn't check can I dirty flash? Also, these hidden things that were enabled, are these in the background or is there a way to get to these features?
ohblindone said:
Because I'm dumb, could someone explain the compatibility with other ROMs?
For example, does this work with lineage OS on the v20?
Click to expand...
Click to collapse
Basically it will work with all 64Bit Snapdragons on Nougat (7.X.X). But I've seen some Problems on the G5 AOSP ROM's but that may change with the Time (AOSP Updates/Fixes). Feel free to test and Report!
You will get always the best Results with Stock since it's 100% stable...
BtW. I'm still searching Maintainers for LG Devices alias V20,V10 and G6. Details via PM!
storm68 said:
One question... If I make install them realize I want something I didn't check can I dirty flash? Also, these hidden things that were enabled, are these in the background or is there a way to get to these features?
Click to expand...
Click to collapse
Yes You can. But You may get freezes or Force Closes... Clean is always the best Way to go (You will also miss some extras on a dirty flash). The most of the extra Features are working in the Background like advanced Bluetooth Functions (Audio, Filesharing, BLE, Hosting) or the Display Tweaks (CABL,AD,QC Color Control). Most of the stuff is forked from a lot of Android Flagships and based on own research and testing. It may break things from time to time, but once it works it's just awesome.... The Feature list isn't detailed enough to show everything whats inside, but it is a lot! x)
Miustone said:
Basically it will work with all 64Bit Snapdragons on Nougat (7.X.X). But I've seen some Problems on the G5 AOSP ROM's but that may change with the Time (AOSP Updates/Fixes). Feel free to test and Report!
You will get always the best Results with Stock since it's 100% stable...
BtW. I'm still searching Maintainers for LG Devices alias V20,V10 and G6. Details via PM!
Click to expand...
Click to collapse
Thanks for the help!
What's involved with being a maintainer? Pm me
ohblindone said:
Because I'm dumb, could someone explain the compatibility with other ROMs?
For example, does this work with lineage OS on the v20?
Click to expand...
Click to collapse
"Because I'm dumb" lmao
---------- Post added at 02:54 AM ---------- Previous post was at 02:53 AM ----------
ohblindone said:
Thanks for the help!
What's involved with being a maintainer? Pm me
Click to expand...
Click to collapse
He's dumb but wants to maintain a thread God bless this user
Miustone said:
Basically it will work with all 64Bit Snapdragons on Nougat (7.X.X). But I've seen some Problems on the G5 AOSP ROM's but that may change with the Time (AOSP Updates/Fixes). Feel free to test and Report!
You will get always the best Results with Stock since it's 100% stable...
BtW. I'm still searching Maintainers for LG Devices alias V20,V10 and G6. Details via PM!
Yes You can. But You may get freezes or Force Closes... Clean is always the best Way to go (You will also miss some extras on a dirty flash). The most of the extra Features are working in the Background like advanced Bluetooth Functions (Audio, Filesharing, BLE, Hosting) or the Display Tweaks (CABL,AD,QC Color Control). Most of the stuff is forked from a lot of Android Flagships and based on own research and testing. It may break things from time to time, but once it works it's just awesome.... The Feature list isn't detailed enough to show everything whats inside, but it is a lot! x)
Click to expand...
Click to collapse
I see, gotcha. Thanks for your quick response. Looking forward to the progress. ?
ohblindone said:
Thanks for the help!
What's involved with being a maintainer? Pm me
Click to expand...
Click to collapse
hawkeye29 said:
"Because I'm dumb" lmao
---------- Post added at 02:54 AM ---------- Previous post was at 02:53 AM ----------
He's dumb but wants to maintain a thread God bless this user
Click to expand...
Click to collapse
Basically it's just copy/pasting of my Main Thread. I can't handle 5 Threads at once + Homepage + GooglePlus
But someone with some deeper knowledge about Making ROMs would help to eliminate possible Bugs and to gain more Specific Features (I know what the V20 is able to do). My G5 as example can use 4K Video Recording on the Front but it was never included in Stock. I've added it and it works just flawless. Possible that the V20 has similar abilities...
It said we need to use 3.1.0+ TWRP recovery and last time I checked the v20 is still waiting for the 3.1.0 TWRP recovery version. Is it still safe to flash this file with 3.0.2.1?
---------- Post added at 03:02 AM ---------- Previous post was at 03:01 AM ----------
Miustone said:
Basically it's just copy/pasting of my Main Thread. I can't handle 5 Threads at once + Homepage + GooglePlus
But someone with some deeper knowledge about Making ROMs would help to eliminate possible Bugs and to gain more Specific Features (I know what the V20 is able to do). My G5 as example can use 4K Video Recording on the Front but it was never included in Stock. I've added it and it works just flawless. Possible that the V20 has similar abilities...
Click to expand...
Click to collapse
I was just noting the irony of his first post, and thought it was hilarious. I don't actually think he's dumb, just made me laugh lol
hawkeye29 said:
It said we need to use 3.1.0+ TWRP recovery and last time I checked the v20 is still waiting for the 3.1.0 TWRP recovery version. Is it still safe to flash this file with 3.0.2.1?
---------- Post added at 03:02 AM ---------- Previous post was at 03:01 AM ----------
I was just noting the irony of his first post, and thought it was hilarious. I don't actually think he's dumb, just made me laugh lol
Click to expand...
Click to collapse
Got it
TWRP 3.0.2.1 could have Performance issues while flashing (AROMA Freezing) but no One has reported it till now. Think i've fixed it 2 Versions ago...
Where does one get a flashable keyboard from?
Can we get the "battery drain fixes" without this ROM? And, what ARE the battery drain fixes exactly? I'm seeing a pretty heavy battery drain on my ROM.