[Tutorial][VIDEO] Add/integrate apps into Settings app! - Android

Hello!
I wanted to make this little tutorial since many people wounder how to add certain apps to settings app
Things you will need
Apktool: http://forum.xda-developers.com/showthread.php?t=1755243
Notepad++: http://notepad-plus-plus.org/download/v6.3.2.html
The procedure
Video tutorial http://www.youtube.com/watch?v=75ZzDs3seqw
1: Download and extract apktool into a folder
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
2: Extract Settings.apk and framework-res.apk from your ROM to the apktool folder
3: Open up cmd and go to the APKtool folder
4: Install the framework
5: Put the app you want to add in the apktool folder then decompile Settings and the app
6: Open the settings folder and navigate to /res/values and open Strings.xml with notepad++
7: Add the name of the app furthest down
8: Navigate to /res/xml and open settings_headers.xml
9: Add this
Code:
<header android:icon="@drawable/..." android:title="@string/...">
<intent android:targetPackage="..." android:action="android.intent.action.MAIN" android:targetClass="..." />
</header>
10: navigate to the decompile app you want to add and open androidmanifest.xml
11: Copy the name at the top
12: Then paste here
13: Hold on your screen and select shortcuts
14: Choose activities
15: Scrool to the app and then press it
16: Enter what you found there here
18: Choose a name for the icon you will be using
19: Go to the app you will be adding and navigate to /res/drawable-****
20: Copy the icon to Settings/res/drawable-**** and rename it to what you put in the XML file
21: And now lets build it
22: When the building is done navigate to Settings/dist/ adn there is you new Settings app
I will add a zip in the attachments, just put the Settings app in /system/app/ folder in the zip then move it to your phone and flash it

Thanks alot.

Apps/Setting Tutorial
Excellent work RomWiz
Found this to be a very helpful tutorial - cheers for the info
TheCrazyClub - Xperia Arc S

Nice!

Its great to have people like you sharing skills in a simple way. I think some people make it overtly complicated to keep some mystique about such things,or they are useless at communication skills
Sent by backwards engineered alien technology.....

Video is up

One thing I want to know is how do I remove the app icon from my drawer, I don't want it hidden by means of a launcher options, I want it completely removed from the drawer, now I found a tutorial on how to do it and I successfully removed DSPManager's icon, however, I came across an error when I tried to remove the icon of Superuser, apktool gives me error during repacking proccess. Can anyone help me?

annson08 said:
One thing I want to know is how do I remove the app icon from my drawer, I don't want it hidden by means of a launcher options, I want it completely removed from the drawer, now I found a tutorial on how to do it and I successfully removed DSPManager's icon, however, I came across an error when I tried to remove the icon of Superuser, apktool gives me error during repacking proccess. Can anyone help me?
Click to expand...
Click to collapse
Post the error.
Skickat från min GT-P1000 via Tapatalk 2

RomWiz said:
Post the error.
Skickat från min GT-P1000 via Tapatalk 2
Click to expand...
Click to collapse
Here sir.

annson08 said:
Here sir.
Click to expand...
Click to collapse
There is a error in layout folder
Redo it and try again, if it wont work just send me the apk.
Skickat från min GT-P1000 via Tapatalk 2

RomWiz said:
There is a error in layout folder
Redo it and try again, if it wont work just send me the apk.
Skickat från min GT-P1000 via Tapatalk 2
Click to expand...
Click to collapse
It really doesn't work, I even trien to decompile it then recompiling it without changing anything, still the same.
Here's the file, thanks.

annson08 said:
It really doesn't work, I even trien to decompile it then recompiling it without changing anything, still the same.
Here's the file, thanks.
Click to expand...
Click to collapse
Will send you the apk when its fixed.
Edit: Check PM
Skickat från min GT-P1000 via Tapatalk 2

great tutorial..
helped me a lot.
is it possible to an applications activity to checkbox...

Added a new flasher, you should see the Settings app after flashing now.

Get value for setting
Hello! Thank you for the tutorial. Is there any way to access the setting from another application? For example, if I added something with a key "my_new_pref", could I get it's value anywhere outside of Settings.apk?

tnx

Related

transparent notification menu

Hello yo'all
I've searched many times to make my notification pull-down menu transparent, and I've finally managed to get it work. I know that there are lots of themes that do so, but I've choosen to modify the files myself. And I know that there are already tutorials, but I couldn't find one that works with CyanogenMod 7. So here is how I did it (and TBH, it is bloody easy).
screen cap: first image is without the notification drawer, the second is the notification drawer halfway the screen and the third one is the notification drawer totally expanded.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Note that I assume you already know the basics on how to work with adb.
Two things most be done to get the background of the notification menu transparent:
1. You must make the background file transparent
2. If necessarily, you must adapt StatusBarService.smali
PART 1: MAKE THE RIGHT FILE TRANSPARENT
Step 1: get SystemUI.apk on your computer
adb pull system/app/SystemUI.apk
Click to expand...
Click to collapse
Step 2: modify/replace shade_bg.png
Open SystemUI.apk in winzip, winrar or 7zip or wathever. WARNING: DO NOT EXTRACT THE APK!
browse to res\drawable-mdpi and look for "shade-bg.png". Copy it manualy out of the apk.
Edit the image with photoshop or gimp or wathever to make it transparent. Save you transparent file as shade-bg.png
Take your new image and put in manualy in the res\drawable-mdpi of the apk, so that it will replace the old one. When asked, choose for "no compression" (like store).
Step 3: put SystemUI.apk back on your phone
Reboot into recovery
go to "mounts an storages"
select "mount /system"
you can now push your new SystemUI.apk to your phone. I always make a backup, for in case I cause a bootloop or something:
adb shell
cd system/app
mv SystemUI.apk SystemUI.bak
exit
adb push SystemUI.apk system/app
adb reboot
Click to expand...
Click to collapse
Your phone should reboot now, and normally you should have your transparent lockscreen. If that isn't the case, you have to adjust StatusBarService.smali
PART TWO: ADJUSTING StatusBarService.smali
Step 1: get SystemUI.apk and framework-res.apk on your computer
adb pull system/framework/framework-res.apk
Click to expand...
Click to collapse
So now framework-res.apk and SystemUI.apk (with the transparent image) are in the same directory.
Step 2: decompile systemUI.apk
Download apktool from the attachment and extract it in the same folder as where framework-res and SystemUI are located.
open the command line and browse to that same directory
install your framework by typing:
apktool if framework-res.apk
Click to expand...
Click to collapse
Decompile SystemUI.apk by typing:
apktool decode SystemUI.apk
Click to expand...
Click to collapse
You will notice that you now have a folder called "SystemUI".
browse to SystemUI/smali/com/android/systemui/statusbar and open StatusBarService.smali in, for example, notepad++.
Search for the line
invoke-direct/range {v0 .. v5}, Landroid/view/WindowManager$LayoutParams;-><init>(IIIII)V
Click to expand...
Click to collapse
Right above that line you can read
const/4 v5, 0x2
Click to expand...
Click to collapse
That should be changed to
const/4 v5, -0x3
Click to expand...
Click to collapse
Save the file.
go back to the folder where you have apktool etc. Rename SystemUI.apk to SystemUI-original.apk.
Open the command line and type
apktool b -f SystemUI SystemUI.apk
Click to expand...
Click to collapse
You will now have your SystemUI.apk
Step 3: put SystemUI.apk back on your phone
Reboot into recovery
go to "mounts an storages"
select "mount /system"
you can now push your new SystemUI.apk to your phone. I always make a backup, for in case I cause a bootloop or something:
adb shell
cd system/app
mv SystemUI.apk SystemUI.bak
exit
adb push SystemUI.apk system/app
adb reboot
Click to expand...
Click to collapse
That's all. Hope I can make someone happy with this
Cool Good job
What is the transparent part? Dont see anything in the screenshot :$ Maybe im blind?
Sent from my HTC Wildfire using XDA App
tobitronics said:
What is the transparent part? Dont see anything in the screenshot :$ Maybe im blind?
Sent from my HTC Wildfire using XDA App
Click to expand...
Click to collapse
What you see is the general settings menu, with the notification menu on top of it. But i myself was doubting if it was clear I will add more screenshots tomorrow!
Erwin
EDIT: better screen caps in the original post!

[GUIDE] Re-Sizing .9.PNGs using Draw9Patch and xUltimate 9PatchCompiler

Hello Guys,
I was just getting bored so decided to share some of my knowledge regarding compiling and editing .9.PNGs using draw9patch tool from Android SDK and xUltimate 9PatchCompiler. This is based on what I learnt when I created my Ice Cream Sandwich Theme.. This is not for N00BS. It's just for people who are willing to learn new things.. There are easy methods to do this but I like this one.
I am not responsible for any damages caused due to following this guide.
WHAT YOU NEED -
Click to expand...
Click to collapse
1. The Android SDK ( It contains Draw9Patch Tool ) (requires JDK for installation)
2. xUltimate 9PatchCompiler
3. Photoshop/GIMP (For Resize)
4. APK Manager (For Decompiling APKs)
5. Common Sense
6. Lots of Patience and some experience in de-compiling APKs
HOW TO -
Click to expand...
Click to collapse
1. De-compile the APK whose .9.PNG you want to re-size using APK Manager (you need to decompile as you need Raw APK for resize otherwise it will look weird). Browse to that decompiled .9.PNG. You will notice Black LINES/DOTS are in border of that .9.PNG (see the example Pic Below)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
2. Now carefully observe these lines and remember how it looks. You need to remember the pattern on how these lines are drawn. Every Line/Dot is important and if you fail to realize you will end up with an error during last few steps.
3. Suppose you need to re-size the APK to a x b px resolution then open up Photoshop/GIMP or any editor and re-size the image to a+2 x b+2 px resolution.
4. You will notice some Lines/Dots will disappear. It's all fine.
5. Now browse to directory where you have installed Android SDK and go to TOOLS folder in it and fire up the file named draw9patch, when you are done it will open like image below.
6. Now go to File and click Open 9Patch and then open the .9.PNG you just resized to a+2 x b+2 px , it will look something like
7. Now construct the missing lines on basis on the pattern you memorized before re-sizing image. Be careful, and draw cautiously. To draw you just need to drag mouse while left-clicking. You can delete lines by pressing shift button and and left clicking and dragging.
8. When done, go to file again and save the image.
9. Go to directory where you image was there and copy it.
10. Navigate to directory where you have extracted 9Patch Compiler ZIP and paste the .9.PNG to GO-INSIDE/res/drawable-mdpi.
11. Go back to main folder and click xUltimate-COMPILER this will generate a folder done in same directory if you have drawn lines properly.
12. Go to /done/GO-INSIDE/res/drawable-mdpi and you will find there is your .9.PNG compiled with no black Lines/Dots.
YOUR 9.PNG is ready for use.
reserved for something i forgot..
a good video for the 9.png is found here:
http://www.youtube.com/watch?v=IfrXE2R2nqM&feature=related
it´s a bit long with a lot of text, but it is worth to view and to get a good start with this guide.
A better example would be one a picture with a letter or a pattern in it, a uni color png is not very good for a graphical explanation for what the black lines are good for and what the effect will be.
No offense bro, just a tick to improve this topic.
cheers
qaysed
As much as I appreciate your work, but there's already a more detailed tutorial available here:
[TUTO] Create your 9.png !
you have done a good work friend but there are optimizer software's better and makes easy just suggestion
venkat kamesh said:
you have done a good work friend but there are optimizer software's better and makes easy just suggestion
Click to expand...
Click to collapse
Yeah, I know.. Just in case somebody wanted to learn I made this coz I had to struggle a lot to learn this coz there werren't good tutorials..

Problems with Compilation of Framework-res.apk

Hey i am playing around with decompiling the framework and so i made some changes but i couldn't compile it then.
So i tried decompiling an app and then without making any changes compiling it but the command propt gives me these errors:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Click to expand...
Click to collapse
try this:
http://apkmultitool.com/node/2
Update your apkmanager. Btw, isnt this supposed to be in Q&A?
apk multitool doesnt work for me it always says that i should choose a project but i tried so much things but it says that everytime! ):
could you give me short instructions??
Sent from my GT-I9001 using XDA
apk manager 5.02
EternalFame said:
apk multitool doesnt work for me it always says that i should choose a project but i tried so much things but it says that everytime! ):
could you give me short instructions??
Sent from my GT-I9001 using XDA
Click to expand...
Click to collapse
- place the apk in /multi-tool/place-apk-here-for-modding/
- run Script.bat in /multi-tool
- type 22
- select apk by number
- type 9 to decompile
- make changes in the folder of your apk in /multi-tool/projects/
- type 11 to compile
- type "y" (yes) for first question and "n" for second question
- go into /multi-tool/place-apk-here-for-modding/
- open your new unsingedBLABLA.apk with winrar or something else
- delete "META-INF" and "AndroidManifest.xml"
add these files from the original ...
- rename like you want and have fun.
- if you getting errors, your modifying was wrong. you can see the error in /multi-tool/log.txt
- if you want to make more changes again in /multi-tool/projects/
you have to delete "build"-folder before recompiling...
this should work for every normal apk..
sure there are some other apk's like lidroid-res.apk. then it is not so easy, you will need another how-to... but if it is a difficult apk like this, you will get a error already while decompiling...
Moved to Android Q&A
texten said:
- place the apk in /multi-tool/place-apk-here-for-modding/
- run Script.bat in /multi-tool
- type 22
- select apk by number
- type 9 to decompile
- make changes in the folder of your apk in /multi-tool/projects/
- type 11 to compile
- type "y" (yes) for first question and "n" for second question
- go into /multi-tool/place-apk-here-for-modding/
- open your new unsingedBLABLA.apk with winrar or something else
- delete "META-INF" and "AndroidManifest.xml"
add these files from the original ...
- rename like you want and have fun.
- if you getting errors, your modifying was wrong. you can see the error in /multi-tool/log.txt
- if you want to make more changes again in /multi-tool/projects/
you have to delete "build"-folder before recompiling...
this should work for every normal apk..
sure there are some other apk's like lidroid-res.apk. then it is not so easy, you will need another how-to... but if it is a difficult apk like this, you will get a error already while decompiling...
Click to expand...
Click to collapse
with multitool 5.0.2?
what should i use to decomplie android.policy.jar?
Sent from my GT-I9001 using XDA
EternalFame said:
with multitool 5.0.2?
what should i use to decomplie android.policy.jar?
Sent from my GT-I9001 using XDA
Click to expand...
Click to collapse
look for backsmali and smali for decompile jar files.
there are many solutions.
Thank you guys it worked
I've made myself an extended powermenu for 2.3.3 (XXKG3)

[GUIDE][ICS]Use PNG Images as Notification Background for Stock / Stock Based ROM

Now here's tutorial on how to put any PNG image as notification pulldown background..
Here I'm using lidroid's modified SystemUI, should work on other stock based SystemUI
First you need to decompile your SystemUI.apk
Open res/values/drawable.xml with any good xml editor (here I'm using NP++)
Delete this line:
Code:
<item type="drawable" name="notification_tracking_bg">#xxxxxxxx</item>
the #xxxxxxxx value maybe vary in each ROM, just delete the whole line )
Save
Prepare your desired .png file, can be opaque or transparent, and can be in any size/dimension (the system will resize it to match the screen)
Rename it to notification_tracking_bg.png and put it in res/drawable-hdpi
Recompile your SystemUI.apk, push to your phone and you are.......
Done !!
The result will be looked like these :
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Remember to
ALWAYS MAKE BACKUP !!
before doing anything above..
I don't responsible of any negative things like bootloop, bricked device, burned SD card, you late to go to school, or the third world war caused by the guide above..
You have been warned !!
Click to expand...
Click to collapse
Good luck..
iiandskater said:
Now here's tutorial on how to put any PNG image as notification pulldown background..
Here I'm using lidroid's modified SystemUI, should work on other stock based SystemUI
First you need to decompile your SystemUI.apk
Open res/values/drawable.xml with any good xml editor (here I'm using NP++)
Delete this line:
Code:
<item type="drawable" name="notification_tracking_bg">#xxxxxxxx</item>
the #xxxxxxxx value maybe vary in each ROM, just delete the whole line )
Save
Prepare your desired .png file, can be opaque or transparent, and can be in any size/dimension (the system will resize it to match the screen)
Rename it to notification_tracking_bg.png and put it in res/drawable-hdpi
Recompile your SystemUI.apk, push to your phone and you are.......
Done !!
The result will be looked like these :
Good luck..
Click to expand...
Click to collapse
when i finished modifying and pushed the new systemui.apk to my phone, i lost my statusbar. which step i was wrong in ? i'm using JJ rom. Need your help to do this guide course im' very like this mod.
Jellybread v2 ROM systemUI.apk doesnt need to be modified, only change the background png, but thanks anyway
Oohhlala said:
when i finished modifying and pushed the new systemui.apk to my phone, i lost my statusbar. which step i was wrong in ? i'm using JJ rom. Need your help to do this guide course im' very like this mod.
Click to expand...
Click to collapse
Did you just recompile and push? Or did you do something between those?
Ticklefish said:
Did you just recompile and push? Or did you do something between those?
Click to expand...
Click to collapse
recompile then using winrar to extract .arsc file and add it back to recompiled apk with " store" option, copied to sdcard and using rootexplorer to move to system/app, reboot and lost the statusbar
Oohhlala said:
recompile then using winrar to extract .arsc file and add it back to recompiled apk with " store" option, copied to sdcard and using rootexplorer to move to system/app, reboot and lost the statusbar
Click to expand...
Click to collapse
You need to make sure the new apk is signed. Easiest way of doing this is copy the META-INF folder from the original into the new one.
Android won't run unsigned apps, you see.
Ticklefish said:
You need to make sure the new apk is signed. Easiest way of doing this is copy the META-INF folder from the original into the new one.
Android won't run unsigned apps, you see.
Click to expand...
Click to collapse
use winrar to add META folder ? which option of " compression method " have to chose ? " store " is right ?
when i dit it again, after modified i tried to compile but i had got this error ? can you tell me what wrong with me ? thanks
I'm able to do everything right up to recompile I always come up with an error could somebody help
Sent from my LT18i using xda premium

[TIP] How to remove an app's icon from the app drawer of a launcher

This is useful if you're trying to create a shortcut in Settings for a certain app and don't want yet another app in the app drawer or you want something running in the background......
1. First off, go ahead and setup apktool in ubuntu
Link to apktool found http://forum.xda-developers.com/showthread.php?t=1755243 Follow the instructions in that thread
2. Create a folder on your desktop (for the purpose of this guide, name it "folder")
3. Move your apk to your newly created folder, called folder
4. Assuming you've followed the steps in the apktool thread and setup it up correctly, open up a terminal and type in the following commands
Code:
cd Desktop/folder
then
Code:
apktool d yourapp.apk
If you decompiled correctly, you will see something similar to this....MAKE SURE YOU LEAVE YOUR TERMINAL OPEN, DO NOT CLOSE IT OUT!!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
5. Now, navigate inside your app's decompiled folder and find the AndroidManifest.xml
6. Open the AndroidManifest.xml with any text editor
7. Find the highlighted line as pictured below....
8. Go ahead and remove that line from the AndroidManifest.xml and save/exit out of that
9. Press and hold Ctrl and H
10. Delete the file called "AndroidManifest.xml~"
11. Assuming you paid attention and didn't close out your terminal, go back to it and type in the following
Code:
apktool b yourapp
12. You should see something like this if you followed instructions correctly....
13. Now navigate inside your app's decompiled folder and you should find a folder called "dist". Inside of that, you should see your compiled apk with the change made and ready to be pushed to your device.
Here's a screenshot of a before and after
Just in case, who knows....
Mazda said:
Just in case, who knows....
Click to expand...
Click to collapse
Thanks for this helpful post!!! I needed something like this. Goomanager was getting on my nerves
I need help with deleting multiple icons from one single apk
I want to delete he camcorder and mirror on the evo 3d HTCCamera.apk
I followed your directions, but after I push apk and reboot it doesnt show up at all
mauricio.valladolid said:
I need help with deleting multiple icons from one single apk
I want to delete he camcorder and mirror on the evo 3d HTCCamera.apk
I followed your directions, but after I push apk and reboot it doesnt show up at all
Click to expand...
Click to collapse
For sense ROMs, you'll need to install the framework-res.apk and also the com.htc.resources.apk using apktool before you decompile/compile apks such as the HTCCamera.apk
Mazda said:
For sense ROMs, you'll need to install the framework-res.apk and also the com.htc.resources.apk using apktool before you decompile/compile apks such as the HTCCamera.apk
Click to expand...
Click to collapse
I have them installed, I already made changes to other apks, but its my first time trying to delete the icons and no luck
@Mazda
thx for this thread :good: It works even on windows but new apk needed a new sign (META-INF)
This was pretty helpful, thank you.
Thanks
app is not longer starting after boot completed
Hi,
thank you for the nice tutorial! The problem I have right now with an app where I removed “….category.LAUNCHER” is that the app is not starting at boot completed anymore. When I first install the unmodded app, and thereafter I install my created app without icon, the app is starting after boot completed. Do you know why the modded app is not starting after boot completed?
stan210 said:
Hi,
thank you for the nice tutorial! The problem I have right now with an app where I removed “….category.LAUNCHER” is that the app is not starting at boot completed anymore. When I first install the unmodded app, and thereafter I install my created app without icon, the app is starting after boot completed. Do you know why the modded app is not starting after boot completed?
Click to expand...
Click to collapse
If you're rooted,
Use Leedroid Tweaks to block apps in drawer
Sent from above using Xparent Tapatalk Blue

Categories

Resources