Friday, 6 June 2014

CHANGING APP NAME AND ICON

Hey guys this ANONYMOUS India (Junior member)....
Here I GUIDE U TO CHANGE NAME and ICON of an ANDROID APP
This can be done by...
  1. APP
  2. DECOMPILER
APP:

Renaming a file and changing its icon is a child’s play on Windows and other such operating systems meant for a personal computer. However, have you ever thought about renaming and changing the icon of the applications installed on your Android? Might be fun, right?
Well, I thought about it one day and then started researching on how it can be done.  As of now, there doesn’t appear to be an app on the Play Store which can rename an installed app, not even for a rooted device. But then I came across a tool for Windows called APK Editor on XDA Forum.
Using APK Editor once can easily rename an Android application and change its default icon even for a non-rooted android phone. So let’s see how it’s done.

Rename and Change Android Apps Icon

Step 1: First of all, we will need the APK package of the app you want to rename and change the icon for. If you don’t have the APK with you, but the app is installed on your phone, you can easily compile its APK using the Astro file manager. We have already discussed how you canmake APK files of the installed apps while talking about transferring the installed apps from one device to another over Bluetooth.
Step 2: Download and extract APK Edit v0.4 to a folder in your computer. As APK Edit v0.4needs Java to work, please install it if you don’t already have it.
Step 3: Now that you have both – the APK file and the APK editor – let’s start with the editing. Launch APK Edit.exe that you extracted in the previous step and load the APK file you want to edit.
apkedit.exe

Step 4: The tool will now read the file and display the app icon and name under the General tab. You can edit the name text field directly and click on the icon image to search for a new icon. Please make sure that the icon file is in PNG format and is a perfect square in dimensions.
initial apk
modded apk
Step 5: After you are done with the editing, click on the Apply button to save the changes.
Although the app gives you an option to directly push the apps to the device using a data cable, I would suggest you to transfer the modified APK file to your internal hard disk using Wi-Fi or data cable and then install it on the device.
Renamed Android File  (2)Renamed Android File  (1)
Even while installing the file you will see the changes in the file name and the app icon. After the app’s installed, you will see the app with the user defined icon and name.

Conclusion

You can use this trick to mask your secure applications on android. But do remember that the trick is only meant for personal use. Don’t try to change the name and icon of the app and publish it as your own work.
DECOMPILER:
the simple way to change the icons and names of applications on Samsung's TouchWiz UI.

you need to know about how to edit an apk and also how to find the application's package and activity names.

0-Download my attached file.
1-Decompile CSCAppResource.apk 
2-add all your favorite icons to drawable folder.
2a= if you want to change the application's name too, check this post! [updated 1st august 2013 ]

3-Compile and Sign it.

already , you have CSCAppResource.apk with all icons , you added from above steps.

now , you need to decompile your edited CSCAppResource.apk file, after decompiling, goto Values folder and open the public.xml file vith Notepad++.

now you will find it like this one,, this is an example;
PHP Code:
<?xml version="1.0" encoding="utf-8"?><resources>
    <public type="drawable" name="amestris_test" id="0x7f020000" />
</resources>
------------------------------------------------------
4-now create a xml file and paste below lines into it.
PHP Code:
<?xml version="1.0"?><cscappresource>

</cscappresource>
save it with CSCAppResource.xml file name.

------------------------------------------------------
5-now we want to add Icon for specific application. for example we want to change the icon for Browser.

the Browser application activity name is " com.android.browser ".

now we will define the Icon for Browser activity. see below example.

back to "CSCAppResource.xml" file and this line between cscappresource tag.
PHP Code:
<item name="com.android.browser" iconid="7f020000"/>  
at final we have the "CSCAppResource.xml " like this one.
PHP Code:
<?xml version="1.0"?><cscappresource>
<item name="com.android.browser" iconid="7f020000"/>
</cscappresource>
--------------------------------------------
save the file and copy CSCAppResource.xml and CSCAppResource.apk to this folder:
Code:
/system/csc/appresource
** you need to create "appresource" folder, if not exists. 

give permissions to folder and files then reboot your phone.


i will share some samples to post two.

Best Regards.


original thread
http://www.pda-planet.com/forum/foru...hread5929.html
ICON PACKS...

CUSTOM ICON PACKS

Sence5 Icon Pack by wildstang83
--------------------------------------------------------

How to apply this iconpack from custom recovery mod? [CWM Update.zip file]

Download the attached file "IconPack_Sample_CWM.zip"
Extract it via WinRar or 7Zip, copy your edited files into " \system\csc\appresource" folder and zip it.
now you can install it from recovery.
it is compatible with all phones.
**custom recovery is need.

ENJOY...
PEACE.. 
 

No comments:

Post a Comment