Ok... can somebody tell me how to upload framework-res.apk and systemui.apk from stock browser to UOT kitchen?
I get files not found after clicking select button.
Or is there any UOT kitchen app? That would be great!
Sent from my GT-I9000 using Tapatalk
How to use the kitchen
1. Go to the Kitchen page http://uot.dakra.lt/kitchen/
2. Browse through the available mods and choose what you want (don't forget to press Generate preview if there is such a button)
3. Go to the file upload section and upload the required files, or choose the ROM you use from the kitchen's list (most roms in the list are for HTC Desire)
Files you need to upload:
Froyo rom: framework-res.apk
Gingerbread rom: framework-res.apk and SystemUI.apk
Gingerbread with sense rom: framework-res.apk, SystemUI.apk and com.htc.resources.apk
Cyanogenmod7 rom: Cyanbread.apk or Androidian.apk or any theme for ThemeChooser (rename as you like it to apear in theme menu)
NOTE 1: if you’re uploading theme apk then do not upload any other files; you’re just wasting traffic, because the kitchen will ignore additional files
NOTE 2: Font packs and boot animation do not require files to be uploaded. If you choose only those mods then you get a download without a queue.
4. Go to the summary section. All chosen mods must have a green background. If there is a mod in red background it means you didn’t finish it.
Press Submit work to kitchen
5. Remember the UOT file name (your order number).
6. Go to the Pickup page http://uot.dakra.lt/pickup/ and wait for your file to appear (it can take from 5min to 1hr or more)
7. Download UOT zip into SD card of your phone
8. Reboot into recovery
9. Wipe cache and dalvik-cache (just in case). Do not wipe data / factory reset.
10. Flash UOT zip
11. Reboot phone
thanks but not answering my question.
i want to upload systemui.apk and framework-res.apk from stock browser on my XXJVU Valuepack ROM GT-i9000.
there is no problem in using computer but i want to use my galaxy s. and i cant upload or even select files in stock browser.
hope u understand. anyway thanks for replying
I think it's impossible...
Why don't you use computer?
Sorry for hijacking this topic but I would like to ask if somebody successfully changed lock screen via UOT kitchen on Galaxy S? Thanks.
Hello Everyone
Here Is The Tutorial On How to Create Ur Own Boot Animation for U r Mobile...
Requirements :
1) Windows OS
2) BootAnimation Factory : Go here http://forum.xda-developers.com/showthread.php?t=1678540
3) Image Resizer (To change the resolution of the images) : Go here https://imageresizer.codeplex.com/
4) Image Editing Software ( Your wish)
5) 7Zip
6) Notepad++
What Is BootAnimation??
The Android boot animation is contained within a an uncompressed zip file called bootanimation.zip that can be found in the media folder of the system partition i.e. /system/media on the internal memory of the device. This single file contains all the information required to play the boot animation, and is loaded automatically when the device boots.
What a Bootanimation.zip Contains??
. If you extract the contents of the bootanimation.zip file to your computer, you will see:
1) A desc.txt file
2) A part0 folder (Contains PNG images named in incremental numbers)
3) More part1, part2 etc. folders (May or may not be present)
As you can see, bootanimation.zip merely contains one text file and one or more folders with PNG images. The animation is played simply by displaying the images in a sequence, and the text file defines how they are to be played. In essence, first the PNG files in the part0 folder are displayed one after the other and afterwards, those in the part1 file – if it exists – are displayed, again one after the other, and so on. All of this is defined in the desc.txt file.hence desc.txt file is vital file for creating a bootanimation.
Now Will See What Each Files And Folder Does:laugh:
Imp : I Am Taking The Example Of My Samsung Galaxy Grand Duos - GT-I9082 whose Resolution is 480X800. This Guide is applicable to all Andriod Devices Difference u have to make is the RESOLUTION of u r Device.
The folders
{
"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"
}
These contain PNG images named in numbers, starting from something like 0000.jpg or 00001.jpg and proceeding with increments of 1. There has to be at least one folder, and there is no known upper limit to the number of folders.
The desc.txt file
This file defines how the images in the folder(s) are displayed during the boot animation, in the following format:
Width Height Frame-rate
p Loop Pause Folder1
p Loop Pause Folder2
An example of a desc.txt file is:
480 800 30
p 1 0 part0
p 0 0 part1
As you can see, in the first line, 480 and 800 define the width and height of the boot animation in pixels for this example. This must be the same as the screen resolution of your device for the boot animation to properly play in full screen. 30 is the frame rate in fps (frames per second) i.e. number of images to display per second.
The second and third lines have a same format, start with p, which stands for a part of the animation and end in part0 or part1, which denotes the folder in which the images for that part are present.
The number after ‘p’ defines how many times this part will loop (repeat playback) before switching to the next part (if present). Specifying 0 would make the part loop indefinitely till the phone has fully booted.
The next number is for the pause, and is expressed in the number of frames, which can be translated into time by dividing it by the frame rate. A pause of 15 for example, would mean pausing for the time it takes 15 frames to play and since the frame rate is 30 frames per second, 15 frames would take half a second.
Translating all of this in case of the above example, the boot animation will play at a resolution of 480 by 800 pixels, at a frame rate of 30 fps, starting with the contents of part0 folder and after playing them in one loop, switching to contents of part1 folder and playing them continuously till the device fully boots.
Steps To Create Ur Own Bootanimations
1) Download All The Necessary Tools U need To For This.
2) Install The Necessary Softwares.
3) Go through the entire Inside the bootanimation.zip File Which I will attach at the end of this guide.
4) Plan how your boot animation will run. This includes how many distinct parts it will have, how long will each part play and what will be the sequence of the parts.
5) Make a new folder at any convenient location on your computer, and name it bootanimation.
6) In this folder, create a folder for each part of your boot animation, named part0, part1 and so on.
7) In the image editor of your choice (Adobe Photoshop,GIMP), make all the image files for each part of your boot animation with the proper dimensions equal to your phone’s screen resolution, and save them in the respective folder for each part, in PNG format. Up to 32 bit PNGs are supported.
Note: In case you are converting an existing boot animation to fit your phone’s screen, simply extract the images from it and resize each of them to your device’s screen resolution.
8) Make sure the images are named in numerical format and in proper sequence, i.e. the images in the first part should start with let’s say 00000.jpg and go on till 00075.jpg, and the images in the second part should then start off with 00076.jpg and go on till – for instance – 00123.jpg.
9) Now open the Boot Animation Factory Tool.
10) Click on “Create a New Boot Animation” Button.
11) There will be 2 options Asking for Source (1)From folder and (2) From GIF. Since In This Guide I have used Folder Method, Select Folder and click OK
12) Click On Choose folder and Select The bootanimation folder were u had stored all the necessary folders and images.
13) At the Right Hand Side You Can see the tab were the Resolution of The pics will be displayed..You can edit it and change the resolution and FPS too. Let the setting be “Don’t Repeat”
14) click on add loop button.
15) Select The Folder Ex: part0 . For this folder Set THE LOOP to 1 and TIME DELAY to 0 ( You Can Put your Custom delay if u wish) and Click ADD button.
16) Repeat the Step 15 but here Select the next part In Folder Ex : part1
17) If U have more part folders select the respective part and repeat the Step 15.
18) For last folder ( Ex : If part1 is last folder ) the SET THE LOOP to 0 . So that it Repeats
19) You can PREVIEW your bootanimation before saving by clicking on PREVIEW Button.
20) Click Save Boot Animation Button and name it has “bootanimation”
You Have Done A Bootanimation Successfully..:laugh::laugh:
How To Put It In Your Device?
File browser method (Rooted devices only):
1) Connect your phone to your computer via USB and mount the storage card for file transfer.
2) Copy the bootanimation.zip file that you want to install, to your SD card.
3) Unmount USB storage and launch the file browser of your choice on your phone.
4) Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
5) Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
6) Browse to /system/media and paste the bootanimation.zip file there.
7) If you are using Root Explorer App, you will have to Touch ‘Mount R/W’. This will make your system partition writeable.
8) Check if the permissions are rw-r—r—. If not, change them to that.
9) Reboot And Enjoy Your New Bootanimation Done by You:laugh:
Credits :
despotovski01 for his AWESOME BOOTANIMATION FACTORY....
FOR SAMPLE SEE ATTACHEMENTS
:laugh:IF IT HELPED YOU KINDLY PRESS THANKS BUTTON SO THAT I WILL KNOW HOW MANY PEOPLE ARE BENEFITED FROM IT:laugh:
Excellent tutorial...well described... keep up the good work
doctor_droid said:
Excellent tutorial...well described... keep up the good work
Click to expand...
Click to collapse
Thanks doctor_droid for your inspirational reply
Hello Everyone
Here Is The Tutorial On How to Create Ur Own Boot Animation for U r Mobile...
Requirements :
1) Windows OS
2) BootAnimation Factory : Go here http://forum.xda-developers.com/showthread.php?t=1678540
3) Image Resizer (To change the resolution of the images) : Go here https://imageresizer.codeplex.com/
4) Image Editing Software ( Your wish)
5) 7Zip
6) Notepad++
What Is BootAnimation??
The Android boot animation is contained within a an uncompressed zip file called bootanimation.zip that can be found in the media folder of the system partition i.e. /system/media on the internal memory of the device. This single file contains all the information required to play the boot animation, and is loaded automatically when the device boots.
What a Bootanimation.zip Contains??
. If you extract the contents of the bootanimation.zip file to your computer, you will see:
1)A desc.txt file
2)A part0 folder (Contains PNG images named in incremental numbers)
3)More part1, part2 etc. folders (May or may not be present)
As you can see, bootanimation.zip merely contains one text file and one or more folders with PNG images. The animation is played simply by displaying the images in a sequence, and the text file defines how they are to be played. In essence, first the PNG files in the part0 folder are displayed one after the other and afterwards, those in the part1 file – if it exists – are displayed, again one after the other, and so on. All of this is defined in the desc.txt file.hence desc.txt file is vital file for creating a bootanimation.
Now Will See What Each Files And Folder Does:laugh:
Imp : I Am Taking The Example Of My Samsung Galaxy Grand Duos - GT-I9082 whose Resolution is 480X800. This Guide is applicable to all Andriod Devices Difference u have to make is the RESOLUTION of u r Device.
The folders
These contain PNG images named in numbers, starting from something like 0000.jpg or 00001.jpg and proceeding with increments of 1. There has to be at least one folder, and there is no known upper limit to the number of folders.
The desc.txt file
This file defines how the images in the folder(s) are displayed during the boot animation, in the following format:
Width Height Frame-rate
p Loop Pause Folder1
p Loop Pause Folder2
An example of a desc.txt file is:
480 800 30
p 1 0 part0
p 0 0 part1
As you can see, in the first line, 480 and 800 define the width and height of the boot animation in pixels for this example. This must be the same as the screen resolution of your device for the boot animation to properly play in full screen. 30 is the frame rate in fps (frames per second) i.e. number of images to display per second.
The second and third lines have a same format, start with p, which stands for a part of the animation and end in part0 or part1, which denotes the folder in which the images for that part are present.
The number after ‘p’ defines how many times this part will loop (repeat playback) before switching to the next part (if present). Specifying 0 would make the part loop indefinitely till the phone has fully booted.
The next number is for the pause, and is expressed in the number of frames, which can be translated into time by dividing it by the frame rate. A pause of 15 for example, would mean pausing for the time it takes 15 frames to play and since the frame rate is 30 frames per second, 15 frames would take half a second.
Translating all of this in case of the above example, the boot animation will play at a resolution of 480 by 800 pixels, at a frame rate of 30 fps, starting with the contents of part0 folder and after playing them in one loop, switching to contents of part1 folder and playing them continuously till the device fully boots.
Steps To Create Ur Own Bootanimations
1) Download All The Necessary Tools U need To For This.
2) Install The Necessary Softwares.
3) Go through the entire Inside the bootanimation.zip File Which I will attach at the end of this guide.
4) Plan how your boot animation will run. This includes how many distinct parts it will have, how long will each part play and what will be the sequence of the parts.
5) Make a new folder at any convenient location on your computer, and name it bootanimation.
6) In this folder, create a folder for each part of your boot animation, named part0, part1 and so on.
7) In the image editor of your choice (Adobe Photoshop,GIMP), make all the image files for each part of your boot animation with the proper dimensions equal to your phone’s screen resolution, and save them in the respective folder for each part, in PNG format. Up to 32 bit PNGs are supported.
Note: In case you are converting an existing boot animation to fit your phone’s screen, simply extract the images from it and resize each of them to your device’s screen resolution.
8) Make sure the images are named in numerical format and in proper sequence, i.e. the images in the first part should start with let’s say 00000.jpg and go on till 00075.jpg, and the images in the second part should then start off with 00076.jpg and go on till – for instance – 00123.jpg.
9) Now open the Boot Animation Factory Tool.
10) Click on “Create a New Boot Animation” Button.
11) There will be 2 options Asking for Source (1)From folder and (2) From GIF. Since In This Guide I have used Folder Method, Select Folder and click OK
12) Click On Choose folder and Select The bootanimation folder were u had stored all the necessary folders and images.
13) At the Right Hand Side You Can see the tab were the Resolution of The pics will be displayed..You can edit it and change the resolution and FPS too. Let the setting be “Don’t Repeat”
14) click on add loop button.
15) Select The Folder Ex: part0 . For this folder Set THE LOOP to 1 and TIME DELAY to 0 ( You Can Put your Custom delay if u wish) and Click ADD button.
16) Repeat the Step 15 but here Select the next part In Folder Ex : part1
17) If U have more part folders select the respective part and repeat the Step 15.
18) For last folder ( Ex : If part1 is last folder ) the SET THE LOOP to 0 . So that it Repeats
19) You can PREVIEW your bootanimation before saving by clicking on PREVIEW Button.
20) Click Save Boot Animation Button and name it has “bootanimation”
You Have Done A Bootanimation Successfully..:laugh::laugh:
How To Put It In Your Device?
File browser method (Rooted devices only):
1) Connect your phone to your computer via USB and mount the storage card for file transfer.
2) Copy the bootanimation.zip file that you want to install, to your SD card.
3) Unmount USB storage and launch the file browser of your choice on your phone.
4) Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
5) Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
6) Browse to /system/media and paste the bootanimation.zip file there.
7) If you are using Root Explorer App, you will have to Touch ‘Mount R/W’. This will make your system partition writeable.
8) Check if the permissions are rw-r—r—. If not, change them to that.
9) Reboot And Enjoy Your New Bootanimation Done by You:laugh:
Credits :
despotovski01 for his AWESOME BOOTANIMATION FACTORY....
FOR SAMPLE SEE ATTACHEMENTS
:laugh:PLZ PRESS THANKS BUTTON IF U ALL LIKE MY WORK:laugh:
Click to expand...
Click to collapse
Hello , @jackeagle . I've followed ur guide and made a bootanimation successfully . But how to convert bootanimation.zip to bootsamsung.qmg and bootsamsungloop.qmg ? Please telp me
Sent from my GT-I9082 using xda app-developers app
Aeyan Ashraf said:
Hello , @jackeagle . I've followed ur guide and made a bootanimation successfully . But how to convert bootanimation.zip to bootsamsung.qmg and bootsamsungloop.qmg ? Please telp me
Sent from my GT-I9082 using xda app-developers app
Click to expand...
Click to collapse
Congrats on successfully making a bootanimation:victory: plz press thanks button if helped Regarding converting bootanimation.zip to .qmg files there is separate steps to do...
jackeagle said:
Congrats on successfully making a bootanimation:victory: plz press thanks button if helped Regarding converting bootanimation.zip to .qmg files there is separate steps to do...
Click to expand...
Click to collapse
Can you make a guide describing the seperate steps or can you PM me please ?
Sent from my GT-N7100 using XDA Premium 4 mobile app
Aeyan Ashraf said:
Can you make a guide describing the seperate steps or can you PM me please ?
Sent from my GT-N7100 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Here U Go for guide by me http://forum.xda-developers.com/showthread.php?p=52107807 :highfive::laugh::laugh:
jackeagle said:
Here U Go for guide by me http://forum.xda-developers.com/showthread.php?p=52107807 :highfive::laugh::laugh:
Click to expand...
Click to collapse
Thanks bro ..... A ton thanks to u !!!!!!!!
Sent from my GT-I9082 using XDA Premium 4 mobile app
Aeyan Ashraf said:
Thanks bro ..... A ton thanks to u !!!!!!!!
Sent from my GT-I9082 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Welcome
Sent from my GT-I9082 using XDA Premium 4 mobile app
Hello jackeagle,
Good guide there.
I'm a GT-19082 user as well, but my Stock ROM does not contain any bootanimation.zip in System>media
Instead these are the files I get. (pic attached below)
could you please help me out in this?
Thanks.
saudkhan75 said:
Hello jackeagle,
Good guide there.
I'm a GT-19082 user as well, but my Stock ROM does not contain any bootanimation.zip in System>media
Instead these are the files I get. (pic attached below)
could you please help me out in this?
Thanks.
Click to expand...
Click to collapse
Hello Saudkhan75..!!
Stock ROM doesn't have bootanimation.zip. in Samsung stock ROM it will in .qmg format like bootsamsung.qmg and bootsamsungloop.qmg these both file will work has bootanimation.zip...
If u want to know how to convert boot animation.zip to .qmg go here http://forum.xda-developers.com/showthread.php?p=52107807
Press Thanks Button If Helped..
Sent from my GT-I9082 using XDA Premium 4 mobile app
jackeagle said:
Hello Saudkhan75..!!
Stock ROM doesn't have bootanimation.zip. in Samsung stock ROM it will in .qmg format like bootsamsung.qmg and bootsamsungloop.qmg these both file will work has bootanimation.zip...
If u want to know how to convert boot animation.zip to .qmg go here http://forum.xda-developers.com/showthread.php?p=52107807
Press Thanks Button If Helped..
Sent from my GT-I9082 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Hello!!
(I'm new to modding, so please don't mind if I say something wrong.)
I already got the bootsamsung.qmg and bootsamsungloop.qmg files in my Stock ROM.
My question is how will I convert them to part0 and part1 to edit?
also, is it important to for those files to be in .zip to run?
saudkhan75 said:
Hello!!
(I'm new to modding, so please don't mind if I say something wrong.)
I already got the bootsamsung.qmg and bootsamsungloop.qmg files in my Stock ROM.
My question is how will I convert them to part0 and part1 to edit?
also, is it important to for those files to be in .zip to run?
Click to expand...
Click to collapse
Actually There is no way to convert the .qmg or open the .qmg file to get part0 and part1 folders...even the software which makes the .qmg files can't open it Its kind of closed -source algorithm...
2) YES they are very important these folders contains the images which later combine to form an animation without those folder and command the zip is useless...READ the guide carefully if you wanna know more about these folders...
Always Feel FREE to ask any doubts you have...
jackeagle said:
Actually There is no way to convert the .qmg or open the .qmg file to get part0 and part1 folders...even the software which makes the .qmg files can't open it Its kind of closed -source algorithm...
2) YES they are very important these folders contains the images which later combine to form an animation without those folder and command the zip is useless...READ the guide carefully if you wanna know more about these folders...
Always Feel FREE to ask any doubts you have...
Click to expand...
Click to collapse
Thanks fpr the reply.
In your bootanimation.zip file I could see 2 folders and a txt document.
I got those .qmg files with me, now, how can I make a bootanimation.zip of them like you did?
saudkhan75 said:
Thanks fpr the reply.
In your bootanimation.zip file I could see 2 folders and a txt document.
I got those .qmg files with me, now, how can I make a bootanimation.zip of them like you did?
Click to expand...
Click to collapse
You need to do it on your own either u have to make animation images...Just search in google for animation tutorial videos using photoshop or u need a video using which you can get the frames from it so that u can get the images directly and use it in project... Read my guide carefully.
jackeagle said:
You need to do it on your own either u have to make animation images...Just search in google for animation tutorial videos using photoshop or u need a video using which you can get the frames from it so that u can get the images directly and use it in project... Read my guide carefully.
Click to expand...
Click to collapse
Okay, Got you! Thanks for your help.
Sent from my GT-I9082 using XDA Free mobile app
saudkhan75 said:
Okay, Got you! Thanks for your help.
Sent from my GT-I9082 using XDA Free mobile app
Click to expand...
Click to collapse
If u need any help u can ask me..
Press thanks button instead of saying
Sent from my GT-I9082 using XDA Premium 4 mobile app
Hi guys, i really love the 3Min battery Mod from @gharrington Tyvm bro. There is a lot of threads of how to make it yourself but i think most of them are not too detailed and cover everything. So since i use these instructions my self i thought of sharing them in case someone may benefit from it.
Preparation: :
1. Download the latest BatchApkTool .
2. Tools needed and how to extract System.img.
3. Recommended tools needed: Notepad ++, 7zip or Winrar
Instructions::
A.
1. Download the latest BatchApkTool unzip it and move the need files to their designated folders explained in the next step.
2. We need to get SystemUI folder and framework folder(Inside it Framework_res.apk and arm64 folder is needed) either from a System.img in that case use the guide in the preparation section on how to extract it or import them from your device using any file manager with root.
3. Put SystemUI folder in _priv-app folder, and framework folder in to _framework folder.
B.
Open BatchApkTool select your language make sure that all the settings match your rom, enter the following numbers for changes:
83. Smali(By default it's the latest "2.2 latest when writing this" so just check it in case)
84. Api level: ------------- select 23( for Marshmallow)
85. Apktool(By default it's the latest stable version "it was 2.2.0 when writing this" just make sure it is)
C.
1. Under Smali section select '01 Deodex all apks and jars'(In case your rom isn't deodexed yet if it is skip this step). If your rom is stock then your SystemUi.apk needs to be deodexed for this to work. (For Nexus 6p select Arm64 when asked)
2.Under Smali section select '02' to move the deodexed files to _Input_Apk folder.
*Make a backup of META-INF folder and AndroidManifest.xml after extracting them from the deodexed SystemUI.apk file using Winrar or 7zip.
3.Under ApkTool section select '1' to decompile Apks.
4. After that go to _Input_Apk folder and open the decompiled SystemUI folder, navigate to res/layout/system_icons.xml and open with notepad ++
5. Find:
Code:
android:layout_width="9.5dip"
and
Code:
android:layout_height="14.5dip"
Note: These values may not be an exact match, doesn't matter
Change both values to
Code:
android:layout_width="0.0dip"
and
Code:
android:layout_height="0.0dip"
6. Hit enter and directly underneath that line add the following:
Code:
<com.android.systemui.statusbar.policy.MinitBattery android:layout_width="wrap_content" android:layout_height="wrap_content" />
7. Save your work and close notepad ++
8. You now need to navigate to smali/com/android/systemui/statusbar/policy folder
** Download the latest Modfiles package(3MinitBatterySettings, MinitBatteryResources, 3 Smali files) needed from here or main website.
9. Copy the 3 smali files(files that end with .smali) into that policy folder.
10. Time to recompile the SystemUI.apk. Under ApkTool section select '3 recompile apks' in Batchapktool.
11. Once recompiling of SystemUI.apk is complete go to it in _OUT_APK you will find it there, open it with 7zip or Winrar and Don't Extract.
12. Delete META-INF folder and AndroidManifest.xml from newly recompiled SystemUI.apk and replace them with the original backup we took in step C.2.
13. Download the 3MinitBattery_Template1.zip(will remove original SystemUi.apk and replace it) or 3Minit_Battery_Template2.zip(Will not remove the original SystemUi.apk and will leave it for you to remove it manually in case you want to back it up).
14. Use one of the template zips then open it don't extract it just open it with Winrar or 7zip and drop 3MinitBatterySettings, MinitBatteryResources that we got in step C.8 to their respective folders in the zip file. Drop the newly recompiled SystemUI.apk to SystemUI folder if you choose template 1 and if you choose template 2 put it in priv-app folder.
P.s: If you choose template 2 after flashing it go to system/priv-app/SystemUI folder in your device and with any file manger with root delete SystemUi.apk after you back it up to where ever you choose then reboot the device.
15. After this make a backup of your rom and flash the zip.
16. To use 3minBattery app open it and choose your customization then reboot you should see the changes after that. Good luck! :good:
Credits go to:
- @gharrington for his Mod&Guide.
- bursoft for Batch ApkTool.
- @bdorr1105 for his Thread.
- https://androidmtk.com for the Guide&Tools.
Awesome tutorial.. I am looking to add it into a modified stock rom for a Samsung tablet that I have.. Do you know of any easy to follow tutorials for that? i am very new to this part of android..lol.. i am usually on the flashing end and now i am trying to help out for this tab because it has no custom roms until mine. Again, awesome tutorial.
glockman4519 said:
Awesome tutorial.. I am looking to add it into a modified stock rom for a Samsung tablet that I have.. Do you know of any easy to follow tutorials for that? i am very new to this part of android..lol.. i am usually on the flashing end and now i am trying to help out for this tab because it has no custom roms until mine. Again, awesome tutorial.
Click to expand...
Click to collapse
Ty much appreciated. It has been a while since I created this thread since then I have stopped using this mod because it's kind of a headache to do it for every update add to that since Google already enabled the battery percentage inside the battery there was no need any more for the mod. Anyway it's still great to be able to change from time to time. Regarding the tutorial I am sorry to say I haven't tried to create a custom ROM so I can't help you much with that but I am sure there are a lot of tutorials but will require some time to search. Good luck with your project.