android go.zip go optimised - Xiaomi Redmi 3s Themes, Apps, and Mods

Flash enabler zip for enable
Flash disabler zip for disable
Note:- multi window will not work after flashing enabler zip
This is not my work I'm just sharing to u if u like than press like button
Read it for full information
Turn any Android 8.1 Oreo ROM into an Android Go-Optimized Version
https://www.xda-developers.com/android-oreo-android-go-low-ram-patcher/amp/
Enjoy

Thread closed.
There is no need to make a thread just to point to another thread on XDA
Thanks
Greg

Related

[Q] answer to call with swipe or hold

how we answer the call with swipe look like samsung or hold green square ? (witout rooting )
i rooted my device ^_^ now you can tell me any way for rooted nokia x
easy
The_WarriorII said:
i rooted my device ^_^ now you can tell me any way for rooted nokia x
Click to expand...
Click to collapse
if u've got root access just install a custom rom!! u'll get everything u want
the best custom rom! stable! is of dhacker9 ! available in android orignal development section of nokia x forum
just install that n u'll get what u want
pls dont forget to hit thanks pls
bunty786 said:
if u've got root access just install a custom rom!! u'll get everything u want
the best custom rom! stable! is of dhacker9 ! available in android orignal development section of nokia x forum
just install that n u'll get what u want
pls dont forget to hit thanks pls
Click to expand...
Click to collapse
ok , but some custom rom have some problem ,what about that custom rom ?
can i do every thing in a orginal rom ?
and where is dhacker9 rom ? i can not find that !
The_WarriorII said:
ok , but some custom rom have some problem ,what about that custom rom ?
can i do every thing in a orginal rom ?
and where is dhacker9 rom ? i can not find that !
Click to expand...
Click to collapse
install LEWA os (custom rom) best custom roms out there..! everythings works like charm.!
smooth/fast
download the smoothest version from here
https://docs.google.com/file/d/0B3pCNOGBTi1WSmVSRy1WZVYxR1U/edit
pls hit thnxx broder :good:
bunty786 said:
install LEWA os (custom rom) best custom roms out there..! everythings works like charm.!
smooth/fast
download the smoothest version from here
https://docs.google.com/file/d/0B3pCNOGBTi1WSmVSRy1WZVYxR1U/edit
pls hit thnxx broder :good:
Click to expand...
Click to collapse
i installed that custom rom but i do not like that ! then i restore my backup and back to my orginal rom
but i see some thing good on that custom rom ! the status bar was good on that ! can i install only that status bar in my phone i the orginal rom ?
The_WarriorII said:
i installed that custom rom but i do not like that ! then i restore my backup and back to my orginal rom
but i see some thing good on that custom rom ! the status bar was good on that ! can i install only that status bar in my phone i the orginal rom ?
Click to expand...
Click to collapse
just dump ur rom and modify according to ur wish,.... or other method... just install xpoosed framework and just modify ur preinstalled status bar to any modified uh want :good:
hit thnx
dear bunty iam a beginner and i donot understand any think you sayd to me
can you tell what i should to do with xpoosed ? plz tell me step by step ,,tnx ^_^
cheers
The_WarriorII said:
dear bunty iam a beginner and i donot understand any think you sayd to me
can you tell what i should to do with xpoosed ? plz tell me step by step ,,tnx ^_^
Click to expand...
Click to collapse
Requirement:-
1.Custom REcovery (very imp)
2.make nandroid backup before doing anything
3.xposed framework.apk
4. li'l bit common knowledge
5.modules
In this thread, I'm presenting a framework which gives you the possibility to modify your ROM - without modifying any APK (developers) or flashing (users)!
Quote:
Quick guide what kind of posts is allowed in this thread and what is not allowed.
If you don't follow the rules, you might get notified (sometimes friendly, sometimes angrily) that you're doing it wrong, but your post might as well be ignored.
NO posts without reading at least the first two posts and searching the thread => I and other people have spent hundreds of hours developing and supporting Xposed, we expect at least this much of respect
NO support for any modules here => use the module's forum instead, don't even try to post here
NO questions whether there is a module for XYZ exists => check the builtin repository and this thread: http://forum.xda-developers.com/show....php?t=2327541
NO requests for new modules => check this thread if it has been requested before, otherwise ask nicely there: http://forum.xda-developers.com/show....php?t=2327541
NO, you don't get any support via PM either => for the points above, do as pointed out, for allowed things always post in this thread (unless you want to share logs with sensitive data)
YES, you can report bugs for the framework => make sure that you followed the instructions and can reproduce it without any active modules
YES, you can get support if you have issues with the Xposed Installer (e.g. you can't install the framework) => make sure you read the instructions and searched in the thread for similar problems
YES, I will support module developers with specific questions (e.g. how to hook a certain method) => you must have read the development tutorial and give as much context as needed to make it easy for me or others to answer (code always helps!)
YES, you can suggest new features for the API (as a module developer) or the Xposed Installer here => again, no requests about modules
For a quick start, have a look at XDA's "Android Basics 101" on Xposed: http://www.youtube.com/watch?v=uRR0Flqx9M8
Some technical details:
I extended the /system/bin/app_process executable to load a JAR file on startup. The classes of this file will sit in every process (including the one for system services) and can act with their powers. And even more: I have implemented something that allows developers to replace any method in any class (may it be in the framework, systemui or a custom app). This makes Xposed very powerful. You can change parameters for the method call, modify the return value or skip the call to the method completely - it's all up to you! Also replacing or adding resources is easy.
Advantages:
No need to modify any APKs. This means:
No need to decompile, change things in smali, compile, sign, ...
It will work for odexed and deodexed ROMs.
Your mod is not bound to a specific version of the ROM. Unless there is a major change in the methods called for a certain functionality, your mod will continue to work even when you upgrade your ROM. Hell, it will probably even work with different ROMs.
Multiple mods can be installed at the same time, even if they change the same package. So you can use these battery icons and those quick toggles. Even hooking the same method twice is possible. Of course, this only works properly if the mods are not trying to do incompatible things.
It does its magic at runtime. That means you can implement options to let the user decide if they prefer the bikeshed to be painted in red or blue. Or you can have some extra logic for certain ROMs without building different mod versions.
It can be disabled easily without having to reflash.
It's open source.
Download:
You can download the installer from http://dl.xposed.info/latest.apk. The attached disabler zip is only needed if you are in a boot loop.
An experimental version for Gingerbread made by liudongmiao can be found here: http://forum.xda-developers.com/show...4#post44034334 (no support from my side though)
How to install:
First step for everything you do: Create a nandroid backup and make sure you know how to restore it!
I'm not responsible for anything you do with your phone/tablet/rice cooker.
There is also the risk to soft-brick your device. In such a case, restoring a backup is the easiest way to get rid of it (other possibilities mentioned below).
For the framework:
Download the Xposed Installer APK and install it
Launch the Xposed Installer, go to the "Framework" section and click on "Install/Update"
In case you get a Segmentation Fault error, please install this additional app (not needed if the installation worked fine).
Reboot
Done!
You can verify this by starting the Xposed Installer again. If app_process jumped back to an older version (or none at all), you probably have a ROM with S-On or similar, which reverts any changes to /system after a reboot. Use installation via recovery in such cases.
For any modules you want to install:
Download <module>.apk and install it
Launch the Xposed Installer and go to the "Modules" section (you will also get there if you click on the notification warning you that the module is not enabled yet)
Enable the module by checking the checkbox
Reboot
Done!
(note that you can install the framework and enable/disable multiple modules at once and reboot afterwards)
In case you get into a boot loop:
First, try using the safemode by pressing any hardware key repeatedly. You can find a short explanation how it works here.
If that doesn't work, you can flash the attached Xposed-Disabler-Recovery.zip by Tungstwenty. It will be copied to your (external) SD card when you install Xposed as well. The only thing it does is copying /system/bin/app_process.orig back to /system/bin/app_process, which you can also do yourself (e.g. with adb shell in recovery mode).
Modules:
The official repository for Xposed modules, which can also be access from within the app itself (with download/update support), can be found at http://repo.xposed.info
You can also have a look at this index: http://forum.xda-developers.com/show....php?t=2327541
Please don't use this thread for problems with modules! Use the thread of the module instead.
How to write a module:
If you are an interested developer, give it a try. The development tutorial will help you get started. Further documentation (e.g. how to replace resources) is here. And of course, you can ask your development questions in this thread.
If you have suggestions for new functions the framework could provide (which means they should be useful for more than your module), you can do this here as well. However, requests that I or somewhen else should write a module for xyz are NOT allowed here. Again, this thread is only about the framework.
Changelog:
1.0: Initial version
1.1: ???
1.2: Installer
1.5: Resource replacing
1.6: Some fixes and improvements [629 downloads]
2.0 rc2: Lots of thing redone. Supports (temporarily) replacing native libraries, lots of additions and changes for developers. [3,234 downloads]
2.0: Removed the native library replacement again, support for 4.1 and 4.2, Instagram crash fixed, ... [631 downloads]
2.0.1: Fixed a crash when a module tries to hook a function with "long" or "double" parameters [930 downloads]
2.0.2: Fixed a problem which resulted in a boot loop [4,310 downloads]
2.1: Various improvements, e.g. earlier callbacks for module loading. For details, see this post. [345 downloads]
2.1.1: Fixed a bug in drawable replacements [5,421 downloads]
2.1.2: Small fixes, added Chinese and Russian translations [11,415 downloads]
2.1.3: Reverted a change in 2.1.2 that caused bootloops; new translations and some more fixes [46,803 downloads]
2.1.4: Support for Galaxy S4 and HTC One plus a few minor fixes/enhancements (details) [208,176 downloads]
2.2: Builtin updater/module downloader, extended UI, support for Android 4.3 and more (details) [241,267 downloads]
2.3: x86, Knox, MIUI support (experimental), context menu in modules list and more (details) [18,219 downloads]
2.3.1: "Segmentation fault" during installation fixed [679,333 downloads]
2.4: Support for Android 4.4, performance improvements, log viewer, active check (details) [101,613 downloads]
2.4.1: Fixed bootloop on some x86 ROMs [2,537,642 downloads]
2.5: Rewritten installation, safemode, more compatibility (details) [821,792 downloads]
2.5.1: Compatibility with new CM11 nightlies and LG G2 theming engine
Source code:
https://github.com/rovo89/Xposed (the C++ part)
https://github.com/rovo89/XposedBridge (the Java part)
https://github.com/rovo89/XposedInstaller (Installer app)
Thanks to:
Tungstwenty for his many contributions, both in code and thoughts
XDA admins, news writers and supporters for making Xposed known to so many people
All those volunteers who help answering questions about Xposed
The people who donated to get me a Nexus 5 for earlier KitKat support
Translators:
[ar] Arabic: aljohanei
[az] Azerbaijani: hero355
[bg] Bulgarian: Stefan Stefanov
[ca] Catalan: Albert Samaniego, David Vaz Guijarro
[cs] Czech: Aleš Berka, Petr Reznícek
[de] German: rovo89, Nils Wasser
[el] Greek: Theodore Keloglou
[es] Spanish: David Vaz Guijarro
[fr] French: tonymanou
[gl] Galician: David Vaz Guijarro
[hu] Hungarian: Adam77Root
[id] Indonesian: AngSanley
[it] Italian: Vincenzo Cerminara
[iw] Hebrew: DubelBoom
[ja] Japanese: Noumi Ryoko
[ko] Korean: marbulas
[ms] Malay: Abe Atok
[nb] Norwegian Bokmål: rosaage
[nl] Dutch: Gert-Jan Anema, Leonard Simonse, Martin Coulon
[pl] Polish: czeci
[pt-rBR] Portuguese (Brazil): Marcio Andrade
[ro] Romanian: razorsbk
[ru] Russian: michfood
[sk] Slovak: pyler
[sr] Serbian: maleksa
[sv] Swedish: Fredrik Lundberg
[tr] Turkish: TheNorth34
[vi] Vietnamese: alienyd
[zh-rCN] Chinese (China): Cye3s, liveasx, Yeechan Lu
[zh-rTW] Chinese (Taiwan): Cye3s
THe guide is of @rovo89
so all credits goes to him
SImple just download the xposed framework.apk
install it like regular one..!
and then go to the "Framework" section and click on "Install/Update"
then select reboot and if ur phone gets rebooted and the home screen comes
then congrats u've successfully installed the xposed framework...!
if any case u get boot loop..! ! then just goto ur custom recovery(imp) and select install and select the disabler xposed .zip and flash it..! ur boot loop issue will be solved download this disabler xposed (IMP)and put it in ur sd/internal (anywhere) ( http://forum.xda-developers.com/attachment.php?attachmentid=2568891&d=1391958634)
PLEASE HIT THANKS PLEASE
oh really thank you but i mean was how can in change my status bar to some thing like samsung status bar ,, pls tell me this with step bye step
i now what is xpoosed,,i no how can i work with that but i do not now how can i work with xblash or another xpoosedapps to change my status bar and change that to some thing like samsung status bar !
so this is my problem ( choose what option on Xblast or another xpoosedapss to change my status bar to some thing like samsung status bar ! )
my Nokia s rooted, stock rom
now, who can show me how to change answer call screen, plz

HOSP "L" ROM ported from MMX A116 based on Mere rom 1.2

Moved to dev section :
Link
SS PLEASE
And I am Posting it to my blog give me ss
and if u want i can make thread for u in dev section reply me so that ur 30 posts get complete
also give me access to download link
i want to try this rom pls give me access to this link
i want to try this rom, please give access to the google file, a million thanks keep up the good work
HACKLEAKS said:
And I am Posting it to my blog give me ss
and if u want i can make thread for u in dev section reply me so that ur 30 posts get complete
also give me access to download link
Click to expand...
Click to collapse
ss can be seen on A116 forum, so i thought of not adding it.
ss added in attachments.
permission is change now... sorry forget to change permission..
Sorry guys i am posting it here. I cant post on the developer section as i cant due to less than 10 post..
If Possible the anyone please create this post in development section. Thanks..
Nice rom
Using it for past 3 days...so far so good....no bugs noticed.....
gaminng?
how is gaming performance of this rom?
which recovery you have used to flash this ROM
summaji said:
here is the video link i have made for this rom
https://www.youtube.com/watch?v=cKbM485VKOM
ROM FEATURE
1) Rooted
2) Zipaligned
3) Deodexed
4) Busybox with init.d support
5) ANDROID L THEMED(MATERIAL DESIGN)
6) ANDROID L BOOT ANIMATION
7)ANDROID L UI
8) ANDROID L APPS
9) Extended Power Menu (reboot to recovery)
10)HOSP SETTINGS
XPOSED INSTALLER
AUTOSTART
PERFORMANCE CONTROL
11) Lockscreen Wallpaper
12) Dual Sim Ringer (Found Inside Sim Management)
13) L themed File Manager Added
14) Heavily Tweaked
15) Good Battery Backup
16) New Boot Logo
17)GOOGLE L KEYBOARD
18) GOOGLE L LAUNCHER
19) Init.d support
20) Loopy Smoothness Tweaks
21) New Ram Optimization Tweaks​
Download :
Android L for Q1000
Things to do after installation:
1.HOW TO GET ANDROID L THEME ON DIALER???
OPEN DIALER PRESS MENU KEY PREFERENCE>THEMES>ANDROID L THEME AND DONE!
2.HOW TO GET ANDROID L KEYBOARD??
GOTO SETTINGS>LANGUAGE&INPUT>select Andorid L keyboard
3. to get reccent apps?
open fancy switcher>touch on setting icon>select enable fancy switcher
then
go to style and select android l
finally go to more setting and select (beta)default Switcher
also u can disable smar-slider in behavior and notification in more setting
4. enable various gesture like double tap to wake up, etc
go to knockr and enable gesture as u like
5.lockscreen
go to L locker and enable it and select android l theme
6. Use Gravity box to customize more as u wish. ​
INSTRUCTION:
1. DOWNLOAD AND COPY ZIP INTO UR SD CARD
2. WIPE ALL AND FLASH VIA CWM.
3. ENJOY
CREDITS N THANKS
HACKLEAKS for making this rom for A116.
MERE FOR BASE ROM
GOOGLE
XDA​
Click to expand...
Click to collapse
which recovery you have used to flash this ROM
Used CWM recovery
nikampp said:
which recovery you have used to flash this ROM
Click to expand...
Click to collapse
I used CWM recovery for this rom...Worked fine...
ajay434434 said:
how is gaming performance of this rom?
Click to expand...
Click to collapse
all the games work fine.
i have even uploaded screenshot of all my current games.
for better ram management and gaming performance use greenify great app.
nikampp said:
which recovery you have used to flash this ROM
Click to expand...
Click to collapse
Carliv Touch Recovery for xolo Q1000 based on cwm only
here is the link
u can use ne recovery. it will work.
i have tested twrp recovery too.
summaji said:
ss can be seen on A116 forum, so i thought of not adding it.
ss added in attachments.
permission is change now... sorry forget to change permission..
Sorry guys i am posting it here. I cant post on the developer section as i cant due to less than 10 post..
If Possible the anyone please create this post in development section. Thanks..
Click to expand...
Click to collapse
I will post to Dev section
But Next time ask permission before porting

[GUIDE] How to install CloudyG2 3.x (D802) + Debloat-MOD Support All Variant

How to install Cloudyg2 3.x (D802)
Update from the previous version to current version
You can flash without wipe anything.
Coming from kitkat / Lollipop ASOP
1. Download Rom CloudyG2 3.x from CloudyG2 3.x
Then copy to sdcard
2. Download D802_PATCH_GO_LP_V1.1_droidth.zip
Then copy to sdcard
3. You should ROOT+TWRP (Skip this step or already rooted)
- Root using : https://towelroot.com/
- TWRP using https://www.androidfilehost.com/?fid=23329332407585963
This is VDO Clip for ROOT+TWRP
4. After ROOT+TWRP finished , Please reboot to recovery Then flash D802_PATCH_GO_LP_V1.1_droidth.zip
Don't reboot system or exit from TWRP after flash patch
Please choose Reboot > recovery
5. Wipe (System, data, dalvik, cache)
6. Flash Rom
7. Reboot
Coming from Lollipop (Stock Custom ROM)
1. Download Rom CloudyG2 3.x from CloudyG2 3.x
Then copy to sdcard
2. Download TWRP lastest version http://blastagator.ddns.net/twrp/2-8-6-3.php Choose D802
Then copy to sdcard
3 You should ROOT+TWRP (Skip this step or already rooted)
This is VDO Clip for ROOT+TWRP
4. After ROOT+TWRP finished , Please reboot to recovery then Flash TWRP lastest version
Don't reboot system or exit from TWRP after flash TWRP
Please choose Reboot > recovery
5. Wipe (System, data, dalvik, cache)
6. Flash Rom
7. Reboot
My MOD For CloudyG2 3.x Support All Variant
Download link SRKDeBloatG2-2-00-For-CloudyG2-3.x-All_droidth.zip:
https://www.androidfilehost.com/?fid=24052804347765593
Change logs :
1) 2 Knids of Debloat
- Pad-Thai (Lite Version)
- Kra-Pow-Moo-Sub (Ultra Lite Version)
Base on my debloat scipt at here
http://forum.xda-developers.com/lg-g2/development-d802/script-debloat-srkdebloat-1-00-t3124473
Plus this from CloudyG2 3.1
EditorsDocs
EditorsSheets
EditorsSlides
LGSmartWorld
LGVideo
LGVoiceRecorder
MyWellness
2) New Bootadmination
3) More Build.prop Tweaks
4) More init.d Tweaks
5) Volume Boost
6) Automatic APN setting for my cat 3g Thailand
How to install
Flash via Custom Recovery (on CloudyG2 3.x) or Flash via Custom Recovery After install CloudyG2 3.x
No need to wipe.
Resr
Sent from my LG-H818
So the go-to-lolli pach is basically a pach which makes you get that lollipop base you would have gotten from stock lollipop?
Edit: does it come with kitkat bootloader?
Norside said:
So the go-to-lolli pach is basically a pach which makes you get that lollipop base you would have gotten from stock lollipop?
Click to expand...
Click to collapse
Right.
somboons first can u add ios style status bar on mod so we can choose ? and if we dont want any debloat will we get the tweaks ??
mhb92 said:
somboons first can u add ios style status bar on mod so we can choose ? and if we dont want any debloat will we get the tweaks ??
Click to expand...
Click to collapse
Sure. You can get tweak without debloat.but I will fix my script before I think if you don't want to debloat it doesn't install all tweaks.I forgot adding script I will fix later.
Sent from my LG-H818
somboons said:
Sure. You can get tweak without debloat.but I will fix my script before I think if you don't want to debloat it doesn't install all tweaks.I forgot adding script I will fix later.
Sent from my LG-H818
Click to expand...
Click to collapse
Fixed
somboons said:
Fixed
Click to expand...
Click to collapse
thats why i asked! thanks a lot man ! i ll flash it now and pleasee consider adding ios style status bar if possible and other addons like plug and pop and others like record on call if its not already in there ! i follow u months ago and i have to say a big thank to u !!! for all ur work
Thx for debloater, can you make a changelog what get removed?+ I get the tweaks when I use Ultra Lite Version too or it just debloat?
somboons said:
Fixed
Click to expand...
Click to collapse
Hi somboons can you make flashable zip file for the LG task manager, Plug and Pop for this Rom? and maybe you included this in the ROM.
4r44444 said:
Thx for debloater, can you make a changelog what get removed?+ I get the tweaks when I use Ultra Lite Version too or it just debloat?
Click to expand...
Click to collapse
Base on my debloat scipt at here
http://forum.xda-developers.com/lg-g2/development-d802/script-debloat-srkdebloat-1-00-t3124473
plus this from CloudyG2 3.1
EditorsDocs
EditorsSheets
EditorsSlides
LGSmartWorld
LGVideo
LGVoiceRecorder
MyWellness
drew150931 said:
Hi somboons can you make flashable zip file for the LG task manager, Plug and Pop for this Rom? and maybe you included this in the ROM.
Click to expand...
Click to collapse
I will try and report you back
My Lg g2 is now using cloudyg2 2.2, so I could use this method to upgrade as well?
a0929418971 said:
My Lg g2 is now using cloudyg2 2.2, so I could use this method to upgrade as well?
Click to expand...
Click to collapse
Using Coming from Kitkat
hi somboons, great work as always... one question though
- does your script remove task manager & spring cleaning?
- if yes - why? (imho those are the most useful LG stock apps, and Spring Cleaning is not included in your SRK2 rom)
- of no - disregard the question
do you maybe plan to include some more g4 themeing in your SRK2 thai-food roms? (just asking)
i've tried Cloudy3.1 yesterday but i went back to your SRK2 Pad-Thai... it somehow feels smoother and it supports more g3tweaksbox options out of the box (like reboot to recovery, quicktoogles don't get pixelated, etc...)
60nine said:
hi somboons, great work as always... one question though
- does your script remove task manager & spring cleaning?
- if yes - why? (imho those are the most useful LG stock apps, and Spring Cleaning is not included in your SRK2 rom)
- of no - disregard the question
do you maybe plan to include some more g4 themeing in your SRK2 thai-food roms? (just asking)
i've tried Cloudy3.1 yesterday but i went back to your SRK2 Pad-Thai... it somehow feels smoother and it supports more g3tweaksbox options out of the box (like reboot to recovery, quicktoogles don't get pixelated, etc...)
Click to expand...
Click to collapse
Spring cleaning doesn't remove but task manager I think remove.
I have plan to include g4 app but I want more free time to work.
Task manager I seldom to use Maybe I remove by my activity .
In next I will keep it.
Sent from my LG-D802 using Tapatalk
What means the volume boost? It's for phone calls?
I've people complaining about sound, the say that it's not clear and low volume, but in my side it's perfect.
rimsilva said:
What means the volume boost? It's for phone calls?
I've people complaining about sound, the say that it's not clear and low volume, but in my side it's perfect.
Click to expand...
Click to collapse
It make a sound getting louder.
Sent from my LG-D802 using Tapatalk
If it's not much trouble, can you make a "volume boost" script to be flashed via recovery?
Any mod to make the status bar icon bigger ? and navigator bar also

[ROM] BeyondROM V5.8 [15/11/19] [9.0 ASK1] [November Patch] [G973-G975-F/FD]

BeyondRom V5.8
Based on Android 9.0 - G975FXXU3ASK1
Devices Supported: G973F(D), G975F(D)
​
ROM Features
<*>Aroma choices: full/dirty wipe, debloating, Bixby key remapping, Emoji</*>
<*>Supports G973F(D) and G975F(D)</*>
<*>Base SM-G975F G975FXXU3ASK1 odex/deodex November 2019 patch level</*>
<*>CSC features (camera sound menu, call recording, LTE only mod, camera during call, etc)</*>
<*>Knox removed, 1170 fonts by Winb33, AppLock</*>
<*>Included the security bypass from Ian’s multidisabler</*>
<*>build.prop tweaks: multiuser, Bluetooth Aptx driver, call ring delay, SHealth fix, WiFi and BT passwords remember</*>
<*>Dual SIM + SD Card, allow ss in secure apps, disable sig verification, SecureFolder</*>
<*>Reboot directly into rooted system from power menu, disable high volume warning</*>
<*>Possibility to choose in aroma to remove the boot warning</*>
Added/fixed in v5.8
<*>Latest ASK1 sw level</*>
Credits
- John Wu for Magisk
- Ianmcd for his multidisabler
- Ianmcd & Geiti for the TWRP
- Winb33 for the fonts app
- SuperR for his kitchen
- fOmey for his smali patcher
- Khongloi for Secure Folder fix
- Corsicanu for his help and advises
- Sannoc for his help and support
- All people from Telegram group for testing (especially Nathan, Carlos, Raphael, Troy, Jay, Hayden, Alan)
Download Link
Google Drive
Digi Link
Flashable patched TWRP S10 (G973F)
Flashable patched TWRP S10+ (G975F)
Installation procedure for upgrade from BeyondROM v5.4 / v5.5
- Take a full TWRP backup
- Dirty flash or clean flash is ok
Installation procedure for upgrade from BeyondROM less than v5.4
If you are on stock ROM, follow the attached guide
This ROM version needs ASIG BL and ASIG TWRP/recovery or it won't boot !!!
1. Boot in TWRP and take a full backup before flashing BeyondRom 5.8 ROM zip
2. Copy the ROM zip to your phone (Ext SD preferably)
3. Download Ian’s Multidisabler v1.6 or higher and copy it to your phone
4. Download Ian’s TWRP 3.3.1-10(11), copy it to your phone and patch it with Magisk Manager or use the patched TWRP from gdrive folder
5. Download the stock FW for your device (S10 or S10+) – Frija is a good tool to use
6. Extract the AP from stock FW, copy it to a temp folder on your internal SD
7. Patch in Magisk Manager the AP
8. Copy the patched AP to your PC and replace the recovery.img inside the AP with the patched TWRP from point 4. Rename the patched TWRP to recovery.img before replacing it into the patched AP
9. Open Odin 3.13.1 or 3.13.3 and fill all slots with: patched AP, BL, CP and HOME_CSC. Uncheck the automatic restart and start flashing.
10. Once flashing completed, long press VOL DOWN + POWER until screen becomes black. IMEDIATELY the screen gets black, press VOL UP + BIXBY + POWER BUTTON to enter to TWRP recovery.
11. Once in TWRP, flash the Multidisabler v1.6 and right after flash BeyondROM v5.8. No need to reboot in between.
12. After flashing the ROM zip, save the aroma log, go back to TWRP root menu and select Reboot --> Recovery
13. Wait for the boot up (5-7 minutes) and setup your ROM to your liking
Enjoy the release of BeyondROM !
Advises
1. Clean install if you have issues with dirty flash; don't start flashing BR5 without a twrp backup of your existing rom
2. If you have flashing issues: check rom zip MD5 hash
3. If you consider that the modded services are the culprit for your SnapChat ban, use stock services.jar provided in the download folder
4. If you like my work, consider buying me a coffee (PayPal link)
Helpful links
Telegram chat
Happy flashing good people!
Reserved!
bugs?
excellent work, now many users will be able to try. your hard work.:good:
Sent from my SM-G973F using XDA Labs
No bugs.
Congrats on making a xda thread fianlly.
This is by far the best rom for s10. Clean. Smooth. No Chinese kang base like other roms on xda.
merci bcp
no fonts found in settings
mcn1970 said:
no fonts found in settings
Click to expand...
Click to collapse
If you need more fonts you can install Wings Fonts.
So far so good, no issues on an Australian delivered g975f, looking forward to some modded kernels and multiboot
delete
AltarOfMyEgo said:
If you need more fonts you can install Wings Fonts.
Click to expand...
Click to collapse
i know that, but probably no fonts at all is a bug
mcn1970 said:
i know that, but probably no fonts at all is a bug
Click to expand...
Click to collapse
Please explain what do you mean no fonts. No fonts at all? What does your UI looks like? And your keyboard? With no fonts?
AltarOfMyEgo said:
Please explain what do you mean no fonts. No fonts at all? What does your UI looks like? And your keyboard? With no fonts?
Click to expand...
Click to collapse
in settings in Font style there is nothing to choose
Please, alternative mirror for download?
Thx
mcn1970 said:
in settings in Font style there is nothing to choose
Click to expand...
Click to collapse
You need to wait like 30 seconds and the fonts will appear.
Hey man, does Google Pay and other Banking apps work with this ROM or does Knox stay Tripped and security blocks banking apps etc? Hated that when I used to root my Samsung.
You need to follow some specific guides to make google pay to work. Check on telegram chat threads.
starbucks2010 said:
You need to follow some specific guides to make google pay to work. Check on telegram chat threads.
Click to expand...
Click to collapse
Sorted boot loop. Can't find the chat thread related to google pay on Telegram
i dont have LTE, only 4G with the East European CSC
what CSC should I chose when flashing?
Hey starbucks2010,
Absolutely loving the Rom. Smooth, no bugs and great battery life so far.
Is there a possibility you could mod the camera to 100% JPEG quality? Like done on Diamond Rom?
This would make the rom perfect for me

[Updated : Android 10] Star wars Note 10+ special theme now available

UPDATED TO ANDROID 10
• You can now directly apply Star wars special edition theme on your Galaxy Device running One UI 2.0
• Tested on Samsung Galaxy A50.
For Android 10 :
• Directly install any one of the three apk files.
• Apply the theme from Settings > Themes > My stuff
Download :https://drive.google.com/folderview?id=14IgWYu3PgqamDAMPN2LFS-FTlrx8erXO
For Galaxy A50, download the apk version 0320 as it works the best
For Android 9 :
>> Steps :
• Download the Zip file & extract:
https://drive.google.com/folderview?id=1H-gBa1R4VRazQ3UJPuSTPNv8kL9qICih
• Download this APK installer :
https://play.google.com/store/apps/details?id=com.magdalm.apkinstaller
• Open this Apk installer app and install the Darkside RC theme.apk from the extracted zip file. [ You can also install the stickers APK if you want ]
• Open your Samsung theme store and apply the wallpaper.
• The zip file also includes Original High Res star wars stock wallpapers.
All the Photos of the above steps are in thumbnails below for guidance !
>> Note :
• This doesn't permanently activate the theme, it's a trail version.
• Thanks to Yakapa40.
• According to a member @gabesir, you can install this theme permanently without root.
Check comments.
Enjoy !
Well it is working on my note 8 but it need more modifications as the dialer, settings and gallery are not themed well in addition the sounds are not set on my phone but it is very good as a start keep it up
It's working nice but I am a note 10 plus user and I really liked the s pen sound effects so can you update it?
@Boody Bryant I tested it on Note 8 and it's working fine. Follow the steps as mentioned above.
Cheers !
@BrinierFlame What exactly do you want to update ? It's by default in the original apk.
This is a non-modified version of the theme.
Cheers
I just noticed this is the first post of both of you on XDA. Feel free to tinker around @Boody Bryant and @BrinierFlame.
Cheers !
Sumedh_ said:
@Boody Bryant I tested it on Note 8 and it's working fine. Follow the steps as mentioned above.
Cheers !
Click to expand...
Click to collapse
Well, I get confused can u please help me with installation of the theme it is the first time I install a custom theme so plz help me
Boody Bryant said:
Well, I get confused can u please help me with installation of the theme it is the first time I install a custom theme so plz help me
Click to expand...
Click to collapse
if you use custom one ui installer it won't install properly I guess.
What about an 8.0 device
I have a samsung j7 max running 8.0 so will it work on it??
help activating this theme permanently
you mentioned there is various apps that can activate this theme permanently
can you please show which apps can activate this theme permanently or reffer me to another thread thank you very much
monsivaisz said:
you mentioned there is various apps that can activate this theme permanently
can you please show which apps can activate this theme permanently or reffer me to another thread thank you very much
Click to expand...
Click to collapse
i would very much like to know how you do that love the theme but the fact that after 10 mins is gone is so sad
Same thing here
therealroyston2 said:
if you use custom one ui installer it won't install properly I guess.
Click to expand...
Click to collapse
monsivaisz said:
you mentioned there is various apps that can activate this theme permanently
can you please show which apps can activate this theme permanently or reffer me to another thread thank you very much
Click to expand...
Click to collapse
• Don't use Custom One UI installer and hex installer, the theme won't apply properly. Only specific themes are designed to work on them.
• I don't want Samsung moderators to pull off this thread as the Star wars edition is just out.
• You can always use apps like package disabler pro to keep using Theme permanently. There are hundreds of tutorials on package disabler pro on YouTube.
Please have a look.
Cheers !
I cant get the theme to install on my phone amd I have a note 10+
Pyarrocks said:
I have a samsung j7 max running 8.0 so will it work on it??
Click to expand...
Click to collapse
• The theme was designed to work only on One UI devices.
• You can always download it and give a try, it's free. I currently don't have any Samsung Oreo device to test on.
• Anyways, I feel Batman Injustice theme from S7 edge was waay cooler, you should try that.
Sumedh_ said:
@BrinierFlame What exactly do you want to update ? It's by default in the original apk.
This is a non-modified version of the theme.
Cheers
Click to expand...
Click to collapse
monsivaisz said:
you mentioned there is various apps that can activate this theme permanently
can you please show which apps can activate this theme permanently or reffer me to another thread thank you very much
Click to expand...
Click to collapse
Can I know how u installed it with apk installer if I install nothing happens
blakfeather said:
I cant get the theme to install on my phone amd I have a note 10+
Click to expand...
Click to collapse
Did you followed the steps properly ?
My note 10+ has successfully applied the theme.
1) EXTRACT the B]Darkside RC.apk from the .ZIP file.
2) Download the APK installer app mentioned above.
3) OPEN APK installer app and Install the Darkside RC.apk
4) Open Samsung theme store and apply the theme.
Other users have already applied theme on their devices.
Fell free to DM me on XDA, if you were unable to apply the theme. I'll be happy to guide you again.
Cheers !
Reigns27nova said:
Can I know how u installed it with apk installer if I install nothing happens
Click to expand...
Click to collapse
Other users have already applied theme.
Follow the instructions given, it works 100%
Sumedh_ said:
Did you followed the steps properly ?
My note 10+ has successfully applied the theme.
1) EXTRACT the B]Darkside RC.apk from the .ZIP file.
2) Download the APK installer app mentioned above.
3) OPEN APK installer app and Install the Darkside RC.apk
4) Open Samsung theme store and apply the theme.
Other users have already applied theme on their devices.
Fell free to DM me on XDA, if you were unable to apply the theme. I'll be happy to guide you again.
Cheers !
Click to expand...
Click to collapse
Yea I did all of that, I hit install says it installed and nothing changes saying it installed, or in the theme store saying its there
Working fine on factory unlocked Note 10+ with Android 10 beta for 10 minutes. Having an issue killing the 10 minute time out rule. Tried package disabler and no luck either.

Categories

Resources