[Q] can i do that - Galaxy Tab 3 Q&A, Help & Troubleshooting

So for my rom i wanted to theme the pull down panel different colors but dont really know how so is there some way i could u a xposed module to change it t
On the rom im running then copy that systemui.apk or would that delete it and make it go back to normal because im not the best at editing so i was wanting to know if it was possible like maybe use waynam xposed or something

xposed
dsilx said:
So for my rom i wanted to theme the pull down panel different colors but dont really know how so is there some way i could u a xposed module to change it t
On the rom im running then copy that systemui.apk or would that delete it and make it go back to normal because im not the best at editing so i was wanting to know if it was possible like maybe use waynam xposed or something
Click to expand...
Click to collapse
as i understand xposed framework/modules work like an override
uninstall exposed = lose your changes
include xposed framework/modules in rom, ask permission where necessary/proper
touchwiz seems resistant to changes/happiness [sigh]
read the notes for each module to see if you'll encounter issues/fails
m

thanks
moonbutt74 said:
as i understand xposed framework/modules work like an override
uninstall exposed = lose your changes
include xposed framework/modules in rom, ask permission where necessary/proper
touchwiz seems resistant to changes/happiness [sigh]
read the notes for each module to see if you'll encounter issues/fails
m
Click to expand...
Click to collapse
thank u for the reply im goona try including the modules and xposed with the rom

You may also change systemUI.apk but be careful doing it ! If anything turns wrong, your device will reboot and will go to bootloop.
Sent from my room mate's computer

Related

[Q] How to use "Restrict background data" WITHOUT notification ?

Hi,
I wish to permanently use the "Restrict background data" feature ( under settings->data usage ) on my JB rom, but the problem is that when I enable that feature, I always get a notification, asking me to "touch to remove" that feature...
I don't wish to do that, even by mistake! I want that notification GONE completely, but to retain the "restrict" feature...
I understand, it's possible to permanently disable notifications, by altering "Settings.apk" somehow - but I don't know what and where to change ( wish file inside that apk ).
I used "apktool" to unpack the apk, but again - which file should I change ? what value/line should I delete ?
My rom is VJ's AOKP v2.2, so "Settings.apk" file is from that rom's version.
Any help would be great :highfive::fingers-crossed:
EDIT:
Guess it has something to do with "DataUsageSummary.smali" (after unpacking the Settings apk -> smali\com\android\settings):
BUT WHAT SHOULD I CHANGE ?!
please reply
gps3dx said:
Any help would be great :highfive::fingers-crossed:
Click to expand...
Click to collapse
Seriously ? Not even the smallest hint you ppl can give me ?:crying::crying:
Can't you even redirect me to the most prevalent sub-forum, here at XDA, for that kind of question ?:silly:
gps3dx said:
Seriously ? Not even the smallest hint you ppl can give me ?:crying::crying:
Can't you even redirect me to the most prevalent sub-forum, here at XDA, for that kind of question ?:silly:
Click to expand...
Click to collapse
Something called the search function; it's really useful.
You can't just expect others to answer your questions promptly. As for your questions, that's part of the android system and if you want to modify it, go ahead. It's not a notification because you can't swipe it away; it's an ongoing thing. SO if you want to go on with that kind of attitude, you can try it yourself.
droid_<3er said:
Something called the search function; it's really useful.
As for your questions, that's part of the android system and if you want to modify it, go ahead. It's not a notification because you can't swipe it away; it's an ongoing thing.
Click to expand...
Click to collapse
I really do appreciate your reply man - even though I googled xda from top to button.
( there are thread about modifying various stuff inside settings.apk / SystemUI.apk - but NON are about that "restriction notification" i'm talking about. )
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Update: For a while now it's already available in Xposed modules repository: http://repo.xposed.info/module/org.adam77root.removerestrictednotification.
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
WOW thnx... but just a few moments before you posted your message I to fulfill that wish of mine... I SOLVED IT !
Although I admit - I DO NOT KNOW if I disabled all of the "restrict background" feature, but I DO managed to enable the "restrict backgound data" checkbox ( then press OK at the popup ) WITHOUT getting any notification at all !
HOW TO DISABLE NOTIFICATION ALERT FOR "RESTRICT BACKGROUND DATA" ( under settings-> data usage-> options )​( I tried that fix on JB 4.2.2 ( to be specific: AOKP VJ Jelly Bean v2.2), BUT I guess it works on all JB 4.2.2 )​1. copy "services.jar" from "/system/framework/services.jar" to your computer.
MAKE A SAFE COPY OF THIS FILE IF SOMETHING HAPPENS TO YOU.
2. extract the jar file using Winrar or any compatible app.
3. using MultiTool decompile the "classes.dex" file as instructed by Multitool's thread.
4. open with any txt editor ( I used Notepad++ ) the file "NetworkPolicyManagerService.smali" under "decompiled\classout\com\android\server\net\" ( which is a sub-folder of Mulitool's folder that you've previously extracted )
5. A . search for:
Code:
invoke-interface/range {v0 .. v6}, Landroid/app/INotificationManager;->enqueueNotificationWithTag(Ljava/lang/String;Ljava/lang/String;ILandroid/app/Notification;[II)V
delete completely that line or add "# " in the start of that line ( which is what I did ) so that line looks like that:
Code:
# invoke-interface/range {v0 .. v6}, Landroid/app/INotificationManager;->enqueueNotificationWithTag(Ljava/lang/String;Ljava/lang/String;ILandroid/app/Notification;[II)V
B. search for:
Code:
invoke-virtual {v0, p1}, Ljava/util/HashSet;->add(Ljava/lang/Object;)Z
add "# " in the start of that line ( which is what I did ) or delete completely that line
6. SAVE that smali file that you've just edited.
7. using Multitool, recompile the classes.dex file.
if everything went good, you'll have classes.dex file under MultiTool's sub-folder named "output"
8. using Winrar, open "services.jar", replace the current "classes.dex" with the recompiled one that you've made.
9. copy the remade "services.jar" to your device(using adb etc ):
Code:
adb push "services.jar" /system/framework/services.jar
10. chmod "services.jar" to "-rw-r--r--", meaning you need to:
Code:
adb shell chmod 644 /system/framework/services.jar
11. restart your device, and It should rebuilt your dalvik cache.
ONLY if it didn't, I guess you should delete "/data/dalvik-cache/[email protected]@[email protected]" file, reboot again so your OS will create that dalvik-cache file.
I'll be happy to know if anyone can verify that indeed my fix just remove his/her notification, but retain the ability to disable background data. THANKS !
Sorry I doubted you. You are a genius!
Many thanks!!
Adam77Root, thank you so much for that module! I can confirm it working on my Galaxy Note 2. That notification was unbelievably annoying.
gps3dx, thank you too for this thread and your fix. While I didn't try it because I already have Xposed framework installed and I'd rather use the less invasive approach, I am still grateful for your seeing a problem, addressing it, and proactively doing something about it. My respects to you. I searched around quite a bit and came across many other forums on different sites where people had this same problem unanswered. I hope they find their way to this thread.
To the above poster who jumped down the OP's throat for bumping this topic 4 days after it went unanswered, obviously you didn't do any search on this topic yourself. I did. And until this thread, I found nothing really useful. And lo-and-behold, someone was kind enough to actually do something useful instead of pointlessly sitting there and criticizing. The squeaky wheel gets the grease. Rudely telling someone to 'check their attitude and search' is not helpful- it's just rude and pointless. Just FYI.
I have an i9300 and I can't find the first line in that archive...
eXtremeDevil said:
I have an i9300 and I can't find the first line in that archive...
Click to expand...
Click to collapse
mybe it is because you run JB 4.1.2 not 4.2.2 like I do, plus mybe you're running some custom framework ( it is not AOKP as I suspect from you sig )
Adam77Root said:
...I've quickly put together an Xposed module that removes the notification.
Click to expand...
Click to collapse
@Adam77Root
Big thanks for this module: I installed another 4.2.2 JB rom for my HTC Desire, and your module works !:good::good:
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
this was working fine on my aokp jb mr1 Milestone 2, but stopped working when i installed the nigthly nightly (jb-mr1)2013-08-21 (wich fixes my camera issues and soe other stuff)
is there anything i can try myself to fix this or is it just incopatible with that nightly? (its still 4.2)
I'm using Lenovo phone, 4.2.1 Version. In "services.jar" I see only folder "META-INF" and file "MANIFEST.MF". I tried to rename the file to classes.dex then using MultiTool decompile but I receive: "Unexpected top-level exception:java.lang.RuntimeException:bad magic value...etc"
So what's wrong, where to find classes.dex? Someone?
new edit: Thanks a lot for all the replies, also Xposed framework+module didn't work.
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
Thanks a lot. Works awesome. Is it possible to post the source code to this?
css771 said:
Thanks a lot. Works awesome. Is it possible to post the source code to this?
Click to expand...
Click to collapse
I'm almost certain I don't have the original files anymore. Since it's pretty simple, you can either decompile the apk or check Android source of the class I mentioned in the post you quoted. Only one function is replaced with returning null.
Edit: Just checked, the function is enqueueRestrictedNotification.
Sent from my OmniROM-powered LG Optimus 4X HD
Xposed module works perfect on LG G2. Thanks a bunch!
Sent from my VS980 4G using Tapatalk
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
nice module.. work perfectly.. thanks
rooting?
do i have to root my phone to do this? will the module work without rooting? i'm new to playing with codes on my phone but I have done a lot of work with linux before so i can understand the process, i've just never rooted my phone before. i'd really like to get rid of this notification and the "usb connectivity" app's notification: internal storage &SD card- internal storage &SD card connected to PC. I mean, do i really need a notification to tell me that my phone is connected to my PC?
that last request isn't as important, at least if i accidentally click on that i'm not turning on background data use!
-yasboss
xperia z1s
jb 4.3
(just joined xda devs)
p.s.
is this the right place to ask this question?
yasboss said:
do i have to root my phone to do this? will the module work without rooting? i'm new to playing with codes on my phone but I have done a lot of work with linux before so i can understand the process, i've just never rooted my phone before. i'd really like to get rid of this notification and the "usb connectivity" app's notification: internal storage &SD card- internal storage &SD card connected to PC. I mean, do i really need a notification to tell me that my phone is connected to my PC?
that last request isn't as important, at least if i accidentally click on that i'm not turning on background data use!
-yasboss
xperia z1s
jb 4.3
(just joined xda devs)
p.s.
is this the right place to ask this question?
Click to expand...
Click to collapse
you need root to use xposed installer..
what else can it be used for?
ajeesh vijayan said:
you need root to use xposed installer..
Click to expand...
Click to collapse
can i use it for other notifications like i asked? I mean there's more than just the USB connectivity etc

[MOD][XPOSED] NFC Icon Remover [HTC One/One X]

NFC Icon Remover
**You can now get NFC Icon Remover on the Xposed Framework's Download tab. In this way, if I update it, you will get update notice via Xposed framework. However, I will still post the most updated file here once available! **
I just wrote this little App for my own use to remove the ugly (IMHO) NFC icon. With the power of XPosed framework, there are no need to modify the NFC.apk and the Icon is complete GONE.
For those you may not know, the NFC icon appears on HTC One and One X (after Android 2.2 update). This take out the precious space of status bar while looking really ugly.
Please be noted to use this mod, you need XPosed framework by rovo89. You could get the Framework at http://forum.xda-developers.com/showthread.php?t=1574401
This App has no icon of it's own. Just side load attached NFCIconRemover.apk and enable it in the Xposed Installer then reboot. You will notice the NFC icon will be gone after reboot.
Since this is my first Android app (Actually my last time writing any SW is 20 years ago! Haha!) so feel free to risk your phone by installing this. I am NOT responsible if it anything went wrong after install this mod.
I had only test this on my HTC One X (international version) with MaximusHD 21.1.0 (a very good custom ROM). Please feel free to feedback on this thread and I will try to resolve as much as I could.
If you find this useful, it would be appreciated to push the "Thank" button!
Great thanks go to rovo89 for this fabulous framework!!!
When I try to install from within xposed framework, I get the following error message:
Package name is incorrect (downloaded: com.lssong.nfciconremover, expected: NFCIconRemover)
Any idea?
edit: Just noticed that manual installation of the .apk works. So more or less a non-issue, but maybe worth solving anyway.
BigBlue007 said:
When I try to install from within xposed framework, I get the following error message:
Package name is incorrect (downloaded: com.lssong.nfciconremover, expected: NFCIconRemover)
Any idea?
edit: Just noticed that manual installation of the .apk works. So more or less a non-issue, but maybe worth solving anyway.
Click to expand...
Click to collapse
Yeah, I get the same thing happening.
As said above, manual installation of the .apk worked fine. The module is now listed in xposed framework, and I could enable it. Unfortunately it's not removing the NFC icon on my device (LG G2).
Deleted due to double post
BigBlue007 said:
As said above, manual installation of the .apk worked fine. The module is now listed in xposed framework, and I could enable it. Unfortunately it's not removing the NFC icon on my device (LG G2).
Click to expand...
Click to collapse
Thanks for trying out! I just fixed the download installation issue in the Xposed framework. It should work now... *My Bad*...
As for LG G2 not working... Since I don't have a LG, could you please help by checking if the LG G2's NFC service package name is com.android.nfc? If not, what is the name?
Thanks!
Hi. How can i have the nfc back again? Thanks
Installed, works great, thanks!
rharta said:
Hi. How can i have the nfc back again? Thanks
Click to expand...
Click to collapse
If you want the NFC icon back, just disable this module in XPosed frameworks and reboot. The NFC icon will be back. (uninstalling the module then reboot will do the same trick)
SephirothXIIIX said:
Do you know if this is supposed to work with the 4.3 update? I've installed the Xposed Framework and enabled the module and rebooted, but I still have the annoying icon.
Click to expand...
Click to collapse
Since my One X doesn't have 4.3 yet, so I cannot test myself. However, as long as Xposed framework works and the NFC process is named "com.android.nfc" then it *should* work.
Feel free to install it and post your result here! It won't hurt anything and if it doesn't work, just remove it.
If it doesn't work, could you please let me know your NFC's process name so I could add it.
Thanks!
Sony Xperia Z
Process name is
com.sonymobile.nfc
Or at least it is on my rooted stock T-Mobile version. Model #C6606. Running 4.1.2 (I know, ridiculous).
Thanks for the mod. I hate that icon!
lssong99 said:
Thanks for trying out! I just fixed the download installation issue in the Xposed framework. It should work now... *My Bad*...
As for LG G2 not working... Since I don't have a LG, could you please help by checking if the LG G2's NFC service package name is com.android.nfc? If not, what is the name?
Thanks!
Click to expand...
Click to collapse
LgNfc.apk
Ok, I will add both when I can get back to my PC with the source code next week!
Sent from my HTC One X using XDA Premium HD app
Palthron said:
LgNfc.apk
Click to expand...
Click to collapse
Sorry, LgNFC.apk is the name of the apk file... Can you try to get the "process name" which looks like com.android.nfc? (I guess LG's might look like com.lge.nfcaddon ...)
If you don't know how to get a process name, try to get Android Tuner free. In that app you can see all the process name!
From the information on XDA, it seems LG had their own implementation of NFC and lot of things are changed under-hook. I had look up into the BaskSamli people provide and pull the com.lge.nfcaddon. Not sure if it's correct and even if it's correct, will it work or not.
Anyway, you can try the attached apk and check yourself! If it works, I will post it on the XPosed framework's download page
Cheers!
probablymartin said:
Process name is
com.sonymobile.nfc
Or at least it is on my rooted stock T-Mobile version. Model #C6606. Running 4.1.2 (I know, ridiculous).
Thanks for the mod. I hate that icon!
Click to expand...
Click to collapse
I have added to hook also Sony's nfc but but sure if it will work or not. Could you please side load this apk and test for me? If it works, I will post it on the XPosed Framework's download page!
Thanks!
maybe try again?
That did not work on my Xperia. But I may have flubbed the service name. Perhaps try:
com.sonymobile.nfc.NfcServiceEx
Thanks!
probablymartin said:
That did not work on my Xperia. But I may have flubbed the service name. Perhaps try:
com.sonymobile.nfc.NfcServiceEx
Thanks!
Click to expand...
Click to collapse
OK. Modified accordingly. However, it seems Sony also modified their NFC service so no guarantee my simple way will work... Anyway please let me know if it works!
sigh
lssong99 said:
OK. Modified accordingly. However, it seems Sony also modified their NFC service so no guarantee my simple way will work... Anyway please let me know if it works!
Click to expand...
Click to collapse
Nope. No luck. I guess Sony doesn't want me to control me own phone experience. But there's nothing to unique about that, I guess. Thanks for your effort and prompt responses!
lssong99 said:
Sorry, LgNFC.apk is the name of the apk file... Can you try to get the "process name" which looks like com.android.nfc? (I guess LG's might look like com.lge.nfcaddon ...)
If you don't know how to get a process name, try to get Android Tuner free. In that app you can see all the process name!
From the information on XDA, it seems LG had their own implementation of NFC and lot of things are changed under-hook. I had look up into the BaskSamli people provide and pull the com.lge.nfcaddon. Not sure if it's correct and even if it's correct, will it work or not.
Anyway, you can try the attached apk and check yourself! If it works, I will post it on the XPosed framework's download page
Cheers!
Click to expand...
Click to collapse
lssong99 thank you, I tired this but unfortunately it didn't work on LG G2 801. There was a zip somewhere to flash in recovery, but I'd love to have an xposed module that took care of it.
I appreciate your hard work!
nathanskidmore said:
lssong99 thank you, I tired this but unfortunately it didn't work on LG G2 801. There was a zip somewhere to flash in recovery, but I'd love to have an xposed module that took care of it.
I appreciate your hard work!
Click to expand...
Click to collapse
Hi, apk did not work for me either. Would love to have the icon removed. Can I help in fixing it for G2? Please let me know how. Appreciate the hard work!

[Q] T211 Mods and Speed

Hi all I have a T211. What modifications and mods do you recommend? So far I have deleted samsung mess.
Send by T211
WHITE-CZ said:
Hi all I have a T211. What modifications and mods do you recommend? So far I have deleted samsung mess.
Send by T211
Click to expand...
Click to collapse
You have already rooted I guess since you've already deleted samsung apps. We don't have much ROM choices so all I did was stock, root, debloat, flash blackhawk kernel, and use xposed modules for further modding like xhalofloatingwindow and other modules like Xblast or Gravitybox for theming. Also deleted not needed apps in startup (using ROM Toolbox) and Greenify apps. Don't use themes since I have yet to find a full theme.
Use betterbatterystat to get a better picture of what process are eating your batter up.
Good luck
Make sure power-saving mode is turned off. Otherwise, Nova Launcher + Dolphin >> TouchWiz launcher + Chrome.
Looks like you need a Custom ROM !
Sent from my room mate's computer
What you recommend?
build.prop
Hi if u would like i can post a list of build.prop tweaks to speed up and reduce ram and battwry usage and other stuff all better image viewing etc
it would be the same list i have on my custom rom posted up here to help it run better
dsilx said:
Hi if u would like i can post a list of build.prop tweaks to speed up and reduce ram and battwry usage and other stuff all better image viewing etc
it would be the same list i have on my custom rom posted up here to help it run better
Click to expand...
Click to collapse
And where your ROM download?
sorry
WHITE-CZ said:
And where your ROM download?
Click to expand...
Click to collapse
Hi im sorry i wasent paying attention to the title now i would give u my rom but it is for t210r/t210 but the build.prop tweaks i added are able to ran on all devices so if u want i could copy then to a txt and put then on android file host along with how to put them in the build.prop if u dont know hoe
dsilx said:
Hi im sorry i wasent paying attention to the title now i would give u my rom but it is for t210r/t210 but the build.prop tweaks i added are able to ran on all devices so if u want i could copy then to a txt and put then on android file host along with how to put them in the build.prop if u dont know hoe
Click to expand...
Click to collapse
And it will work right on the T211?
yes
WHITE-CZ said:
And it will work right on the T211?
Click to expand...
Click to collapse
The rom sorry it wont but the buikd.prop tweaks will work on all devices
dsilx said:
The rom sorry it wont but the buikd.prop tweaks will work on all devices
Click to expand...
Click to collapse
So ok I'll try it
better
QUOTE=WHITE-CZ;53390646]And it will work right on the T211?[/QUOTE]
Hi i found a post that looks like it holds alot more tweaks
http://forum.xda-developers.com/showthread.php?t=2360670 if they help plse thank the dev who posted it
Hope i could help
Be warned with build.prop editing !
It can make your Tab completly UNUSABLE.
About ROMs for Tab 3 Lite, see in Tab 3 7.0 Development Forum instead.
Don't flash a Tab 3 7.0 Rom onto a Tab 3 Lite or else your Tab may NOT boot even if both devices have more similar HW.
Sent from Gallifrey using TARDIS

[Q] how to make xposed changes permanent????

in xposed when we delete it the all customized things back to default is there any way ...to make it permanent i.e it will not go back to default as we uninstall xposed........
osheen jha said:
in xposed when we delete it the all customized things back to default is there any way ...to make it permanent i.e it will not go back to default as we uninstall xposed........
Click to expand...
Click to collapse
i think we cant make xposed permanent
but you can ask members at xopsed section
http://forum.xda-developers.com/xposed

Remove brithness slider

hi,
I've searched quite a bit on the forum and can't find anything that seems to do it. I know some custom rom have it in their System UI tuner but I prefer running stock.
Basically, I use Lux app for my brightness since I like having different profiles triggered by tasker. hence the brightness slider is redundant for me and takes up space when I never use it.
If anybody has an idea of a substratum theme or something like that that I can use on a rooted stock rom with magisk.
Thanks
Wrong Thread
Sorry didn't see the post, please move to Q&A
b.charles.gagne said:
Sorry didn't see the post, please move to Q&A
Click to expand...
Click to collapse
You can use GravityBox Xposed module
Quicksettings Management ---> Hide brightness slider
b.charles.gagne said:
hi,
I've searched quite a bit on the forum and can't find anything that seems to do it. I know some custom rom have it in their System UI tuner but I prefer running stock.
Basically, I use Lux app for my brightness since I like having different profiles triggered by tasker. hence the brightness slider is redundant for me and takes up space when I never use it.
If anybody has an idea of a substratum theme or something like that that I can use on a rooted stock rom with magisk.
Thanks
Click to expand...
Click to collapse
The base in my aroma has this option in system ui tuner.
Tulsadiver said:
The base in my aroma has this option in system ui tuner.
Click to expand...
Click to collapse
Yeah i've seen your aroma but it seems that EdgeSense plus doesn't play well with your aroma.
I think I've read that it's because EdgeSense using magisk plugin replaces the systemui.apk at EACH boot to make sure the setting stick.
So I guess any mods won't be kept unless edgeSense changes their method?
EDIT: I think it's for the same reason 3minit wasn't working and is related to the answer you gave me on the other post. Is there a way to have your aroma as a module also or do you suggest me to change the way I manage my phone and doing it without modules?
b.charles.gagne said:
Yeah i've seen your aroma but it seems that EdgeSense plus doesn't play well with your aroma.
I think I've read that it's because EdgeSense using magisk plugin replaces the systemui.apk at EACH boot to make sure the setting stick.
So I guess any mods won't be kept unless edgeSense changes their method?
Click to expand...
Click to collapse
Sounds like it. Poor way to do it in my opinion.

Categories

Resources