[Q] Issues with generated APK file on Eclipse - Zooper Widget Templates

Hi All
I'm working on a new widget for Zooper Pro , using Eclipse . I followed the guide thread appearing in the forum but still have some issues
I have specific fonts and iconsets which I'm using . After generating the APK file and install it on my device (Nexus 5) , Instead of the actual iconsets I'm getting latters (D ,A etc...) . As for the fonts , sometimes they work and sometimes don't . Before generating the APK file I made sure I deleted the JET extension for all the files and also made sure I didn't have any errors prior creating the package . ( Just had some grammar DTD but as much as I know it should not arm the APK file .
Any idea what could be the issues ?
I'm using the latest Zooper pro version ,and Nexus 5 with 5.0
Thx in advance !

Related

[GUIDE][How-to]Create your Own Custom ROM an easy way

Holla Guys this i am back with a Guide which you would have seen many times on XDA but still were you able to follow them??
And answer is "NO"as they all focus on Android Kitchen which is a big tool but not a wall for blind!! Mark it you will have to use your own sense(Not Htc Sense ) while making a ROM!
But then also i can provide you a Boost Start in Android Development World for Sure
​
This tutorial is specially for
Newcomers to the world of Android
People who want to create their own ROM but unable to do so as it is going over the head
People who did not had any encounters with Programming
Even Experienced One
Click to expand...
Click to collapse
Thanks to
Click to expand...
Click to collapse
dsixda for his ultimate kitchen
lokeshsaini who is the original writer i have just modified it and simplified for better understanding
Neroyoung -For his video tutorials
If i left any one's name PM me
Click to expand...
Click to collapse
Tools Required : (Report me dead links please)
Java JDK Download Link-For Installing Cygwin
(Note: Do not install Cygwin before the JDK!!
Click to expand...
Click to collapse
Android Kitchen Official Thread
Cygwin Link-Linux Terminal on Windows
Apktool/Apkmanager
Notepad++-For editing .xml files
7-Zip-Handy tool
Click to expand...
Click to collapse
Part 1: Installing the JAVA JDK, Cygwin and Setting up the Kitchen.
Code:
*Before you do anything install the java jdk*
watch this video tutorial by gitagaire for how to setup cygwin and kitchen(recommended)
Click to expand...
Click to collapse
INSTRUCTIONS
->Download and extract the cygwin_packages.zip
-
>Run the set up(make sure there is no previous cygwin installation)
{
"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"
}
->when it shows all the package names, go to the top and select "all default" until it changes to "all install" (you must click on the arrows)
->Download the kitchen from above. Then, extract the kitchen's .zip file to a folder under your home account. Rename the dsixda-android-kitchen-*** folder to just "kitchen". In Cygwin, this folder would depend on what was set for your Cygwin install directory, e.g. C:\cygwin\home\John\kitchen
NOTE!! If your user folder contains spaces (e.g. C:\cygwin\home\John Smith\kitchen), then the kitchen will not function properly. Instead, copy it under C:\cygwin\home\kitchen.
->Now your ready to run the kitchen type:
those who have their kitchen like this C:\cygwin\home\John\kitchen use these commands given below
Code:
[COLOR="Sienna"]cd kitchen(enter)[/COLOR]
[COLOR="DarkRed"] ./menu(enter)[/COLOR]
those who have their kitchen like this C:\cygwin\home\kitchen use these commands given below.
If you did things right you should see this:
Click to expand...
Click to collapse
Part 2:Setting up a working folder
THERE ARE TWO METHODS FOR THIS.
1. WHEN YOU HAVE BASE ROM AVAILABLE.
2. WHEN YOU DON'T HAVE BASE ROM.
FIRST METHOD -
->First our folder structure should look like this:
Code:
cygwin folder/home/your user name/kitchen
-> Inside the kitchen it should look like this:
-> Now we need a rom to work on, for KarbonnA5 users i will recommend this rom by ME only but you can use any rom.
-> Just Place the original rom zip in the original_update folder inside the kitchen.
run the cygwin.exe again type:
Code:
cd kitchen(enter)
./menu(enter)
-> Now enter option 1, enter again. You should see your rom listed, choose and enter
you will be asked about changing the working folders name, at this point it makes no difference so just continue.
congratulations you have a working folder!!!
Second METHOD -it is almost like ROM Dumping works on any device!
-> FIRST MAKE A WORKING FOLDER IN CYGWIN FOLDER
IT SHOULD LOOK LIKE THIS
cygwin folder/home/your user name/kitchen/WORKING_(your rom name)
Click to expand...
Click to collapse
NOTE: FOR THIS MEETHOD WE NEED 3 FILES AND FOLDERS TO BE PLACED IN WORKING FOLDER.
1. META-INF FOLDER - GET THIS FROM DOWNLOAD FILES LIST IN FIRST POST
2. SYSTEM FOLDER - TUTORIAL BELOW
3. BOOT.IMG - TUTORIAL BELOW
2. getting system folder
(NOTE - Rooted phone required!!)
This is universal method and can be done easily using terminal emulator.
For this simply download Terminal Emulator from Android Market.
we need freshly flashed device here. OTHERWISE YOU WILL HAVE LOT OF JUNK FILES.
Open it and type:
Code:
su
tar -c system/* >> sdcard/system.tar
This will copy all your /system folder to your SDcard with name System.tar
This will take some time to finish so be patient.
After it's done you should have a tar file in your /sdcard named system.tar
You can extract it using Winrar or 7zip software. But yes this will have huge size , as it has other useless folders so you will have to delete them. After extracting this system.tar file you will get following folders (Similar one)
/etc
/fonts
/framework
/lib
/lost-found
/media
/sd
/usr
/xbin
build.prop
Click to expand...
Click to collapse
-> Now simply delete the folders marked in red color and its done.Don't worry if you don't have folders with red colors above,we don't need them.
And the final files that we will have in our system folders will be
/app
/bin
/etc
/fonts
/framework
/lib
/media
/semc
/usr
/xbin
build.prop
Click to expand...
Click to collapse
NOW COPY THIS system FOLDER TO WORKING FOLDER
3. getting boot.img
Here we have 2 options
1. stock boot.img from stock rom - simple kernel which we get in brand new mobile.
2. custom boot.img from custom kernel - kernel which are modified for overclock or other features
1. getting stock boot.img from stock rom.
extract your stock rom with winrar or 7zip. you will see boot.img there. copy it to working folder
2. getting custom boot.img from custom kernel.
download any custom kernel which is only for your device.
extract it with winrar or 7zip and copy boot.img to working folder
NOTE: many of new devices have kernel.bin and other files instead of boot.img so skip this part if your device don't have it...
Click to expand...
Click to collapse
​
Part 3 :Change/modify/update rom
YOU CAN MODIFY YOUR ROM IN TWO STEPS:
[*] MODIFY USING ANDROID KITCHEN - for basic modification.
[*] MODIFY MANUALLY. - for advanced modification.
Click to expand...
Click to collapse
2. MODIFYING MANUALLY.
Check this Guide for some MODs like center clock,CRT animation, ics and jelly bean style mods etc...
Adding/removing applications
1. Go to the working folder where you extracted your rom, inside you will find:
OR
2. Then go to "system/app" inside this folder you will find all the rom applications(apks) you may also find some in the data folder if your rom has this folder.
3. Copy, replace, and change any app(apk) be carefull if you dont know what the apk is do not delete!!
LIST OF APPS YOU CAN DELETE - HERE OR HERE
If you can not find some apps in this guide then try opening all those app in your phone and see app name and icon or move those apps from system/app to sdcard and see what is not working...
Adding new boot animation
android kitchen doesn't works for my Karbonn A5 . So we need a different method.
1) Download and extract the bootanimation and samsungani file from Custom Booting.zip attached in first post.
2) Put them in the /system/bin folder and replace the existing files there
3) Now download any boot animation, and rename the bootanimation to “sanim.zip”.
4) Now, navigate to /system/media and replace the “ODEanim” with “sanim.zip”
You are done with the bootanimation change
Edit the gps script for your country/location
1. In the workingfolder/system/etc/ you will find a file named gps.conf, you can
edit this file with notepad++ or even word.
2. using the right gps script in this file can speed up gps lock, you can
find some from angeldeath, download extract and replace the gps.conf.
Adding ringtones :
Take your ringtone file...it should be in .ogg format..If not then convert it to .ogg..
Locate to the folder system>media>audio>ringtones>
Copy and paste your .ogg files here in ringtones folder..
You can also change notifications, alarm and UI tones like this..
Changing the Fonts :
Take your desired font.ttf file and rename it as DroidSans.ttf..
Locate to the folder system>fonts>
Now, replace the file DroidSans.ttf with your desired DoridSans.ttf...
To change the lock screen clock font...replace the Clocktopia.ttf with your desired one..(rename first)..
build.prop tweaks!!
check this or this or this post for build.prop
NOTE: EDIT BUILD.PROP WITH NOTEPAD++. SIMPLE NOTEPAD WILL CORRUPT THE FILE.
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Part-4 Theming Your ROM
Via UOT Kitchen
Apex said:
Credit to Jermaine151​
Click to expand...
Click to collapse
​
Deaaling with .9 pngs
Here neroyoung will teach you how to deal with the pngs ening with .9 extension
Click to expand...
Click to collapse
Some Great and simple Guides
All things needed theming thread by theimpaler747
Theming .apk byAndrewtst
How to make "basic" theming mods + .9.png tutorial by dully79
Cooking with UOT Kitchen by Apex
[GUIDE]Theming Guide for changing system text settings(Recommended)
[TUTORIAL][ICS][GB]How to change Android's black background(By me)(recommeded)
[Tutorial]-ICS-AOKP/CM9-UPDATED-Miscellaneous MODS[Nav bar,Notification header etc](most recommeded)​
MORE ADVANCE MODIFICATION (starters for beginners)
editing .apk files
THERE ARE TWO BEST TOOLS FOR EDITING .APK FILES
1. APKTOOLS
This video by neroyoung teaches you how to setup APKTOOL folder as well as teaches you how to edit .apk files
2. APK Manager
this video by adgoosuc teaches you How to unpack,repack and sign an APK File with APK Manager
Editing .JAR Files
In this video by neroyoung you will get information on how to edit .jar files like services.jar using APKTOOL
How to integrate an app in settings(recommended)
Thread Junction
adding mods and scripts...
download mods and scripts from links below and copy past all files in same folder as your rom... like for init.d scripts add them to system/etc/init.d/here and all permissions in updater script to your updater script...(dont forget to give them credit for it...)
links:-
Tweaks
[TweakZV6] Init.d best tweaks[Flashable] Increase your performance by [email protected]
Collection build.prop; init.d; etc. by optik19918
init.d Tweaks collection by dsexton702
[SCRIPTS][TWEAKS][CWM]SlaidyBoost-V2.3 by slaid480
[CWM][SCRIPTS][TWEAKS] Adrenaline™ Engine by ImbaWind
V6 SuperCharger by zeppelinrox
[SCRIPTS]CronMod-A2SD/D2EXT/INT2EXT by croniccorey
Maximum MultiTasking Mods + V6 SuperCharger BY zeppelinrox
All in one tweaks build.prop,init.d,Wifi,Xloud,Bravia,A-Gps,A/V Sync,Modules by XtremePeople
Xloud and Bravia engine by aiman112
Sound/Audio MODs
AwesomeBEATS™ v.3 by ...Awesome...
(MOD)Beats Audio(2.3+up) by RockoDev
Tuned MegaBassBeat by kurotsugi
[AROMA] Beats Mode - Enhanced Beats sound V7.5 by MemAllocatoR
Miscellaneous Tweaks
Interactive Phone Modification [GUIDE]
ICS Style 'Settings.apk' - Make it yourself by balamu96m
StatusBar Tweaks by Master&Slave™
Change lockrings on any rom by daveyannihilation
change ICS lockscreen animation to Honeycomb style by evilisto
S Voice for any devices [ICS] by PlaYOuT
Implement Swipe to Remove Notification by hansip87
Remove SMS log from Call log by wilfredcool007
Activate the rotation of the lockscreen by GalaxyUser
Add 6 lockscreens Mod + Lockscreen Gestures by pratyush.creed
How to add customizable 14 statusbar toggle buttons for samsung ROM by lidroid
Create a custom notification dropdown by jeffsanace
One Click odexing for better RAM Speed
these are few i love, find more yourself...
MORE WILL BE ADDED SOON...
Click to expand...
Click to collapse
Few Guides
Xposed - ROM modding without modifying APKs/flashing
.
Compiling CWM Recovery
.
Compiling TWRP Recovery
.
Building Kernels and Android Sources
.
Porting ARM V7 Roms to ARM V6
.
Porting MIUI with JB/ICS
.
Porting Jelly Bean( A few Assists)
.
Dev Basics Collection
.
MIUI v4
.
MIUI v4 Updated- Different and Noob Friendly
.
Sense UI
.
Making a Flashable Package (Update.zip)
.
Making a CWM Flashable Zip
.
Complete Android ROM development and essential tutorials
.
Re-Odexing a ROM
.
Porting AOSP ICS ROMs
.
Compiling CM9 on Mac-OSX Lion
.
MIUI (Source GB)
.
Create your own De-Bloat Tool
.
Porting LewaOS,JoyOS for Noobs
.
UOT Kitchen Guide
.
Making your Own Custom ROM
.
Unpack or Repack an APK
.
Building your first KERNEL
.
Compile JB on Ubuntu
.
DEODEXing Stock ODEXED ROM
.
[GUIDE]How to use AROMA Installer on any ROM/Device|NOOB Friendly|
.
[Guide][How To] Adding Brightness Bar Slider to Status Bar
.
[Guide] Jellybean navigation layout for CM7 ROM
.
[GUIDE] How to add TABS to Settings with swipe gesture
.
[DEV][TOOL] Android Image Kitchen - Unpack/Repack Kernel/Recovery + ramdisk
.
[EASIEST WAY ROM DUMP] ROM dumping method for any phone
.
How to use GitHub
Other Modding and Theming:
Remap Hardware Button to ICS Recent Apps
.
Create GB Dictionary for your Language
.
ICS Recent Apps Button/Softkeys to Status Bar
.
Smooth Scrolling and Volume Increase
.
Re-Odexing a ROM
.
How to LogCat
.
Convert .jar to .apk
.
Setting up Android Dev Environment in Ubuntu 11.10
.
Modifying APK Files
.
Modifying APK files - Another Method
CREDITS:
Credits to the Original Developers/Writers for posting this stuff.
I am just linking it to their threads, all credits go to them.
NOTE:
If you find any other Topic that maybe useful, Post it in comments, so that We can make a huge thread of Guides.
THANK YOU ALL:
I Thank you all for referring to this.. I have just searched a bit and though making a thread would be useful. I am really Happy that it helped many of you!! Will keep adding!!
Click to expand...
Click to collapse
Last but the not the least: repackage the rom
AFTER YOU HAVE DONE ALL CHANGE/MODIFICATION YOU WANTED OPEN CYGWIN AGAIN AND TYPE
now convert update script to updater script(in option 23)
now lets edit updater script(optional)
the updater-script basically tells CWM what steps to take during the installation(flashing rom).
If you don't have any experience please don't edit anything other than what is in this simple tutorial.
TO EDIT UPDATER SCRIPT -
1.Go to META-INF/com/google/android
2.Open the updater-scrip file with Notepad++
3.Any text that would appear during the CWM install should be in this format :
Code:
ui_print("Put your text in HERE");
Add your text start at top and save,
then replace with new updater-scrip
Add New Aroma Installer to your ROMLink to Guide(By Me only)
AND AT LAST
[*]Now that you have made some changes it's time to pack the rom and test!!
Run the cygwin and type
enter option 99 - "biuld rom from working folder"
Choose your build option and few more enters
I recommend that you go with all default options until you get more experience with the kitchen.
When rom is packed and signed it will ask to change rom zip name (type name of your rom)
When its all done you will find a folder inside "cygwin/home/yousername/kitchen" called output_zip
Inside the folder is your new rom ready to be flashed and tested!!!
IF YOU WANT THAN YOU CAN MAKE CWM FLASH ABLE ZIP'S MANUALLY USE THIS TOOL BY I.AM.H3RO
congratulations you have build your own rom
TROUBLESHOOTING
If you are facing java related problem with cygwin than refer post #8
If you have a rom without kernel then remove these lines:
Code:
assert(package_extract_file("boot.img", "/tmp/boot.img"),
write_raw_image("/tmp/boot.img", "/dev/block/mmcblk0p8"),
delete("/tmp/boot.img"));
If there is a package error then extract the files of the rom and repack them using any compression software.
If rom installed correctly but stuck onto logo screen?? Then remove try removing kernel and flashing rom again.
If rom installed correctly but got onto bootloop then there could be many possibilities which could lead to this. If you want accurate cause of it then do a logcat.
If there are some apk's which are not working then check if you correctly modded them.
Now what do you want more in a thread
Just Press thanks button and rate the thread 5 Stars and Show your Appreciation :highfive:​
Well you beat me to it,i was contemplating wether or not i should do this,hahaha,very nice,i see your not finished yet,if you need any help,pm me,i have been using the kitchen for a couple of years now.I've learned a few tricks you can do with the kitchen.
Re: [UltimateGUIDE][How-to]Create your Own Custom ROM an easy way|Android Secrets -_-
You have done that like a boss..8|
Sent from my Karbonn A5 using xda premium
shreyans4020 said:
You have done that like a boss..8|
Sent from my Karbonn A5 using xda premium
Click to expand...
Click to collapse
hehehehe thank you
good
epic guide bro..
sahil11 said:
epic guide bro..
Click to expand...
Click to collapse
Press thanks button+ Rate the thread also
Thread cleaned
Discussions of the sort I just removed from this thread need to take place privately. Very little will get accomplished when they get posted on the forum. The primaries need to take this to PM and send me a message when an agreement has been reached.
An excellent piece of work...Awesome
coolbud012 said:
An excellent piece of work...Awesome
Click to expand...
Click to collapse
And if you ever gets confused post here and i will do my best to solve it
Diablo67 said:
Well you beat me to it,i was contemplating wether or not i should do this,hahaha,very nice,i see your not finished yet,if you need any help,pm me,i have been using the kitchen for a couple of years now.I've learned a few tricks you can do with the kitchen.
Click to expand...
Click to collapse
u can share you New Stuffs which u learning from Kitchen here too if you can Plz
hello, congratulations for the very detailed but the last step guide tells me that java is not installed, I installed java jdk 7u17. How can I fix?
I already tried reinstalling java but no change, here is a photo of the error https://pbs.twimg.com/media/BGcGYNOCIAAy4bk.jpg:large
EDIT: I solved, on Windows 8 64bit, java jdk is installed in x86 version, I had downloaded the x64 version. Now it works
Thanks for the guide, its great! But I have a problem, everytime I compile the zip I have a status 6 error, what do I have to edit with notepad++ in the update-script to make it work? Its quite frustrating xD And its already in Unix code ^^

Theming problem

Now I am theming a ROM and I have a problem now I use a program called formatter to change apk to rar and I can modify it
I finished my theme and used the program to change the rar to apk and then I put it in my phone when I install it says (problem parsing the package)
Pls help me
Note : I was theming holo launcher. And the only thing I did is replacing png not even 9.PNG files
sent from Egypt
an apk is actually the same as a zip or rar archive.
just open the apk with any archiving software (i use winrar) and it will recognize the contents,
it's much perferable to decompile everything to ensure file integrity upon installing.
deathnotice01 said:
an apk is actually the same as a zip or rar archive.
just open the apk with any archiving software (i use winrar) and it will recognize the contents,
it's much perferable to decompile everything to ensure file integrity upon installing.
Click to expand...
Click to collapse
Now I tried again and it started the installation but it says *application Not installed *
Why it is saying this
sent from Egypt
mohamedrashad said:
Now I tried again and it started the installation but it says *application Not installed *
Why it is saying this
sent from Egypt
Click to expand...
Click to collapse
because you have incorrectly altered the file,
you must provide more information since "application not installed" is the same as asking "why is my phone not working" there are a lot of possibilities.
Try the suggestion i told you in my above post
sign the apk if its not system application
Thank you I will try this
sent from Egypt
U forgot to sign it..
That's the problen
** rooting is new for me,
nd i am a noob to root....**
menewtoroot said:
U forgot to sign it..
That's the problen
** rooting is new for me,
nd i am a noob to root....**
Click to expand...
Click to collapse
I noticed that
sent from Egypt

[05.23.14][TOOL] APK Tools v3.50 [Windows][GUI]

APK Tools --
"A complete fresh tool developed from scratch; inspired by existing tools available out there."
INFO: Pushed to GitHub
SCREENSHOTS​
Requirements:
Java JDK/JRE
Android SDK
BRAIN! ^_^
Features:
Faster and easier APK handling (GUI Version) -- supports drag and drop file; access files anywhere
All-in-one (ADB Push/Pull, Extract, Optimize, Zip, Sign, Zipalign, Install, Decompile, Compile...)
Based on latest available tools
Great user interaction; less prone to errors (More information and warning during operation)
Works everytime and anywhere (No problem with paths and filename containing spaces or weird characters)
Log activities with time stamp and use date as log filename
Install and use of framework with custom tags
Generate and sign APKs with own private key (Android market supported)
Switch between apktool versions (2.0.0b9 & 1.5.2)
Many more . . . Check for yourself! ;D
To Do:
Log activities with time and date headers - Done
Install framework with custom tags - Done
Generate own private key with android market support - Done
Sign APKs with the generated private key - Done
GUI version with drop file support - Done
Switch between APKTOOL versions - Done
Post a feature request or suggestion here.​
Instructions:
Extract "APK Tool v#.##.zip"
Execute "APK Tools.exe"
Necessary files and folders are installed automatically every launch if not found.
Place APKs to be modded inside "APK Files" folder.
All extracted or decompiled APKs are found in "Projects" folder.
Generated private keys are located in "OUTPUT" folder.
Zipped, signed, zipaligned and/or compiled projects are found in "OUTPUT" folder.
Zipped/Compiled with Original Signature => system-%Project%
Zipped/Compiled with No Signature => unsigned-%Project%
Signed with Generated Private Keys => gpsigned-%Project%
Signed with Android Market => amsigned-%Project%
Signed with Test Keys => signed-%Project%
Click to expand...
Click to collapse
* Testers would be much appreciated to keep the tool stable.
** If possible, post full info regarding bugs encountered here.
*** Let's try to fix issues / errors ASAP. THANKS!!!
DOWNLOADS:
Direct (XDA)
Mirror v1.00 (MediaFire)
Mirror v1.50 (MediaFire)
Mirror v2.00 (MediaFire)
Mirror v3.00 (MediaFire)
Mirror v3.50 (MediaFire)
Rate and post a review here.​
CREDITS:
Google for Overall HELP and Android Tools
Brut.all / iBotPeaches for apktool
jesusfreke for smali/backsmali
deanlee3 for roptipng
Igor Pavlov for 7zip
Yorzua for signapk
XDA:DevDB Information
APK Tools (GUI Version), Tool/Utility for the Android General
Contributors
kermage
Source Code: https://github.com/kermage/APK-Tools
Version Information
Status: Stable
Current Stable Version: 3.50
Stable Release Date: 2014-05-23
Created 2014-04-27
Last Updated 2015-08-01
Changelogs
v3.50 ( 05/23/14 )
GUI fixes and adjustments
Fixed ADB push and pull locations
Fixed Compile option not signing original signature
Added option to copy over original files after compile
Added ADB install option
v3.00 ( 05/21/14 )
GUI version (faster and easier handling) -- supports drag and drop file
Access files anywhere (not limited to APK Files folder)
Switch between apktool versions (2.0.0b9 & 1.5.2)
Improved error detection and logging capability
Multiple tweaks and rework to codes
v2.00 ( 05/07/14 )
Generate own private key with android market support
Sign APKs with the generated private key
More tweaks and fixes to code
Improved launcher script
v1.50 ( 05/03/14 )
Log activities with time stamp and use date as log filename
Install and use of framework with custom tags
Minor tweaks and fixes to code
v1.00 ( 04/27/14 )
Initial release
FAQ
-RESERVED-
just about to try this out
thanks alot :highfive:
Er. Aditya said:
just about to try this out
thanks alot :highfive:
Click to expand...
Click to collapse
will be glad to hear a feedback..
this my friend is a superb tool , really really easy to use and a must for the newbies.... thanks alot for the tool , il just add this to my signature to spread the word
Er. Aditya said:
this my friend is a superb tool , really really easy to use and a must for the newbies.... thanks alot for the tool , il just add this to my signature to spread the word
Click to expand...
Click to collapse
:good: THANKS MATE! :highfive:
kermage said:
:good: THANKS MATE! :highfive:
Click to expand...
Click to collapse
il keep testing more and will let you know
Er. Aditya said:
il keep testing more and will let you know
Click to expand...
Click to collapse
You just made my day... -signature :good:
Very great tool simple and easy to use definitely noob friendly thanks man found a sort of bug maybe a typo but when you set decompile mode to sources it decompiled the resources instead. same goes for when you set decompile mode to resources it will decompile sources instead.
Sent from my Moto G using XDA Premium 4 mobile app
Omar1c said:
Very great tool simple and easy to use definitely noob friendly thanks man found a sort of bug maybe a typo but when you set decompile mode to sources it decompiled the resources instead. same goes for when you set decompile mode to resources it will decompile sources instead.
Sent from my Moto G using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I will check this..thanks :good:
Update
Got it, already fixed the bug
Redownload "APK Tools.zip", delete existing "tools" folder, then execute "Launcher.exe".
Click to expand...
Click to collapse
Thanks, not tried it yet but will add a link to it in my guide.
Easy as it gets, nice work, test went well for me.....thank you for this, it will make it easier for sure....great work!!!:good::good:
XperienceD said:
Thanks, not tried it yet but will add a link to it in my guide.
Click to expand...
Click to collapse
that would be great!.. thanks :good:
So much thanks man. This is exactly what I need. I am following the post.
hai @kermage.. Glad to see apk tool thread with up to date post from the maker..
but lil bit problem occuring to me..
how to operate this tool..
I cant even installing framework. It says error. Whereas "APK tools" folder have been moved to C:/Windows/ directory.. (Before I move it into windows dir, the launcher even continously says "APK files folder EMPTY, although obviously I have put some files there)
I've try the latest apktool 2.0.0 beta9
It works with apk that need multiple dependencies (in my case, Xperia SP FW .201, using framework-res.apk & semcgenericuxpres.apk)
it suceed to decompile. But I get an error "PathNotFound apktool.yml" while recompile..
thanks in advance
UPDATE!
APK Tools v1.50
Changelog:
Log activities with time stamp and use date as log filename
Install and use of framework with custom tags
Minor tweaks and fixes to code
DOWNLOADS:
Direct (XDA)
Mirror (MediaFire)
Instructions:
Extract "APK Tool v1.50.zip"
Execute "Launcher.exe"
nasroed said:
how to operate this tool..
Click to expand...
Click to collapse
Extract the downloaded ZIP file anywhere you want.
Execute the Launcher.exe. (necessary files and folders will be installed automatically.)
Select a task by entering the option number. Play around.
nasroed said:
I cant even installing framework. It says error. Whereas "APK tools" folder have been moved to C:/Windows/ directory.. (Before I move it into windows dir, the launcher even continously says "APK files folder EMPTY, although obviously I have put some files there)
Click to expand...
Click to collapse
You dont need to move any folders created by the APK Tools Launcher (APK Files, Logs, Projects, OUTPUT).
This is weird, the tool should list all .apk files found under "APK Files" folder. (even filename containing spaces or weird characters)
nasroed said:
I've try the latest apktool 2.0.0 beta9
It works with apk that need multiple dependencies (in my case, Xperia SP FW .201, using framework-res.apk & semcgenericuxpres.apk)
it suceed to decompile. But I get an error "PathNotFound apktool.yml" while recompile..
Click to expand...
Click to collapse
Try to install frameworks and decode again, then check if the apktool.yml file exist in "Projects" folder.
If NOT, then it is not SUCCESSFULLY decompiled and you should import all the needed frameworks.
Or is it already a modified/themed app?
If YES, you should try to decompile the stock app. It's almost impossible to work with already themed/modified app
UPDATE!
APK Tools v2.00
Changelog:
Generate own private key with android market support
Sign APKs with the generated private key
More tweaks and fixes to code
Improved launcher script
DOWNLOADS:
Direct (XDA)
Mirror (MediaFire)
Instructions:
Extract "APK Tool v2.00.zip"
Execute "APK Tools.exe"
Once again im late to the party
This is AWESOME my man and THANK YOU!!!
I just saw it and got really excited and i will take it for a test drive
I cant even express how much I appreciate the peole who create tools for us!!
You are the real heroes behind most of us "devs" :good::good:

[Q] newbie need help please......

I have a samsung note 3 sprint smn900p
I want to translate the system apks like framework-res.apk and secsettings.apk
then I found one of my friend has a same mobile note 3 sprint already translated and same android version 4.4.2
so I copy all of his files completely ( all system files and system apks ) around 2 GB .
and I make a backup of my system using TWRP recovery .
and now I try to install his framework-res.apk , so I copy it to my sdcard and using rootexplore then change the permissions to R-W-R-R and paste the framework-res.apk file to the system/framework folder and it already replaced the old framework-res.apk with the new framework-res.apk which already translated . but the problem I dont see that the mobile make upgrading for the new apk so I go to the new framework and try to install it from rootexplorer but always get a message app not installed.
I change the mount to RO then RW but nothing change only app not installed.
so how to install the new framework-res.apk ?
my second question, can I make a new rom using my friends complete system files and flash it to my mobile ?
thank you
Try the Sprint Samsung Note 3 Forum.

How do I completely change the icons in the Samsung Galaxy young GT-S5360

Dear brothers :
I installed a custom ROM for my phone samsung Galaxy young GT-S5360
Dedicated Roman Information :
ROM Name:
Hyperion - Titan of the East
Build number:
Hyperion.DXLF2
I did not like the icons
How do I change the entire Icons
You experience a number of applications such as :
ICON CHANGER PRO
Did not do any good
Mentioned application does change the icons and put a shortcut on the desktop
I do not want this
I want to change application icons on the home screen
How so .?
Decompile the application you want to change the icon of with apk tool
You can see what the icon name is in the Android manifest
The icon itself will be located in res/drawable-ldpi
An easier way might be to download an icon pack (search the theme section)
Then open the Flashable zip & find the app name you are looking for - open that folder & put the image you want in there replacing the image in the folder (rename your image to match the one you are replacing)
Then flash it in cwm with system mounted
marcussmith2626 said:
Decompile the application you want to change the icon of with apk tool
You can see what the icon name is in the Android manifest
The icon itself will be located in res/drawable-ldpi
An easier way might be to download an icon pack (search the theme section)
Then open the Flashable zip & find the app name you are looking for - open that folder & put the image you want in there replacing the image in the folder (rename your image to match the one you are replacing)
Then flash it in cwm with system mounted
Click to expand...
Click to collapse
Excuse me, my brother I do not
speak English fluently And it will
help me in the search within the
site I hope you can explain to me
way more steps And a civilian, if
possible, the programs needed
Excuse me, my brothers again
Google to invoke the interpreter
brought to you my problem Found
in another section of this issue :
http://forum.xda-developers.com/showthread.php?t=1699249
Is this Cevedna.? I want to install the
original Android Icons The
Samsung Galaxy S3 Icons How do
I install it.?
abdoosman said:
Excuse me, my brothers again
Google to invoke the interpreter
brought to you my problem Found
in another section of this issue :
http://forum.xda-developers.com/showthread.php?t=1699249
Is this Cevedna.? I want to install the
original Android Icons The
Samsung Galaxy S3 Icons How do
I install it.?
Click to expand...
Click to collapse
download that icon pack
open it with winrar or any other unzipper
goto the unpack folder
in there you will find a list of folders that relate to the applications - eg Calendar
open the res folder and replace the image in there with the one you want making sure your image has the same file name as the one you are replacing
once done delete any folders to apps you dont want to replace
flash the zip in cwm with system mounted
marcussmith2626 said:
download that icon pack
open it with winrar or any other unzipper
goto the unpack folder
in there you will find a list of folders that relate to the applications - eg Calendar
open the res folder and replace the image in there with the one you want making sure your image has the same file name as the one you are replacing
once done delete any folders to apps you dont want to replace
flash the zip in cwm with system mounted
Click to expand...
Click to collapse
My brother Before this I did the
following: You download the file
icons You are logged on a recovery
mode You have downloaded or so
to flashing Profile Icons have not
changed I noticed something:
Download file icons by recovery is
not complete Viz: The phone
automatically reboots itself does
not go to me after the download
screen recovery and which ones I
choose reboot system now What is
the problem.?
Do you have a video explaining the
way.?
abdoosman said:
Do you have a video explaining the
way.?
Click to expand...
Click to collapse
No - its pretty self explainitory
Unzip & replace images in the zip within the folder relating to the app
I'm sure you could search YouTube yourself for videos
marcussmith2626 said:
No - its pretty self explainitory
Unzip & replace images in the zip within the folder relating to the app
I'm sure you could search YouTube yourself for videos
Click to expand...
Click to collapse
Can I do that by applying Root
xplor.? You unzip the file icons by
applying x-plore And I saw the
images inside folders icons which I
want Question: Are these icons
suitable for all Romat or only
official ROMs.?
abdoosman said:
Can I do that by applying Root
xplor.? You unzip the file icons by
applying x-plore And I saw the
images inside folders icons which I
want Question: Are these icons
suitable for all Romat or only
official ROMs.?
Click to expand...
Click to collapse
you will need to be rooted
you can unzip the zip with any unzipper and rezip once done
you then flash the zip in cwm with system mounted
the rom will need to be de-odexed
marcussmith2626 said:
you will need to be rooted
you can unzip the zip with any unzipper and rezip once done
you then flash the zip in cwm with system mounted
the rom will need to be de-odexed
Click to expand...
Click to collapse
I could not do anything
Down the phone
You go to recovery
You run CWM
I installed icons file
Returned the phone automatically
Icons have not changed Is this correct way.?
Excuse me, my brother That were
not correct,
please media the right
steps to be numbered 1, 2, 3 .....
And the extent of links to software
do I need
Thank you
abdoosman said:
I could not do anything
Down the phone
You go to recovery
You run CWM
I installed icons file
Returned the phone automatically
Icons have not changed Is this correct way.?
Excuse me, my brother That were
not correct,
please media the right
steps to be numbered 1, 2, 3 .....
And the extent of links to software
do I need
Thank you
Click to expand...
Click to collapse
I'm guessing you didn't mount system before flashing the zip
Remember you also need to be rooted & most likely need to be deodexed (most custom roms are already)
marcussmith2626 said:
I'm guessing you didn't mount system before flashing the zip
Remember you also need to be rooted & most likely need to be deodexed (most custom roms are already)
Click to expand...
Click to collapse
Excuse me, my brother
You multiplied
Phone by Root
Question:
Is it when I Btflish icons of file
recovery and lift off the phone will
change the icons directly or are
there other steps need to be
made.?
abdoosman said:
Excuse me, my brother
You multiplied
Phone by Root
Question:
Is it when I Btflish icons of file
recovery and lift off the phone will
change the icons directly or are
there other steps need to be
made.?
Click to expand...
Click to collapse
Read all my previous posts - I can't make it clear other than to say root - mount system in cwm - then flash zip
Change what ever images you want inside the zip keeping file names the same
If you can't understand - I'm sorry I cannot help you
marcussmith2626 said:
Read all my previous posts - I can't make it clear other than to say root - mount system in cwm - then flash zip
Change what ever images you want inside the zip keeping file names the same
If you can't understand - I'm sorry I cannot help you
Click to expand...
Click to collapse
Thank you brother
Finally able to
be installed
Thank you
Excuse me
if you multiplied So if science
student
Thank you

Categories

Resources