[Reward] Modding S5 Browser Search Engines - Galaxy S 4 Themes and Apps

Hey guys,
could anyone of you decompile SBrowser.apk from here: https://mega.co.nz/#!fghHgZKQ!2NGBoJ69xBF411iXg9lKbSB69M16E0jJTv5S60cA9gs
Framework for decompiling:
https://mega.co.nz/#!WB5mUSaA!UJOEZmdIKDtnzaPdUnbBXLjYFAWoJOcmpJUx_WNtY2c
https://mega.co.nz/#!vYhRXA4D!Do2GwfwYQ5tYhHu50m9lqFWbARKjXi3BlK9hJ5Ct1eo
then add to /res/values/arrays.xml the following lines:
<string-array name="'DuckDuckGo">
<item>DuckDuckGo</item>
<item>duckduckgo.com</item>
<item>https://duckduckgo.com/favicon.ico</item>
<item>https://duckduckgo.com/?q={searchTerms}</item>
<item>UTF-8</item>
<item></item>
</string-array>
<string-array name="DuckDuckGoBeta">
<item>DuckDuckGoBeta</item>
<item>next.duckduckgo.com</item>
<item>https://next.duckduckgo.com/favicon.ico</item>
<item>https://next.duckduckgo.com/?q={searchTerms}</item>
<item>UTF-8</item>
<item></item>
</string-array>
and under <string-array name="search_engines">
add:
<item>DuckDuckGo</item>
<item>DuckDuckGoBeta</item>
and then go to res\values-de-rDE\arrays.xml (<-- I'm from Germany, but you can also edit every other arrays.xml for other countries if you want to) and add under <string-array name="search_engines">:
<item>DuckDuckGo</item>
<item>DuckDuckGoBeta</item>
compile and then send the apk to me?
I'm too stupid myself to properly decompile, I always get errors. So anybody who is able to add DuckDuckGo and DuckDuckGoBeta to the selection of the Search Engines on the S5 browser provided above will get a nice donation from me via paypal - 3-5€ :good: (of course only if you want to )
Thanks for help!
Sincerely,
GamingWiidesire

3-5 dollars is a bit stingy for a lot of work. I would charge maybe 150 for their hard work and thus is why you have no replies
Sent from my GT-I9505 using Tapatalk

patch81 said:
3-5 dollars is a bit stingy for a lot of work. I would charge maybe 150 for their hard work and thus is why you have no replies
Sent from my GT-I9505 using Tapatalk
Click to expand...
Click to collapse
LOL...Agree bro.
I would charge 300$ for such work.

Sorry I can only provide 10000$ maximum

If possible, please use the updated browser for the mod: https://mega.co.nz/#!ixgjlaoL!YzVqVAV2pRK_kD6826GyVcjC6d6xMuj6rQPUTbk5CUg
Gesendet von meinem GT-I9505 mit Tapatalk

Done
Here you go
Moded from the latest link you posted , added everthing , compiled and signed try it and give me a feedback please :laugh:
Link : MEGA

Thanks for the help! Unfortunately it says Internet stopped everytime I start it. Cleaned cache+data. Seems like something is wrong with the code I posted. Maybe you could try to remove yahoo and ask.com, because maybe it can only show 4 search engines? I don't know :/
Gesendet von meinem GT-I9505 mit Tapatalk

Related

Add Multiwindow Support for Apps thru CSC file

UPDATE: A fellow xda member created an app that will help you add multiwindow support for your app through feature.xml. You can visit his thread here.
This maybe a simple way to add multiwindow support to apps without having to modify apks and at the same time be able to update your apps without losing multiwindow support just by editing a simple text file. This may or may not work for you.
I don't have a note10.1 but as I was trying to port some features from the note10.1 to the note1, I came across a smali code fragment that checks for multiwindow supported apps in CSC file as well as excluded apps so I tried to investigate further and found out that you can actually add multiwindow support for almost any app by just adding it's package name in feature.xml or other.xml in /system/csc folder. So if you look into your feature.xml file you will see the code below.
Code:
<CscFeature_MultiWindow_AddOnApp>-com.google.android.apps.maps,-com.google.android.maps,-com.google.android.gm,-com.google.android.talk,-com.google.android.youtube,-com.android.chrome,-com.facebook.katana,-com.twitter.android,-com.kakao.talk,-com.android.email,-com.android.mms,-com.sec.android.mms.kor,-com.sec.android.app.snotebook,-com.infraware.polarisviewer4,-com.infraware.polarisoffice4</CscFeature_MultiWindow_AddOnApp>
What to do?
Just delete all package names inside like below:
Code:
<CscFeature_MultiWindow_AddOnApp></CscFeature_MultiWindow_AddOnApp>
Then add the package name of every app you want to have multiwindow support like this...
Code:
<CscFeature_MultiWindow_AddOnApp>com.android.vending</CscFeature_MultiWindow_AddOnApp>
and add another like below (separated by a comma) :
Code:
<CscFeature_MultiWindow_AddOnApp>com.android.vending,com.android.settings</CscFeature_MultiWindow_AddOnApp>
If you notice, there are no "-" prefixes to package names and there are no white spaces (this is very important).
How to find the package name?
You can look into the /data/data folder using root explorer/solid explorer/root browser and find the folder that corresponds to the app you want to add. The folder name is the package name.
NOTE: If you have the feature.xml file but doesn't have the <CscFeature_MultiWindow_AddOnApp></CscFeature_MultiWindow_AddOnApp> code above, then just copy the code above and insert it into your feature.xml file.
NOTE:If you don't have the feature.xml file but have the other.xml file, just copy the code above into your other.xml and edit it and insert the apps you want. Remember to reboot after editing for the change to take effect.
This feature works for my stock rooted deodex note n7000 (not modded for unlimited multiwindow apps).
* The smali code where I got this idea from is note1 JB 4.1.2 so for note10.1 it may also be only available for JB 4.1.2.
If it works for you show some appreciation. Post feedback and share your experience for the benefit of others.
I have a note 10.1 and I tried this. I got into the feature.XML file and it doesn't look anything like that. I would love this to work... but I am still on ICS and wonder if that may be the problem.
Any help? Or was anybody else able to do this and make it work?
Ok I got the file by default all google apps are mutiwindow enabled but the same still do not have this feature
I am 4.1.2 but unfortunately haven't got a multiview line in the xml.
Sent from my GT-I9300 using xda app-developers app
samir_a said:
Ok I got the file by default all google apps are mutiwindow enabled but the same still do not have this feature
Click to expand...
Click to collapse
Yes same here.
I tried with Dropbox and other apps but this mod doesn't work. But a strange thing has happened: when I mod the file all apps in the original list become MultiWindow!! In this way now I have gmail 4.2.1 in MultiWindow and I have download it from playstore (The same thing for YouTube, Facebook, Chrome ecc ecc).
Inviato dal mio GT-N8000 con Tapatalk 2
Mirkokkk said:
I tried with Dropbox and other apps but this mod doesn't work. But a strange thing has happened: when I mod the file all apps in the original list become MultiWindow!! In this way now I have gmail 4.2.1 in MultiWindow and I have download it from playstore (The same thing for YouTube, Facebook, Chrome ecc ecc).
Inviato dal mio GT-N8000 con Tapatalk 2
Click to expand...
Click to collapse
Im glad you also experienced this aswell. I noticed this aswell when i opened up the dock and saw google maps. I did not expect this to happen and thought i always had it but was over looked. Now it all makes sense lol
Sent from my GT-N8000 using Tapatalk 2
What exactly did you change and it which file? I cant find what the op says
Sent from my GT-N8013 using XDA Premium HD app
damonsmith666 said:
What exactly did you change and it which file? I cant find what the op says
Sent from my GT-N8013 using XDA Premium HD app
Click to expand...
Click to collapse
yep... can someone pls explain and clarify?
---------- Post added at 10:02 AM ---------- Previous post was at 10:01 AM ----------
Mirkokkk said:
I tried with Dropbox and other apps but this mod doesn't work. But a strange thing has happened: when I mod the file all apps in the original list become MultiWindow!! In this way now I have gmail 4.2.1 in MultiWindow and I have download it from playstore (The same thing for YouTube, Facebook, Chrome ecc ecc).
Inviato dal mio GT-N8000 con Tapatalk 2
Click to expand...
Click to collapse
can you pls clarify and explain what exactly you did?
thegios said:
yep... can someone pls explain and clarify?
---------- Post added at 10:02 AM ---------- Previous post was at 10:01 AM ----------
can you pls clarify and explain what exactly you did?
Click to expand...
Click to collapse
You must mod feature.xml in System/CSC folder. At the end of this file there are strings for multiwindow. In these strings I have only added "com.dropbox.android". In this way Dropbox didn't become multiwindow but yes all apps in the original list (Gmail, youtube, Facebook etc etc)
Inviato dal mio Galaxy Nexus con Tapatalk 2
Mirkokkk said:
You must mod feature.xml in System/CSC folder. At the end of this file there are strings for multiwindow. In these strings I have only added "com.dropbox.android". In this way Dropbox didn't become multiwindow but yes all apps in the original list (Gmail, youtube, Facebook etc etc)
Inviato dal mio Galaxy Nexus con Tapatalk 2
Click to expand...
Click to collapse
didn't work for me...
I have rooted the tablet, opened feature.xml, added dropbox as you said, rebooted... still nothing
thegios said:
yep... can someone pls explain and clarify?
---------- Post added at 10:02 AM ---------- Previous post was at 10:01 AM ----------
can you pls clarify and explain what exactly you did?
Click to expand...
Click to collapse
Does not work ROM][STOCK][4.1.2] N8000 Stock Rooted Busybox Deodexed
kolmanb said:
Does not work ROM][STOCK][4.1.2] N8000 Stock Rooted Busybox Deodexed
Click to expand...
Click to collapse
same here: stock 4.1.2 rooted rom (not deodexed though)
Tried it and it works!!Stock german 4.1.2 rom.
Verstuurd van mijn GT-N8000 met Tapatalk
aartvv said:
Tried it and it works!!
Verstuurd van mijn GT-N8000 met Tapatalk
Click to expand...
Click to collapse
ok can you pls explain what exactly you have done step by step?
it didn't work for me...
thanks
thegios said:
ok can you pls explain what exactly you have done step by step?
it didn't work for me...
thanks
Click to expand...
Click to collapse
I used solid explorer and went to the map csc.Then opened the feature.xml file.Scrolled all the way down to the multiview part.Then i put -com.dropbox.android,between the other ones.Rebooted and they were there.Gmail and Gmaps work fine only youtube doesnt scale wright.
Only thing is that when i open a the feature.xml file now it's completly blank!!So i cant make a screenshot.Anyone else with this problem?
Verstuurd van mijn GT-N8000 met Tapatalk
aartvv said:
I used solid explorer and went to the map csc.Then opened the feature.xml file.Scrolled all the way down to the multiview part.Then i put -com.dropbox.android,between the other ones.Rebooted and they were there.Gmail and Gmaps work fine only youtube doesnt scale wright.
Only thing is that when i open a the feature.xml file now it's completly blank!!So i cant make a screenshot.Anyone else with this problem?
Verstuurd van mijn GT-N8000 met Tapatalk
Click to expand...
Click to collapse
that's what I did... with no avail... damn... (see attachment)
Oke well don't know if it helps but i putted it behind the the "-com.google android maps," line.Maybe you can try it.
Verstuurd van mijn GT-N8000 met Tapatalk
aartvv said:
Oke well don't know if it helps but i putted it behind the the "-com.google android maps," line.Maybe you can try it.
Verstuurd van mijn GT-N8000 met Tapatalk
Click to expand...
Click to collapse
tried that as well... I put it at the beginning, at the end, and after the two maps right before gm... nothing
and i have your same rom...
maybe you did before some other changes?
aartvv said:
I used solid explorer and went to the map csc.Then opened the feature.xml file.Scrolled all the way down to the multiview part.Then i put -com.dropbox.android,between the other ones.Rebooted and they were there.Gmail and Gmaps work fine only youtube doesnt scale wright.
Only thing is that when i open a the feature.xml file now it's completly blank!!So i cant make a screenshot.Anyone else with this problem?
Verstuurd van mijn GT-N8000 met Tapatalk
Click to expand...
Click to collapse
But Dropbox (and so other added apps in the file) doesn't work in MultiWindow, it's right? With es gestore file i haven't this problem (blank file after the mod).
Inviato dal mio GT-N8000 con Tapatalk 2

(Workaround) Carrier name fix for cm10.1

We all know cm for S4 9505 (and perhaps the other variants) have the carrier name shown as a number instead the actual name.
Here is a workaround for that til it's fixed.
1. Download Modaco Toolkit and install.
http://loadbalancing.modaco.com/download.php?file=com.modaco.toolkit.apk
2. Download and install xposed mod
http://forum.xda-developers.com/attachment.php?attachmentid=1957219&d=1368387321
3. Run xposed mod and install/update it in the app and check modaco toolkit.
4. In the modaco toolkit mod you should see system ui. Click on it and change your carrier name.
5. Reboot and enjoy.
Gesendet von meinem GT-I9505 mit Tapatalk 2
iamnotkurtcobain said:
We all know cm for S4 9505 (and perhaps the other variants) have the carrier name shown as a number instead the actual name.
Here is a workaround for that til it's fixed.
1. Download Modaco Toolkit and install.
http://loadbalancing.modaco.com/download.php?file=com.modaco.toolkit.apk
2. Download and install xposed mod
http://forum.xda-developers.com/attachment.php?attachmentid=1957219&d=1368387321
3. Run xposed mod and install/update it in the app and check modaco toolkit.
4. In the modaco toolkit mod you should see system ui. Click on it and change your carrier name.
5. Reboot and enjoy.
Gesendet von meinem GT-I9505 mit Tapatalk 2
Click to expand...
Click to collapse
Cheers mate! It works! Though I noticed it doesn't show up with the pull down notifications. Only on lockscreen.
footsouljah said:
Cheers mate! It works! Though I noticed it doesn't show up with the pull down notifications. Only on lockscreen.
Click to expand...
Click to collapse
Does for me
Gesendet von meinem GT-I9505 mit Tapatalk 2
Great fix mate! Thx
Sent using GT-i9505~

[Request] Smaller softkeys mod for .534 firmware

Hi guys,
I've been using the smaller softkeys mod on my old Xperia Z for half a year now (24dpi size) and just can't and don't wanna get used to these huge and annoying stock softkeys...they are so large and ugly and take away so much screenspace.
Can anybody make a flashable zip or something to make them smaller? That'll be great!
Thank you.
drsoran2 said:
Hi guys,
I've been using the smaller softkeys mod on my old Xperia Z for half a year now (24dpi size) and just can't and don't wanna get used to these huge and annoying stock softkeys...they are so large and ugly and take away so much screenspace.
Can anybody make a flashable zip or something to make them smaller? That'll be great!
Thank you.
Click to expand...
Click to collapse
You can try Xposed and Xpeira V Mods
There is option for 48, 36 & 24dpi
Sent from International Space Station
drsoran2 said:
I've been using the smaller softkeys mod on my old Xperia Z for half a year now (24dpi size) and just can't and don't wanna get used to these huge and annoying stock softkeys...they are so large and ugly and take away so much screenspace.
Can anybody make a flashable zip or something to make them smaller? That'll be great!
Thank you.
Click to expand...
Click to collapse
+1 :good:
---------- Post added at 06:29 PM ---------- Previous post was at 06:26 PM ----------
soxxo said:
You can try Xposed and Xpeira V Mods
There is option for 48, 36 & 24dpi
Click to expand...
Click to collapse
do you mean this?
http://forum.xda-developers.com/showthread.php?p=40214768
Works like a charm!!!!!
guybrush2099 said:
+1 :good:
---------- Post added at 06:29 PM ---------- Previous post was at 06:26 PM ----------
do you mean this?
http://forum.xda-developers.com/showthread.php?p=40214768
Click to expand...
Click to collapse
Yes or XBlast Tools
Sent from International Space Station
Both Xblast tool or Xperia V mod still give me the back button bug
Anybody has a solution?
Gesendet von meinem C6903 mit Tapatalk 2
Are you saying you want the bug?
Lol
Sent from my C6903 using xda premium
gregbradley said:
Are you saying you want the bug?
Lol
Sent from my C6903 using xda premium
Click to expand...
Click to collapse
Lol , sorry , edited . Im not very good at english hehe
Gesendet von meinem C6903 mit Tapatalk 2
I'll wait the hero creates flashable soft keys 36+32 (the same mod we knew on the XZ) :angel:
I'm happy to make a flashable zip for this. It's a pretty simple mod to do..once you know how.
The problem is I've just got the ordinary Z (why didn't I wait a few months?!) so I'll need some files from somebody.
I'll need:
system/framework/framework-res.apk
system/framework/SemcGenericUxpRes.apk
system/app/SystemUI.apk
system/vendor/overlay/android-res.apk
That should do it.
Sent from my C6603 using XDA Premium 4 mobile app
Ticklefish said:
I'm happy to make a flashable zip for this. It's a pretty simple mod to do..once you know how.
The problem is I've just got the ordinary Z (why didn't I wait a few months?!) so I'll need some files from somebody.
I'll need:
system/framework/framework-res.apk
system/framework/SemcGenericUxpRes.apk
system/app/SystemUI.apk
system/vendor/overlay/android-res.apk
That should do it.
Sent from my C6603 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Here are three out of four files. Unfortunately, I can't find the last file in the folder which you've specified. Please have a look at the attached screenshot which shows what's in this folder. Maybe it has a different name now or was moved to another location?
https://dl.dropboxusercontent.com/u/82357813/files for mod.zip
I'm on latest .534 Xperia Z1 firmware.
deleted.
look here http://forum.xda-developers.com/showthread.php?t=2465514
glitschi667 said:
hi,
not quite sure, but if I look at the script that generates the mod files for me - it seems as if the SystemUI.odex is also needed.....
messing with the xml file to fix the back button problem seems do require new odexing from the system...
I've started this morning to download an image of your firmware because I wanted to test my softkey mod creation script.... Now I downloaded the deodexed stock firmware, since I had problems extracting system.sin.....
edit:
ok. I had to change the scripts a bit since they worked via adb to get the files needed but since I also do not have the Z1..... so I cannot test.... and this may be a bit risky...
somebody willing to try out?
DO A BACKUP FIRST!
Click to expand...
Click to collapse
you would need a working recovery for locked bootloaders to test this out. Is there one already?
drsoran2 said:
you would need a working recovery for locked bootloaders to test this out. Is there one already?
Click to expand...
Click to collapse
what's this:
http://forum.xda-developers.com/showpost.php?p=45897998&postcount=36
maybe this?
http://forum.xda-developers.com/showthread.php?t=2455959
EDIT:
but not sure if they are working....
what you can do:
take the framework-res-overlay-navbarXX.apk out of the zips above and put it into /system/vendor/overlay/
if you then have smaller softkeys, that would be step one.
I can give you a new SystemUI.apk to fix the "big back button" problem...if it is there....
glitschi667 said:
what's this:
http://forum.xda-developers.com/showpost.php?p=45897998&postcount=36
maybe this?
http://forum.xda-developers.com/showthread.php?t=2455959
EDIT:
but not sure if they are working....
what you can do:
take the framework-res-overlay-navbarXX.apk out of the zips above and put it into /system/vendor/overlay/
if you then have smaller softkeys, that would be step one.
I can give you a new SystemUI.apk to fix the "big back button" problem...if it is there....
Click to expand...
Click to collapse
what would happen if I did this and reboot? Could it be that I don't have any softkeys at all?
As a safeguard, is it a good idea to enable and autostart an app like "Auto hide softkeys" which brings its own softkey nav bar? I could use this to navigate if the other option fails? Or is it also tied to the stock soft keys?
I guess I'm not brave enough (yet) to test it out . I just finished setting up my Z1 a few days ago and everything is running smoothly and I don't want to mess with it.
I'll have to get annoyed enough with the stock keys or my current replacement (Auto hide softkeys) in order to take the plunge.
drsoran2 said:
what would happen if I did this and reboot? Could it be that I don't have any softkeys at all?
As a safeguard, is it a good idea to enable and autostart an app like "Auto hide softkeys" which brings its own softkey nav bar? I could use this to navigate if the other option fails? Or is it also tied to the stock soft keys?
I guess I'm not brave enough (yet) to test it out . I just finished setting up my Z1 a few days ago and everything is running smoothly and I don't want to mess with it.
I'll have to get annoyed enough with the stock keys or my current replacement (Auto hide softkeys) in order to take the plunge.
Click to expand...
Click to collapse
If it does not work, nothing should happen actually... Worst case: no softkeys.. fix: open a root explorer, navigate to system/vendor/overlay and delete the apk....
glitschi667 said:
hi,
not quite sure, but if I look at the script that generates the mod files for me - it seems as if the SystemUI.odex is also needed.....
messing with the xml file to fix the back button problem seems do require new odexing from the system...
I've started this morning to download an image of your firmware because I wanted to test my softkey mod creation script.... Now I downloaded the deodexed stock firmware, since I had problems extracting system.sin.....
edit:
ok. I had to change the scripts a bit since they worked via adb to get the files needed but since I also do not have the Z1..... so I cannot test.... and this may be a bit risky...
somebody willing to try out?
DO A BACKUP FIRST!
Click to expand...
Click to collapse
Tries this and the nav bar goes smaller
But the big back button is still there,
Would u share the system UI to fix the bug?
Gesendet von meinem C6903 mit Tapatalk 2
chitose_ndy said:
Tries this and the nav bar goes smaller
But the big back button is still there,
Would u share the system UI to fix the bug?
Gesendet von meinem C6903 mit Tapatalk 2
Click to expand...
Click to collapse
That's easy enough to fix. We'd need to edit the navbar.xml and remove the 'android:scaleType' bit of code from the back softkey line.
Sent from my C6603 using XDA Premium 4 mobile app
chitose_ndy said:
Tries this and the nav bar goes smaller
But the big back button is still there,
Would u share the system UI to fix the bug?
Gesendet von meinem C6903 mit Tapatalk 2
Click to expand...
Click to collapse
sure...
here we go....
you need to delete SystemUI.odex inside /system/app
and replace SystemUI.apk with the attached one. make sure it has 644 permissions. ("chmod 644 /system/app/SystemUI.apk")
But please do a backup and enable USB debugging before deleting anything! so you might have a chance to revert your changes if something goes wrong....
und vielen dank fuers testen!!!
EDIT: attachment did not work. REMOVED!
Ticklefish said:
That's easy enough to fix. We'd need to edit the navbar.xml and remove the 'android:scaleType' bit of code from the back softkey line.
Sent from my C6603 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Where could i find the navbar.xml?
Gesendet von meinem C6903 mit Tapatalk 2

[I9500][4.4.2][deodexed] Get the Galaxy S5 experience

Get the SystemUI(notification bar) and the s5 apps:
Download the folder and copy the apps on the system folder to their respectives folders to /system with Root Explorer, don't forget to change permissions to "rw-r--r--".
The installnormally folder you know, just install as a normal apk.
DOWNLOADS:
NEW W2:
S5Apps/widgets: https://mega.co.nz/#!AdcCwLJJ!h09wTxO_jPmTgNIwbjnQBZ3mfC-Cg5IIlju_YMvEK8U
SystemUI:
http://forum.xda-developers.com/showthread.php?t=2675804
Done replacing? Reboot and enjoy!
How to install: (Sorry for my bad english and for long time video)
http://youtu.be/WLxDDP19U0E (I'm uploading the video so, maybe you can't open it now, just later.) 03/31/2014 4:21AM
Work to I9505 ?
Sent from my GT-I9505 using XDA Premium 4 mobile app
Any screenshoot?
walid54 said:
Work to I9505 ?
Sent from my GT-I9505 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I just have i9500, I think yes. Could you try test it for me?
does not work on i9505
Mr.Bola said:
Any screenshoot?
Click to expand...
Click to collapse
Here is the video, sorry my phone was on portuguese (because I'm brazilian).
https://www.youtube.com/watch?v=P4eAEP1n0IU
the links are disabled
sahem said:
the links are disabled
Click to expand...
Click to collapse
I'll be uploading it again to 4shared
Nice Bro :good: Update the link please they are dead...
new links, they will not last long so please help me. Publish an mirror.
Which apps are included in the file?
Sent from my GT-I9500 using Tapatalk
Error
jgfernog said:
Get the SystemUI(notification bar) and the s5 apps:
Download the folder and copy the apps on the system folder to their respectives folders to /system with Root Explorer, don't forget to change permissions to "rw-r--r--".
The installnormally folder you know, just install as a normal apk.
To get the Notification Panel Tiles like the s5, you just need to edit your build.prop like on this thread: http://forum.xda-developers.com/showthread.php?t=2675804
Done? Just Reboot your s4 and enjoy
Some S4's ROM have a different SystemUI.apk that don't let you have the s5 notification panel, if you have this issue download our systemUI.apk, replace and it will work.
DOWNLOADS:
S5-zip: http://www.4shared.com/rar/uvrTcI-Ace/S5LLi9500_Dont_Flash.html <<------Will expire fast, publish a mirror to help me, plz!
SystemUI.apk(working): https://mega.co.nz/#!gUV0CSYR!S8OIurLL23m9jOB45xNnshHQQ6DctQ4iqflbB_0DiwM
Please, publish a mirror because my 4shared has only 3gb daily traffic, and it will expire again in minutes. I'll be uploading to Mega too.
please give me a +1 or a thanks
Click to expand...
Click to collapse
unfortunately System ui has stopped...........this comes as an error when i paste system ui in priv app
S health
Watch on
Calculator
S voice
S planner
S Note
S baro
New Accuweather widget
My files
Messages
Camera(just icon)*
S Translator(Is almost the same, so I didn't change)
Voice recorder(just icon)*
Gallery*
S Browser*
Downloads*
MusicPlayer*
*these apps are s4 orig apps. They doesn't have a stable port and I'm working on it. Some developers are trying to port it but without sucess. Now they just have new icons(from s5)
Sent from my GT-I9500 using xda app-developers app
Did you fix the permissions? rw-r--r--
Use root explorer.
Sent from my GT-I9500 using xda app-developers app
Which one do I have to download for the icons?
Sent from my GT-I9505 using XDA Premium 4 mobile app
The first link(4shared)
Sent from my GT-I9500 using xda app-developers app
New work with new files, new link and a tutorial video(YouTube)
It Works.......
Working on GT i9500..
What about 9505
Gesendet von meinem GT-I9505 mit Tapatalk
dack23 said:
What about 9505
Gesendet von meinem GT-I9505 mit Tapatalk
Click to expand...
Click to collapse
I don't know, I just have i9500. It should work. Try it and post here if works. Backup first!

Useful root apps...?

Now that we have root on our phones, I am searching for typical root apps. Maybe you guys can post them here if you already found some.
• YouTube background play/adblock?
• Statusbar tint (stock android style)?
• System wide adblock?
Other useful apps?
For my own findings, seems like Chainfires Recently works good on our phones.
Gesendet von meinem SM-G955F mit Tapatalk
xPr0metheus said:
Now that we have root on our phones, I am searching for typical root apps. Maybe you guys can post them here if you already found some.
• YouTube background play/adblock?
• Statusbar tint (stock android style)?
• System wide adblock?
Other useful apps?
For my own findings, seems like Chainfires Recently works good on our phones.
Gesendet von meinem SM-G955F mit Tapatalk
Click to expand...
Click to collapse
1. - Needs Xposed
2. - Needs Xposed
3. - Hosts Patch - Google for XDA moaab
JazonX said:
1. - Needs Xposed
2. - Needs Xposed
3. - Hosts Patch - Google for XDA moaab
Click to expand...
Click to collapse
1. There was a possibility with lucky patcher, but I cannot make it work.
2. Already feared you say that...
3. Thanks I will try that.
Gesendet von meinem SM-G955F mit Tapatalk
xPr0metheus said:
1. There was a possibility with lucky patcher, but I cannot make it work.
Click to expand...
Click to collapse
What was it?
Let me give it a try...
JazonX said:
What was it?
Let me give it a try...
Click to expand...
Click to collapse
https://android.gadgethacks.com/how...und-playback-for-free-android-nougat-0175606/
careful with busybox. Normal busybox app doesn't install and screwed my system UI, I am using the inbuild busybox from magisk now but not sure how good this is... (or if it works correctly)
Gesendet von meinem SM-G955F mit Tapatalk
Off the top of my head...in order of usefulness:
Tasker
LMT
Secure Settings
Titanium Backup
Synapse
ES File Explorer
Viper 4 Android
Terminal Emulator
CF.Lumen
Catlog

Categories

Resources