GUIDE
What will you Need:
ApkTool
Java JDK/JRE 32 bit
Terminal knowledge
Brain
Instructions
Extract zip folder to anywhere you choose. E.g: C:/android/apktool extracting the files to 'apktool' folder.
3.Now copy the apk to your Apk Tool folder.
2. Open your terminal
Your terminal will look like this...
C:\users\yourname>
Code:
[COLOR="Black"]cd.. → go back
cd.. android → go to this folder[/COLOR]
(Yes, it contains "..")
So you must be in your folder apktool (E.q: C:/android/apktool>)
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
4. Decompiling
Code:
apktool d framework-res.apk framework1
(framework-res.apk is apk which you want to decompile and framework1.. You can type "apktool if SystemUI.apk",...)
Now you can enjoy it!
5. Recompiling/Finished Product
Code:
apktool b framework1 framework-res-new.apk
(framework1 is the folder with your edited files and framework-res-new.apk is your new apk file)
You can't use the new apk... You have to take what you did and add it back to the original apk file to proper signature.
Use something like 7zip, take the 'resources.arcs' file and any other xml files you edited out of the "-new" apk and copy them into Original .apk.
Congratulations! You modded .apk!
Mlopik said:
GUIDE
What will you Need:
ApkTool
Java JDK/JRE 32 bit
Terminal knowledge
Brain
Instructions
Extract zip folder to anywhere you choose. E.g: C:/android/apktool extracting the files to 'apktool' folder.
3.Now copy the apk to your Apk Tool folder.
2. Open your terminal
Your terminal will look like this...
C:\users\yourname>
Code:
[COLOR="Black"]cd.. → go back
cd.. android → go to this folder[/COLOR]
(Yes, it contains "..")
So you must be in your folder apktool (E.q: C:/android/apktool>)
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
4. Decompiling
Code:
apktool d framework-res.apk framework1
(framework-res.apk is apk which you want to decompile and framework1.. You can type "apktool if SystemUI.apk",...)
Now you can enjoy it!
5. Recompiling/Finished Product
Code:
apktool b framework1 framework-res-new.apk
(framework1 is the folder with your edited files and framework-res-new.apk is your new apk file)
You can't use the new apk... You have to take what you did and add it back to the original apk file to proper signature.
Use something like 7zip, take the 'resources.arcs' file and any other xml files you edited out of the "-new" apk and copy them into Original .apk.
Congratulations! You modded .apk!
Click to expand...
Click to collapse
If your only editing smali and your rom is deodexed its simpler and faster to pull the classes.dex from archive of the original, decompile that and push it back to archive. As long as you don't delete the original classes.dex file from your folder you'll always have an original to go back to.:beer:
Sent from my SPH-D710 using xda premium
Hi! I hope this is a forgiveable necropost, but you seem to know your stuff.
Here:
Code:
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
So you install the *.apk you want to edit. Some guides make it seem as if you should install framework-res.apk for ANY apk you want to decompile.
ikjadoon said:
Hi! I hope this is a forgiveable necropost, but you seem to know your stuff.
Here:
Code:
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
So you install the *.apk you want to edit. Some guides make it seem as if you should install framework-res.apk for ANY apk you want to decompile.
Click to expand...
Click to collapse
No, the if command installs the framework of the individual apk, loads/reads dependencies, etc...
There is no need for framework res beyond modifying that apk:beer:
Sent from my SPH-D710 using xda premium
Stryke_the_Orc said:
No, the if command installs the framework of the individual apk, loads/reads dependencies, etc...
There is no need for framework res beyond modifying that apk:beer:
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
THANK YOU! Wow, I've posted that question about 5 different places and you're the first to reply! Just to make sure, what this person is doing is completely unnecessary:
So we're going to open the folder and then place the APK we want to edit along with a JELLYBEAN framework-res.apk into the folder. For example if you want to edit a CM10 "SystemUI.apk" then you will pull the framework-res.apk from /system/framework/ folder nd place it in your desktop JBapktools folder.... Next, bring up the folder window and anywhere on the white space hold SHIFT and Right-Click. Then youre going to choose open command window here.
The first command is going to be: java -jar apktool.jar if framework-res.apk
This is going to install the framework.
Now close out the window.
Click to expand...
Click to collapse
That step is not needed?
Another question, if you're free? This guide shows copy/pasting resources.arsc + XML files from the modified apk to the stock apk. Another guide, which was recommended to me by a TouchWiz modder, does this weird recompile dance with no resources.arsc/XML files mentioned:
1) Edit apk
2) Recompile apk (call this edited apk 1)
3) Copy/paste the META-INF folder and AndroidManifest.XML from stock apk into decompiled apk's /build/apk folder [what..why did we just recompile it, then?!)
4) Delete the apk in /dist
5) Recompile apk (again?!) into presumably edited apk 2
6) Edited apk 2 will be found in /dist folder
Can you make any sense of this? I posted it in the thread, but no reply as of yet.
ikjadoon said:
THANK YOU! Wow, I've posted that question about 5 different places and you're the first to reply! Just to make sure, what this person is doing is completely unnecessary: That step is not needed?
Another question, if you're free? This guide shows copy/pasting resources.arsc + XML files from the modified apk to the stock apk. Another guide, which was recommended to me by a TouchWiz modder, does this weird recompile dance with no resources.arsc/XML files mentioned:
1) Edit apk
2) Recompile apk (call this edited apk 1)
3) Copy/paste the META-INF folder and AndroidManifest.XML from stock apk into decompiled apk's /build/apk folder [what..why did we just recompile it, then?!)
4) Delete the apk in /dist
5) Recompile apk (again?!) into presumably edited apk 2
6) Edited apk 2 will be found in /dist folder
Can you make any sense of this? I posted it in the thread, but no reply as of yet.
Click to expand...
Click to collapse
I'm not sure about cm10, I've never played with it, but you shouldn't need to do it for each apk, the second question is dependant on what tool your using. I use team rejectz quick fix which build the app and then you have a few options. If you're only editing smali all you'd need to do is use 7zip to copy paste classes.dex from one archive to the original apk, if you prefer to keep the original then copy the Meta-inf as well as the classes.dex to the new apk in the dist folder inside the apk folder where you made your edits
http://forum.xda-developers.com/showthread.php?t=1829046
Here's the link for the tool I use, probably the easiest and fastest tool out:beer:
Sent from my SPH-D710 using xda premium
---------- Post added at 03:01 AM ---------- Previous post was at 03:00 AM ----------
If you need help or have more questions hit me up via pm or gtalk (my info is in my sig)
Sent from my SPH-D710 using xda premium
OK! That tool looks awesome! I'll let you know,
Mlopik said:
GUIDE
What will you Need:
ApkTool
Java JDK/JRE 32 bit
Terminal knowledge
Brain
Instructions
Extract zip folder to anywhere you choose. E.g: C:/android/apktool extracting the files to 'apktool' folder.
3.Now copy the apk to your Apk Tool folder.
2. Open your terminal
Your terminal will look like this...
C:\users\yourname>
Code:
[COLOR="Black"]cd.. → go back
cd.. android → go to this folder[/COLOR]
(Yes, it contains "..")
So you must be in your folder apktool (E.q: C:/android/apktool>)
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
4. Decompiling
Code:
apktool d framework-res.apk framework1
(framework-res.apk is apk which you want to decompile and framework1.. You can type "apktool if SystemUI.apk",...)
Now you can enjoy it!
5. Recompiling/Finished Product
Code:
apktool b framework1 framework-res-new.apk
(framework1 is the folder with your edited files and framework-res-new.apk is your new apk file)
You can't use the new apk... You have to take what you did and add it back to the original apk file to proper signature.
Use something like 7zip, take the 'resources.arcs' file and any other xml files you edited out of the "-new" apk and copy them into Original .apk.
Congratulations! You modded .apk!
Click to expand...
Click to collapse
To change icons to my custom rom I decompile SystemUI and framework-res?
pegliese93 said:
To change icons to my custom rom I decompile SystemUI and framework-res?
Click to expand...
Click to collapse
Yes, you can also decompile settings to further customize
Sent from my SPH-D710 using xda premium
Mlopik said:
GUIDE
What will you Need:
ApkTool
Java JDK/JRE 32 bit
Terminal knowledge
Brain
[/B][/FONT][/SIZE]
Click to expand...
Click to collapse
What if you don't have the 1st three but you do have a brain (last time I checked anyway).
I'm apparently a newer noob than this guide was written for since it sounds like more than I need. If it's the only way I may need more instruction if someone wants to help me with this little issue.
There is a default wallpaper in the Kindle Fire that for some unknown reason has been randomly popping up on my screen for months even though I use the latest twa_priv cm10 and now cm10.1 rom and go launcher exe. I found it in framework-res.apk :
res/drawable-sw720dp-nodpi/default_wallpaper.jpg.
I'd love to find out what the glitch is that causes this and fix it but I'd settle for getting rid of this particular image (sick of it).
{
"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"
}
Sent from my Amazon Kindle Fire using Tapatalk 2
sharonbw said:
What if you don't have the 1st three but you do have a brain (last time I checked anyway).
I'm apparently a newer noob than this guide was written for since it sounds like more than I need. If it's the only way I may need more instruction if someone wants to help me with this little issue.
There is a default wallpaper in the Kindle Fire that for some unknown reason has been randomly popping up on my screen for months even though I use the latest twa_priv cm10 and now cm10.1 rom and go launcher exe. I found it in framework-res.apk :
res/drawable-sw720dp-nodpi/default_wallpaper.jpg.
I'd love to find out what the glitch is that causes this and fix it but I'd settle for getting rid of this particular image (sick of it).
Sent from my Amazon Kindle Fire using Tapatalk 2
Click to expand...
Click to collapse
Run a logcat to find the process thats calling it. You have a few options here, you can adb it via sdk and a usb cable, or there are apps in the market that run logs for you:beer:
Sent from my SPH-D710 using xda premium
Sorry to necro again, but I'm trying to edit the framework-res.apk to add virtual buttons, but everytime I try to recompile the apk, I kept getting this error
C:\android\apktool\framework\res\values\public.xml:2971: error: Public symbol st
ring/shutdown_confirm_question declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2969: error: Public symbol st
ring/shutdown_progress declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2961: error: Public symbol st
ring/silent_mode declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2968: error: Public symbol st
ring/silent_mode_ring declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2966: error: Public symbol st
ring/silent_mode_silent declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2967: error: Public symbol st
ring/silent_mode_vibrate declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3681: error: Public symbol st
ring/sim_added_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3680: error: Public symbol st
ring/sim_added_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3679: error: Public symbol st
ring/sim_done_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3678: error: Public symbol st
ring/sim_removed_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3677: error: Public symbol st
ring/sim_removed_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3682: error: Public symbol st
ring/sim_restart_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3389: error: Public symbol st
ring/sipAddressTypeCustom declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3390: error: Public symbol st
ring/sipAddressTypeHome declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3392: error: Public symbol st
ring/sipAddressTypeOther declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3391: error: Public symbol st
ring/sipAddressTypeWork declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3781: error: Public symbol st
ring/skip_button_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3672: error: Public symbol st
ring/sms_control_default_app_name declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3674: error: Public symbol st
ring/sms_control_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3676: error: Public symbol st
ring/sms_control_no declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3673: error: Public symbol st
ring/sms_control_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3675: error: Public symbol st
ring/sms_control_yes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3624: error: Public symbol st
ring/smv_application declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3625: error: Public symbol st
ring/smv_process declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3881: error: Public symbol st
ring/ssl_certificate declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3882: error: Public symbol st
ring/ssl_certificate_is_valid declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3898: error: Public symbol st
ring/status_bar_device_locked declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3903: error: Public symbol st
ring/storage_external_usb declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3863: error: Public symbol st
ring/storage_internal declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3914: error: Public symbol st
ring/storage_phone declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3864: error: Public symbol st
ring/storage_sd_card declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3865: error: Public symbol st
ring/storage_usb declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3774: error: Public symbol st
ring/submit declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3835: error: Public symbol st
ring/switch_off declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3834: error: Public symbol st
ring/switch_on declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3762: error: Public symbol st
ring/sync_binding_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3809: error: Public symbol st
ring/sync_do_nothing declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3807: error: Public symbol st
ring/sync_really_delete declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3805: error: Public symbol st
ring/sync_too_many_deletes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3806: error: Public symbol st
ring/sync_too_many_deletes_desc declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3808: error: Public symbol st
ring/sync_undo_deletes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2862: error: Public symbol st
ring/terabyteShort declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3778: error: Public symbol st
ring/tethered_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3777: error: Public symbol st
ring/tethered_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3591: error: Public symbol st
ring/textSelectionCABTitle declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3552: error: Public symbol st
ring/text_copied declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3783: error: Public symbol st
ring/throttle_warning_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3782: error: Public symbol st
ring/throttle_warning_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3785: error: Public symbol st
ring/throttled_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3784: error: Public symbol st
ring/throttled_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2815: error: Public symbol st
ring/time1_time2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3821: error: Public symbol st
ring/time_picker_decrement_hour_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3819: error: Public symbol st
ring/time_picker_decrement_minute_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3823: error: Public symbol st
ring/time_picker_decrement_set_am_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3683: error: Public symbol st
ring/time_picker_dialog_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3820: error: Public symbol st
ring/time_picker_increment_hour_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3818: error: Public symbol st
ring/time_picker_increment_minute_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3822: error: Public symbol st
ring/time_picker_increment_set_pm_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2857: error: Public symbol st
ring/time_picker_separator declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2830: error: Public symbol st
ring/time_wday declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2828: error: Public symbol st
ring/time_wday_date declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3837: error: Public symbol st
ring/togglebutton_not_pressed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3836: error: Public symbol st
ring/togglebutton_pressed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2963: error: Public symbol st
ring/turn_off_radio declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2962: error: Public symbol st
ring/turn_on_radio declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3743: error: Public symbol st
ring/tutorial_double_tap_to_zoom_message_short declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3771: error: Public symbol st
ring/upload_file declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3713: error: Public symbol st
ring/usb_accessory_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3712: error: Public symbol st
ring/usb_cd_installer_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3711: error: Public symbol st
ring/usb_charging_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3910: error: Public symbol st
ring/usb_mode_bypass_all declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3907: error: Public symbol st
ring/usb_mode_bypass_at declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3906: error: Public symbol st
ring/usb_mode_bypass_ets declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3909: error: Public symbol st
ring/usb_mode_bypass_gps declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3905: error: Public symbol st
ring/usb_mode_bypass_modem declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3908: error: Public symbol st
ring/usb_mode_bypass_pcv declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3708: error: Public symbol st
ring/usb_mtp_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3714: error: Public symbol st
ring/usb_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3709: error: Public symbol st
ring/usb_ptp_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3691: error: Public symbol st
ring/usb_storage_activity_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3694: error: Public symbol st
ring/usb_storage_button_mount declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3695: error: Public symbol st
ring/usb_storage_error_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3693: error: Public symbol st
ring/usb_storage_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3697: error: Public symbol st
ring/usb_storage_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3696: error: Public symbol st
ring/usb_storage_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3702: error: Public symbol st
ring/usb_storage_stop_button_mount declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3703: error: Public symbol st
ring/usb_storage_stop_error_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3701: error: Public symbol st
ring/usb_storage_stop_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3699: error: Public symbol st
ring/usb_storage_stop_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3698: error: Public symbol st
ring/usb_storage_stop_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3700: error: Public symbol st
ring/usb_storage_stop_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3692: error: Public symbol st
ring/usb_storage_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3710: error: Public symbol st
ring/usb_ums_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3888: error: Public symbol st
ring/validity_period declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3645: error: Public symbol st
ring/volume_alarm declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3644: error: Public symbol st
ring/volume_bluetooth_call declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3643: error: Public symbol st
ring/volume_call declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3648: error: Public symbol st
ring/volume_icon_description_bluetooth declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3650: error: Public symbol st
ring/volume_icon_description_incall declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3651: error: Public symbol st
ring/volume_icon_description_media declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3652: error: Public symbol st
ring/volume_icon_description_notification declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3649: error: Public symbol st
ring/volume_icon_description_ringer declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3640: error: Public symbol st
ring/volume_music declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3641: error: Public symbol st
ring/volume_music_hint_playing_through_bluetooth declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3642: error: Public symbol st
ring/volume_music_hint_silent_ringtone_selected declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3646: error: Public symbol st
ring/volume_notification declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3639: error: Public symbol st
ring/volume_ringtone declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3647: error: Public symbol st
ring/volume_unknown declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3769: error: Public symbol st
ring/vpn_text declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3770: error: Public symbol st
ring/vpn_text_long declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3767: error: Public symbol st
ring/vpn_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3768: error: Public symbol st
ring/vpn_title_long declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3617: error: Public symbol st
ring/wait declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3764: error: Public symbol st
ring/wallpaper_binding_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2825: error: Public symbol st
ring/wday1_date1_time1_wday2_date2_time2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2826: error: Public symbol st
ring/wday1_date1_wday2_date2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2829: error: Public symbol st
ring/wday_date declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3467: error: Public symbol st
ring/web_user_agent declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3468: error: Public entry ide
ntifier 0x104031b entry index is larger than available symbols (index 795, total
symbols 138).
C:\android\apktool\framework\res\values\public.xml:3468: error: Public symbol st
ring/web_user_agent_target_content declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3799: error: Public symbol st
ring/websearch declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3578: error: Public symbol st
ring/week declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3579: error: Public symbol st
ring/weeks declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3601: error: Public symbol st
ring/whichApplication declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3658: error: Public symbol st
ring/wifi_available_sign_in declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3659: error: Public symbol st
ring/wifi_available_sign_in_detailed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3663: error: Public symbol st
ring/wifi_p2p_dialog_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3670: error: Public symbol st
ring/wifi_p2p_enabled_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3669: error: Public symbol st
ring/wifi_p2p_enabled_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3665: error: Public symbol st
ring/wifi_p2p_failed_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3666: error: Public symbol st
ring/wifi_p2p_pbc_go_negotiation_request_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3668: error: Public symbol st
ring/wifi_p2p_pin_display_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3667: error: Public symbol st
ring/wifi_p2p_pin_go_negotiation_request_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3664: error: Public symbol st
ring/wifi_p2p_turnon_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3662: error: Public symbol st
ring/wifi_tether_configure_ssid_default declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3660: error: Public symbol st
ring/wifi_watchdog_network_disabled declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3661: error: Public symbol st
ring/wifi_watchdog_network_disabled_detailed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3580: error: Public symbol st
ring/year declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3581: error: Public symbol st
ring/years declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutExce
ption: could not exec command: [aapt, p, -F, C:\Users\ERIC\AppData\Local\Temp\AP
KTOOL1712204641328360105.tmp, -x, -S, C:\android\apktool\framework\res, -M, C:\a
ndroid\apktool\framework\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\ERIC\AppData\Local\Temp\APKTOOL1712204641328360105.tmp, -x, -S, C:\android\
apktool\framework\res, -M, C:\android\apktool\framework\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
ericmaxman said:
Sorry to necro again, but I'm trying to edit the framework-res.apk to add virtual buttons, but everytime I try to recompile the apk, I kept getting this error
C:\android\apktool\framework\res\values\public.xml:2971: error: Public symbol st
ring/shutdown_confirm_question declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2969: error: Public symbol st
ring/shutdown_progress declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2961: error: Public symbol st
ring/silent_mode declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2968: error: Public symbol st
ring/silent_mode_ring declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2966: error: Public symbol st
ring/silent_mode_silent declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2967: error: Public symbol st
ring/silent_mode_vibrate declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3681: error: Public symbol st
ring/sim_added_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3680: error: Public symbol st
ring/sim_added_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3679: error: Public symbol st
ring/sim_done_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3678: error: Public symbol st
ring/sim_removed_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3677: error: Public symbol st
ring/sim_removed_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3682: error: Public symbol st
ring/sim_restart_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3389: error: Public symbol st
ring/sipAddressTypeCustom declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3390: error: Public symbol st
ring/sipAddressTypeHome declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3392: error: Public symbol st
ring/sipAddressTypeOther declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3391: error: Public symbol st
ring/sipAddressTypeWork declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3781: error: Public symbol st
ring/skip_button_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3672: error: Public symbol st
ring/sms_control_default_app_name declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3674: error: Public symbol st
ring/sms_control_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3676: error: Public symbol st
ring/sms_control_no declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3673: error: Public symbol st
ring/sms_control_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3675: error: Public symbol st
ring/sms_control_yes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3624: error: Public symbol st
ring/smv_application declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3625: error: Public symbol st
ring/smv_process declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3881: error: Public symbol st
ring/ssl_certificate declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3882: error: Public symbol st
ring/ssl_certificate_is_valid declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3898: error: Public symbol st
ring/status_bar_device_locked declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3903: error: Public symbol st
ring/storage_external_usb declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3863: error: Public symbol st
ring/storage_internal declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3914: error: Public symbol st
ring/storage_phone declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3864: error: Public symbol st
ring/storage_sd_card declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3865: error: Public symbol st
ring/storage_usb declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3774: error: Public symbol st
ring/submit declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3835: error: Public symbol st
ring/switch_off declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3834: error: Public symbol st
ring/switch_on declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3762: error: Public symbol st
ring/sync_binding_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3809: error: Public symbol st
ring/sync_do_nothing declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3807: error: Public symbol st
ring/sync_really_delete declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3805: error: Public symbol st
ring/sync_too_many_deletes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3806: error: Public symbol st
ring/sync_too_many_deletes_desc declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3808: error: Public symbol st
ring/sync_undo_deletes declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2862: error: Public symbol st
ring/terabyteShort declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3778: error: Public symbol st
ring/tethered_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3777: error: Public symbol st
ring/tethered_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3591: error: Public symbol st
ring/textSelectionCABTitle declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3552: error: Public symbol st
ring/text_copied declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3783: error: Public symbol st
ring/throttle_warning_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3782: error: Public symbol st
ring/throttle_warning_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3785: error: Public symbol st
ring/throttled_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3784: error: Public symbol st
ring/throttled_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2815: error: Public symbol st
ring/time1_time2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3821: error: Public symbol st
ring/time_picker_decrement_hour_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3819: error: Public symbol st
ring/time_picker_decrement_minute_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3823: error: Public symbol st
ring/time_picker_decrement_set_am_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3683: error: Public symbol st
ring/time_picker_dialog_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3820: error: Public symbol st
ring/time_picker_increment_hour_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3818: error: Public symbol st
ring/time_picker_increment_minute_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3822: error: Public symbol st
ring/time_picker_increment_set_pm_button declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2857: error: Public symbol st
ring/time_picker_separator declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2830: error: Public symbol st
ring/time_wday declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2828: error: Public symbol st
ring/time_wday_date declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3837: error: Public symbol st
ring/togglebutton_not_pressed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3836: error: Public symbol st
ring/togglebutton_pressed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2963: error: Public symbol st
ring/turn_off_radio declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2962: error: Public symbol st
ring/turn_on_radio declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3743: error: Public symbol st
ring/tutorial_double_tap_to_zoom_message_short declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3771: error: Public symbol st
ring/upload_file declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3713: error: Public symbol st
ring/usb_accessory_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3712: error: Public symbol st
ring/usb_cd_installer_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3711: error: Public symbol st
ring/usb_charging_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3910: error: Public symbol st
ring/usb_mode_bypass_all declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3907: error: Public symbol st
ring/usb_mode_bypass_at declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3906: error: Public symbol st
ring/usb_mode_bypass_ets declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3909: error: Public symbol st
ring/usb_mode_bypass_gps declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3905: error: Public symbol st
ring/usb_mode_bypass_modem declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3908: error: Public symbol st
ring/usb_mode_bypass_pcv declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3708: error: Public symbol st
ring/usb_mtp_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3714: error: Public symbol st
ring/usb_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3709: error: Public symbol st
ring/usb_ptp_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3691: error: Public symbol st
ring/usb_storage_activity_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3694: error: Public symbol st
ring/usb_storage_button_mount declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3695: error: Public symbol st
ring/usb_storage_error_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3693: error: Public symbol st
ring/usb_storage_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3697: error: Public symbol st
ring/usb_storage_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3696: error: Public symbol st
ring/usb_storage_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3702: error: Public symbol st
ring/usb_storage_stop_button_mount declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3703: error: Public symbol st
ring/usb_storage_stop_error_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3701: error: Public symbol st
ring/usb_storage_stop_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3699: error: Public symbol st
ring/usb_storage_stop_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3698: error: Public symbol st
ring/usb_storage_stop_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3700: error: Public symbol st
ring/usb_storage_stop_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3692: error: Public symbol st
ring/usb_storage_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3710: error: Public symbol st
ring/usb_ums_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3888: error: Public symbol st
ring/validity_period declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3645: error: Public symbol st
ring/volume_alarm declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3644: error: Public symbol st
ring/volume_bluetooth_call declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3643: error: Public symbol st
ring/volume_call declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3648: error: Public symbol st
ring/volume_icon_description_bluetooth declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3650: error: Public symbol st
ring/volume_icon_description_incall declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3651: error: Public symbol st
ring/volume_icon_description_media declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3652: error: Public symbol st
ring/volume_icon_description_notification declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3649: error: Public symbol st
ring/volume_icon_description_ringer declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3640: error: Public symbol st
ring/volume_music declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3641: error: Public symbol st
ring/volume_music_hint_playing_through_bluetooth declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3642: error: Public symbol st
ring/volume_music_hint_silent_ringtone_selected declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3646: error: Public symbol st
ring/volume_notification declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3639: error: Public symbol st
ring/volume_ringtone declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3647: error: Public symbol st
ring/volume_unknown declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3769: error: Public symbol st
ring/vpn_text declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3770: error: Public symbol st
ring/vpn_text_long declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3767: error: Public symbol st
ring/vpn_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3768: error: Public symbol st
ring/vpn_title_long declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3617: error: Public symbol st
ring/wait declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3764: error: Public symbol st
ring/wallpaper_binding_label declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2825: error: Public symbol st
ring/wday1_date1_time1_wday2_date2_time2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2826: error: Public symbol st
ring/wday1_date1_wday2_date2 declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:2829: error: Public symbol st
ring/wday_date declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3467: error: Public symbol st
ring/web_user_agent declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3468: error: Public entry ide
ntifier 0x104031b entry index is larger than available symbols (index 795, total
symbols 138).
C:\android\apktool\framework\res\values\public.xml:3468: error: Public symbol st
ring/web_user_agent_target_content declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3799: error: Public symbol st
ring/websearch declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3578: error: Public symbol st
ring/week declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3579: error: Public symbol st
ring/weeks declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3601: error: Public symbol st
ring/whichApplication declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3658: error: Public symbol st
ring/wifi_available_sign_in declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3659: error: Public symbol st
ring/wifi_available_sign_in_detailed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3663: error: Public symbol st
ring/wifi_p2p_dialog_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3670: error: Public symbol st
ring/wifi_p2p_enabled_notification_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3669: error: Public symbol st
ring/wifi_p2p_enabled_notification_title declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3665: error: Public symbol st
ring/wifi_p2p_failed_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3666: error: Public symbol st
ring/wifi_p2p_pbc_go_negotiation_request_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3668: error: Public symbol st
ring/wifi_p2p_pin_display_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3667: error: Public symbol st
ring/wifi_p2p_pin_go_negotiation_request_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3664: error: Public symbol st
ring/wifi_p2p_turnon_message declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3662: error: Public symbol st
ring/wifi_tether_configure_ssid_default declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3660: error: Public symbol st
ring/wifi_watchdog_network_disabled declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3661: error: Public symbol st
ring/wifi_watchdog_network_disabled_detailed declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3580: error: Public symbol st
ring/year declared here is not defined.
C:\android\apktool\framework\res\values\public.xml:3581: error: Public symbol st
ring/years declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutExce
ption: could not exec command: [aapt, p, -F, C:\Users\ERIC\AppData\Local\Temp\AP
KTOOL1712204641328360105.tmp, -x, -S, C:\android\apktool\framework\res, -M, C:\a
ndroid\apktool\framework\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\ERIC\AppData\Local\Temp\APKTOOL1712204641328360105.tmp, -x, -S, C:\android\
apktool\framework\res, -M, C:\android\apktool\framework\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
Click to expand...
Click to collapse
What this is saying is that your command is incorrect. Are you using a program or manually executing?
Sent from my SPH-D710 using xda premium
Stryke_the_Orc said:
What this is saying is that your command is incorrect. Are you using a program or manually executing?
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
I'm using apktool via command prompt.
Weird, try using another program. I prefer to use the team rejectz quick fix, its one of the easiest and fastest I've used:beer:
Sent from my SPH-D710 using xda premium
Stryke_the_Orc said:
Weird, try using another program. I prefer to use the team rejectz quick fix, its one of the easiest and fastest I've used:beer:
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
That worked without a hitch. Thank you sir! Here's what I managed to do
ericmaxman said:
That worked without a hitch. Thank you sir! Here's what I managed to do
Click to expand...
Click to collapse
Awesome
Sent from my SPH-D710 using xda premium
so far i've been editing .apk by decompressing them and compressing them again using winrar and never had an issue.
in a scale of 1 to 10 how wrong is this? xD
PlayGhost2 said:
so far i've been editing .apk by decompressing them and compressing them again using winrar and never had an issue.
in a scale of 1 to 10 how wrong is this? xD
Click to expand...
Click to collapse
If its working for you I wouldn't worry
Sent from my SPH-D710 using xda premium
Mlopik said:
GUIDE
What will you Need:
ApkTool
Java JDK/JRE 32 bit
Terminal knowledge
Brain
Instructions
Extract zip folder to anywhere you choose. E.g: C:/android/apktool extracting the files to 'apktool' folder.
3.Now copy the apk to your Apk Tool folder.
2. Open your terminal
Your terminal will look like this...
C:\users\yourname>
Code:
[COLOR="Black"]cd.. → go back
cd.. android → go to this folder[/COLOR]
(Yes, it contains "..")
So you must be in your folder apktool (E.q: C:/android/apktool>)
3. Installing Framework
Code:
apktool if framework-res.apk
(framework-res.apk is only example.. You can type "apktool if SystemUI.apk",...)
4. Decompiling
Code:
apktool d framework-res.apk framework1
(framework-res.apk is apk which you want to decompile and framework1.. You can type "apktool if SystemUI.apk",...)
Now you can enjoy it!
5. Recompiling/Finished Product
Code:
apktool b framework1 framework-res-new.apk
(framework1 is the folder with your edited files and framework-res-new.apk is your new apk file)
You can't use the new apk... You have to take what you did and add it back to the original apk file to proper signature.
Use something like 7zip, take the 'resources.arcs' file and any other xml files you edited out of the "-new" apk and copy them into Original .apk.
Congratulations! You modded .apk!
Click to expand...
Click to collapse
What is terminal ???
Related
i am trying to edit systemUI from the shogun rom to change text color but i cant decompile with apktool it gives errors then wont build back just alot of errors so i put the resources.arsc file in a stock systemui it decomplied fine i edited it recompiled then put resources.arsc back in my systemui and it worked and text was like i want but now i am missing icons in quicksettings the original icons r there but i have extra setting in quick setting and the icons for those r gone the stock ones r still there can some one pls help
oakieville said:
i am trying to edit systemUI from the shogun rom to change text color but i cant decompile with apktool it gives errors then wont build back just alot of errors so i put the resources.arsc file in a stock systemui it decomplied fine i edited it recompiled then put resources.arsc back in my systemui and it worked and text was like i want but now i am missing icons in quicksettings the original icons r there but i have extra setting in quick setting and the icons for those r gone the stock ones r still there can some one pls help
Click to expand...
Click to collapse
Did you installed the framework files from the shogun rom with apktool?
apktool if framework-res.apk
and
apktool if com.htc.resources.apk
..after that it should work.
Would be easier to help, when you post that errors.
If they are smali related you can decompile it with:
apktool d -s SystemUI.apk
..than it decompiles without the sources - you just need the ressources to edit teh text color, so it should be fine.
j4n87 said:
Did you installed the framework files from the shogun rom with apktool?
apktool if framework-res.apk
and
apktool if com.htc.resources.apk
..after that it should work.
Would be easier to help, when you post that errors.
If they are smali related you can decompile it with:
apktool d -s SystemUI.apk
..than it decompiles without the sources - you just need the ressources to edit teh text color, so it should be fine.
Click to expand...
Click to collapse
Yes I did install framework-res and com.htc.resources and I'm out so don't remember exact error but it was something about some pngs not defined I didn't try apktool d -s but sounds like would prob do when I'm home will try again thank you and if you got an other suggestings pls share thanks
still didnt work
C:\apktool1\SystemUI\res\values\public.xml:311: error: Public symbol drawable/st
at_sys_hac declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:312: error: Public symbol drawable/st
at_sys_headphone_no_mic declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:313: error: Public symbol drawable/st
at_sys_headphones declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:314: error: Public symbol drawable/st
at_sys_no_sim declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:315: error: Public symbol drawable/st
at_sys_r_5signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:316: error: Public symbol drawable/st
at_sys_r_5signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:317: error: Public symbol drawable/st
at_sys_r_5signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:318: error: Public symbol drawable/st
at_sys_r_5signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:319: error: Public symbol drawable/st
at_sys_r_5signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:320: error: Public symbol drawable/st
at_sys_r_5signal_5 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:321: error: Public symbol drawable/st
at_sys_r_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:322: error: Public symbol drawable/st
at_sys_r_signal_0_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:323: error: Public symbol drawable/st
at_sys_r_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:324: error: Public symbol drawable/st
at_sys_r_signal_1_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:325: error: Public symbol drawable/st
at_sys_r_signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:326: error: Public symbol drawable/st
at_sys_r_signal_2_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:327: error: Public symbol drawable/st
at_sys_r_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:328: error: Public symbol drawable/st
at_sys_r_signal_3_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:329: error: Public symbol drawable/st
at_sys_r_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:330: error: Public symbol drawable/st
at_sys_r_signal_4_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:331: error: Public symbol drawable/st
at_sys_ringer_silent declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:332: error: Public symbol drawable/st
at_sys_ringer_vibrate declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:333: error: Public symbol drawable/st
at_sys_roaming_cdma_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:65: error: Public symbol drawable/sta
t_sys_roaming_cdma_flash declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:334: error: Public symbol drawable/st
at_sys_roaming_cdma_flash_anim0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:335: error: Public symbol drawable/st
at_sys_roaming_cdma_flash_anim1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:336: error: Public symbol drawable/st
at_sys_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:337: error: Public symbol drawable/st
at_sys_signal_0_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:338: error: Public symbol drawable/st
at_sys_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:339: error: Public symbol drawable/st
at_sys_signal_1_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:340: error: Public symbol drawable/st
at_sys_signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:341: error: Public symbol drawable/st
at_sys_signal_2_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:342: error: Public symbol drawable/st
at_sys_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:343: error: Public symbol drawable/st
at_sys_signal_3_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:344: error: Public symbol drawable/st
at_sys_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:345: error: Public symbol drawable/st
at_sys_signal_4_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:346: error: Public symbol drawable/st
at_sys_signal_flightmode declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:347: error: Public symbol drawable/st
at_sys_signal_null declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:348: error: Public symbol drawable/st
at_sys_tty declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:349: error: Public symbol drawable/st
at_sys_tty_mode declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:350: error: Public symbol drawable/st
at_sys_wifi_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:351: error: Public symbol drawable/st
at_sys_wifi_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:352: error: Public symbol drawable/st
at_sys_wifi_signal_1_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:353: error: Public symbol drawable/st
at_sys_wifi_signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:354: error: Public symbol drawable/st
at_sys_wifi_signal_2_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:355: error: Public symbol drawable/st
at_sys_wifi_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:356: error: Public symbol drawable/st
at_sys_wifi_signal_3_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:357: error: Public symbol drawable/st
at_sys_wifi_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:358: error: Public symbol drawable/st
at_sys_wifi_signal_4_fully declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:359: error: Public symbol drawable/st
at_sys_wimax_new_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:360: error: Public symbol drawable/st
at_sys_wimax_new_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:361: error: Public symbol drawable/st
at_sys_wimax_new_signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:362: error: Public symbol drawable/st
at_sys_wimax_new_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:363: error: Public symbol drawable/st
at_sys_wimax_new_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:364: error: Public symbol drawable/st
at_sys_wimax_new_signal_5 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:365: error: Public symbol drawable/st
at_sys_wimax_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:366: error: Public symbol drawable/st
at_sys_wimax_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:367: error: Public symbol drawable/st
at_sys_wimax_signal_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:368: error: Public symbol drawable/st
at_sys_wimax_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:369: error: Public symbol drawable/st
at_sys_wimax_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:370: error: Public symbol drawable/st
at_sys_wx_new_signal_0 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:371: error: Public symbol drawable/st
at_sys_wx_new_signal_1 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:372: error: Public symbol drawable/st
at_sys_wx_new_signal_2 declared here is nException in thread "main" brut.androli
b.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p
, -F, C:\Users\OAKIEV~1\AppData\Local\Temp\APKTOOL1836210016910196791.tmp, -I, C
:\Users\oakieville\apktool\framework\1.apk, -I, C:\Users\oakieville\apktool\fram
ework\2.apk, -S, C:\apktool1\SystemUI\res, -M, C:\apktool1\SystemUI\AndroidManif
est.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:174)
at brut.apktool.Main.main(Main.java:59)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\OAKIEV~1\AppData\Local\Temp\APKTOOL1836210016910196791.tmp, -I, C:\Users\oa
kieville\apktool\framework\1.apk, -I, C:\Users\oakieville\apktool\framework\2.ap
k, -S, C:\apktool1\SystemUI\res, -M, C:\apktool1\SystemUI\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
ot defined.
C:\apktool1\SystemUI\res\values\public.xml:373: error: Public symbol drawable/st
at_sys_wx_new_signal_3 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:374: error: Public symbol drawable/st
at_sys_wx_new_signal_4 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:375: error: Public symbol drawable/st
at_sys_wx_new_signal_5 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:376: error: Public symbol drawable/st
atus_bar_app_bg declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:377: error: Public symbol drawable/st
atus_bar_background declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:378: error: Public symbol drawable/st
atus_bar_close_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:379: error: Public symbol drawable/st
atus_bar_close_on_2 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:380: error: Public symbol drawable/st
atus_bar_header_background declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:381: error: Public symbol drawable/st
atus_bar_icon_task_manager declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:382: error: Public symbol drawable/st
atus_bar_icons_tile declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:67: error: Public symbol drawable/sta
tus_bar_item_background declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:383: error: Public symbol drawable/st
atus_bar_item_background_focus declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:384: error: Public symbol drawable/st
atus_bar_item_background_normal declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:385: error: Public symbol drawable/st
atus_bar_item_background_pressed declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:386: error: Public symbol drawable/st
atus_bar_tab_off declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:387: error: Public symbol drawable/st
atus_bar_tab_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:388: error: Public symbol drawable/st
atus_bar_titlebar_2round_rest declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:68: error: Public symbol drawable/sta
tus_bar_titlebar_left declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:389: error: Public symbol drawable/st
atus_bar_titlebar_left_pressed declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:390: error: Public symbol drawable/st
atus_bar_titlebar_left_rest declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:69: error: Public symbol drawable/sta
tus_bar_titlebar_right declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:391: error: Public symbol drawable/st
atus_bar_titlebar_right_pressed declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:392: error: Public symbol drawable/st
atus_bar_titlebar_right_rest declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:393: error: Public symbol drawable/st
atusbar_background declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:394: error: Public symbol drawable/st
atusbar_background_opaque declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:395: error: Public symbol drawable/st
atusbar_background_transparent declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:396: error: Public symbol drawable/sy
m_gpsone_0_sprint declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:397: error: Public symbol drawable/sy
m_gpsone_0_vzw declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:398: error: Public symbol drawable/sy
m_gpsone_3_sprint declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:399: error: Public symbol drawable/sy
m_gpsone_3_vzw declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:70: error: Public symbol drawable/sym
_gpsone_anim_sprint declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:71: error: Public symbol drawable/sym
_gpsone_anim_vzw declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:400: error: Public symbol drawable/sy
m_gpsone_none declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:401: error: Public symbol drawable/sy
s_data_connected_h_plus_capability declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:72: error: Public symbol drawable/tas
k_manager_selector declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:402: error: Public symbol drawable/ti
tle_bar_portrait declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:403: error: Public symbol drawable/ti
tle_bar_shadow declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:179: error: Public symbol drawable/wi
dget_adb_off declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:178: error: Public symbol drawable/wi
dget_adb_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:160: error: Public symbol drawable/wi
dget_flashlight_off declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:159: error: Public symbol drawable/wi
dget_flashlight_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:404: error: Public symbol drawable/wi
dget_icon_auto_rotate declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:405: error: Public symbol drawable/wi
dget_icon_bluetooth declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:406: error: Public symbol drawable/wi
dget_icon_brightness declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:407: error: Public symbol drawable/wi
dget_icon_datastrip declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:408: error: Public symbol drawable/wi
dget_icon_gps_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:409: error: Public symbol drawable/wi
dget_icon_hotspot declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:410: error: Public symbol drawable/wi
dget_icon_mobile_network declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:175: error: Public symbol drawable/wi
dget_icon_reboot declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:411: error: Public symbol drawable/wi
dget_icon_settings declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:181: error: Public symbol drawable/wi
dget_icon_silent_off declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:176: error: Public symbol drawable/wi
dget_icon_silent_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:412: error: Public symbol drawable/wi
dget_icon_sound declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:170: error: Public symbol drawable/wi
dget_icon_sound_alarm declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:172: error: Public symbol drawable/wi
dget_icon_sound_bluetooth declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:174: error: Public symbol drawable/wi
dget_icon_sound_dtmf declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:169: error: Public symbol drawable/wi
dget_icon_sound_media declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:171: error: Public symbol drawable/wi
dget_icon_sound_notifications declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:173: error: Public symbol drawable/wi
dget_icon_sound_ringtone declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:168: error: Public symbol drawable/wi
dget_icon_sound_settings declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:167: error: Public symbol drawable/wi
dget_icon_sound_voice declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:413: error: Public symbol drawable/wi
dget_icon_timeout declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:182: error: Public symbol drawable/wi
dget_icon_vibrate_off declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:177: error: Public symbol drawable/wi
dget_icon_vibrate_on declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:166: error: Public symbol drawable/wi
dget_icon_volume declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:414: error: Public symbol drawable/wi
dget_icon_wifi declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:73: error: Public symbol drawable/wid
get_icon_wimax_4g declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:74: error: Public symbol drawable/wid
get_icon_wimax_wb declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:75: error: Public symbol drawable/wid
get_icon_wimax_wx declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:180: error: Public symbol drawable/wi
dget_wifi_tether declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:420: error: Public entry identifier 0
x7f02019e entry index is larger than available symbols (index 414, total symbols
69).
C:\apktool1\SystemUI\res\values\public.xml:420: error: Public symbol drawable/zz
_stat_sys_r_signal_5 declared here is not defined.
C:\apktool1\SystemUI\res\values\public.xml:421: error: Public entry identifier 0
x7f02019f entry index is larger than available symbols (index 415, total symbols
69).
C:\apktool1\SystemUI\res\values\public.xml:421: error: Public symbol drawable/zz
_stat_sys_signal_5 declared here is not defined.
C:\apktool1>
What I usually do when changing pngs on systemui.apk is extract it with 7zip and then navigate to the folder I would change pngs and than open systemUI.apk with 7zip and just drag and drop to the right location... this work for me but remember I just change pngs never edited anything else...
1107963 said:
What I usually do when changing pngs on systemui.apk is extract it with 7zip and then navigate to the folder I would change pngs and than open systemUI.apk with 7zip and just drag and drop to the right location... this work for me but remember I just change pngs never edited anything else...
Click to expand...
Click to collapse
png are easy i use 7zip to but but i dont extract it thats a waste of time just open with with 7zip and drag and drop is easier
sorry guys j4n87 was rite i had wrong framework-res installed im doing this on shogun rom but shogun has project blue theme also and i got framework-res from rom and theme mixed up got it now thanks j4n87
I am hoping someone has already modded the Rosie.apk from Fresh 4.2.0 ROM for 4x5. If you have the file, please upload and post a link. I am trying to do it myself, even though I've never modded anything for Android before. I'm trying to learn with the great resources here on XDA, but I know I've got some ways to go before I'll be able to do this.
Could someone knowledgable please advise me
I think I managed to get a third of the way through the process of modding Rosie for 4x5 launcher screens, but I'm kind of stuck now. I successfully used M10tools to change cell padding and cell number. Now I'm trying to decompile Rosie.apk with APK Multi-Tools and I haven't been able to make it work. It seems that another dependency file is required to decompile Rosie, but I don't know what file? I tried "com.htc.resources.apk" and "framework-res.apk", but they don't work.
What is the dependency file I need to decompile Rosie from FreshROM v4.2.0? Or am I doing something wrong? Please, I would appreciate any advise on this.
I'm not real familiar with sense 3.0, and it's been a LONG time since I've used sense,.....but it seems like fusion.apk may be what else you need. Unless I'm wrong, in which case fusion.apk is for lockscreen.
Good luck.
Sent from my PC36100 using xda premium
scottspa74 said:
I'm not real familiar with sense 3.0, and it's been a LONG time since I've used sense,.....but it seems like fusion.apk may be what else you need. Unless I'm wrong, in which case fusion.apk is for lockscreen.
Good luck.
Sent from my PC36100 using xda premium
Click to expand...
Click to collapse
Thanks, I did finally manage to decompile Rosie.apk. The problem was with my path settings. The problem now is that I cant recompile Rosie. I get an error each time. I've already installed framework files using "java -jar apktool.jar if framework-res.apk", etc. In searching the forums I found a number of others with the same type of error compiling, but none of the solutions worked. I even tried 3 different versions of the APK Multi-tools.
I've got the modifications to Rosie complete, all I need now is a successful recompile so I can use it.
---edit--- this is the error message i get
Building Apk
"An Error Occured, Please Check The Log (option 24)"
Press any key to continue . . .
Click to expand...
Click to collapse
Here is the logfile:
2012-04-08 00:33:55 (51.3 KB/s) - `apkver.txt' saved [152/152]
A subdirectory or file projects already exists.
A subdirectory or file place-apk-here-for-modding already exists.
A subdirectory or file place-ogg-here already exists.
A subdirectory or file place-apk-here-to-batch-optimize already exists.
A subdirectory or file place-apk-here-for-signing already exists.
java version "1.6.0_31"
Java(TM) SE Runtime Environment (build 1.6.0_31-b05)
Java HotSpot(TM) Client VM (build 20.6-b01, mixed mode, sharing)
I: Checking whether sources has changed...
I: Checking whether resources has changed...
I: Building resources...
libpng error: Read Error
ERROR: Failure processing PNG image C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\drawable-hdpi\all_apps_divider.9.png
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:87: error: Public symbol drawable/activity_title_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:88: error: Public symbol drawable/alarm declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:21: error: Public symbol drawable/all_apps_divider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:67: error: Public symbol drawable/bb_btn_left declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:68: error: Public symbol drawable/bb_btn_left_src_down declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:69: error: Public symbol drawable/bb_btn_left_src_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:70: error: Public symbol drawable/bb_btn_middle declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:71: error: Public symbol drawable/bb_btn_middle_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:72: error: Public symbol drawable/bb_btn_right declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:73: error: Public symbol drawable/bb_btn_right_personalize_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:74: error: Public symbol drawable/bb_btn_right_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:22: error: Public symbol drawable/bg_appwidget_error declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:23: error: Public symbol drawable/bottom_divider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:24: error: Public symbol drawable/box_launcher_bottom declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:25: error: Public symbol drawable/box_launcher_top declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:26: error: Public symbol drawable/box_launcher_top_normal declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:27: error: Public symbol drawable/box_launcher_top_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:141: error: Public symbol drawable/btn_left_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:142: error: Public symbol drawable/btn_left_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:134: error: Public symbol drawable/btn_left_rest_big declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:135: error: Public symbol drawable/btn_left_setting_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:143: error: Public symbol drawable/btn_middle_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:144: error: Public symbol drawable/btn_middle_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:28: error: Public symbol drawable/btn_navbar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:145: error: Public symbol drawable/btn_right_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:136: error: Public symbol drawable/btn_right_remove_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:146: error: Public symbol drawable/btn_right_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:137: error: Public symbol drawable/btn_right_rest_big declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:29: error: Public symbol drawable/bubble_tip declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:30: error: Public symbol drawable/cell_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:31: error: Public symbol drawable/close_search declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:32: error: Public symbol drawable/common_download_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:33: error: Public symbol drawable/common_download_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:34: error: Public symbol drawable/common_inputfield declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:89: error: Public symbol drawable/common_mainnav_scroller1 declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:147: error: Public symbol drawable/common_mainnav_scroller1_l declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:148: error: Public symbol drawable/common_mainnav_scroller2_l declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:90: error: Public symbol drawable/common_mainnav_scroller3 declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:91: error: Public symbol drawable/common_more declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:92: error: Public symbol drawable/common_title_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:35: error: Public symbol drawable/common_titlebar_sublevel_static declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:36: error: Public symbol drawable/common_titlebar_sublevel_static_middle declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:93: error: Public symbol drawable/con_trash_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:94: error: Public symbol drawable/con_trash_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:95: error: Public symbol drawable/default_scene_preview declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:96: error: Public symbol drawable/delete_select declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:37: error: Public symbol drawable/edit_delet_icon declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:38: error: Public symbol drawable/edit_setting_icon declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:39: error: Public symbol drawable/grid_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:40: error: Public symbol drawable/home_screen declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:97: error: Public symbol drawable/ic_close_search declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:98: error: Public symbol drawable/ic_close_search_disable declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:99: error: Public symbol drawable/ic_close_search_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:41: error: Public symbol drawable/ic_launcher_empty declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:42: error: Public symbol drawable/ic_launcher_htc_widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:43: error: Public symbol drawable/ic_rosie_home declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:100: error: Public symbol drawable/ic_search_widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:101: error: Public symbol drawable/icon_add_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:102: error: Public symbol drawable/icon_add_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:103: error: Public symbol drawable/icon_all_down_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:104: error: Public symbol drawable/icon_all_down_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:105: error: Public symbol drawable/icon_all_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:106: error: Public symbol drawable/icon_all_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:107: error: Public symbol drawable/icon_htc_logo declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:108: error: Public symbol drawable/icon_menu_3d_panel declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:109: error: Public symbol drawable/icon_menu_all_programs declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:110: error: Public symbol drawable/icon_menu_notifications declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:111: error: Public symbol drawable/icon_menu_set_ringtone declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:112: error: Public symbol drawable/icon_menu_theme declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:113: error: Public symbol drawable/icon_menu_wallpaper declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:114: error: Public symbol drawable/icon_p_phone_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:115: error: Public symbol drawable/icon_p_phone_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:78: error: Public symbol drawable/icon_phone_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:79: error: Public symbol drawable/icon_phone_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:116: error: Public symbol drawable/icon_setting_disable declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:117: error: Public symbol drawable/icon_setting_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:118: error: Public symbol drawable/icon_setting_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:80: error: Public symbol drawable/l_btn_remove_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:81: error: Public symbol drawable/l_icon_add_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:82: error: Public symbol drawable/l_icon_add_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:83: error: Public symbol drawable/l_icon_all_down_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:84: error: Public symbol drawable/l_icon_all_down_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:85: error: Public symbol drawable/l_icon_all_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:86: error: Public symbol drawable/l_icon_all_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:44: error: Public symbol drawable/list_item_right_btn declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:45: error: Public symbol drawable/list_item_right_btn_newapp declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:46: error: Public symbol drawable/list_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:47: error: Public symbol drawable/lockscreen declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:48: error: Public symbol drawable/message_no_arrow declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:49: error: Public symbol drawable/message_port_bottom declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:119: error: Public symbol drawable/notification_sound declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:50: error: Public symbol drawable/panel_navbar_button_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:51: error: Public symbol drawable/panel_navbar_button_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:52: error: Public symbol drawable/panel_navbar_button_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:138: error: Public symbol drawable/personalize_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:139: error: Public symbol drawable/personalize_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:53: error: Public symbol drawable/placeholder_google declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:120: error: Public symbol drawable/rearrange declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:121: error: Public symbol drawable/ringtone declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:122: error: Public symbol drawable/rosie_common_divider_items declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:54: error: Public symbol drawable/rosie_common_divider_items_scene declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:55: error: Public symbol drawable/rosie_common_sectiondivider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:75: error: Public symbol drawable/rosie_delete_zone_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:76: error: Public symbol drawable/rosie_drag_menu_left_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:77: error: Public symbol drawable/rosie_drag_menu_right_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:56: error: Public symbol drawable/rosie_ic_launcher_gallery declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:123: error: Public symbol drawable/rosie_indicator_left declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:124: error: Public symbol drawable/rosie_indicator_right declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:125: error: Public symbol drawable/scene declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:140: error: Public symbol drawable/scenes_picker_list_clean_slate declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:126: error: Public symbol drawable/scenes_picker_sense declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:127: error: Public symbol drawable/search_floater declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:57: error: Public symbol drawable/settings_icon_application declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:58: error: Public symbol drawable/shortcut_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:128: error: Public symbol drawable/skin declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:129: error: Public symbol drawable/sound_set declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:59: error: Public symbol drawable/status_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:60: error: Public symbol drawable/textfield_searchwidget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:61: error: Public symbol drawable/textfield_searchwidget_default declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:62: error: Public symbol drawable/textfield_searchwidget_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:63: error: Public symbol drawable/textfield_searchwidget_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:130: error: Public symbol drawable/thumbnail_panel declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:64: error: Public symbol drawable/touch_flo declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:131: error: Public symbol drawable/wallpaper declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:132: error: Public symbol drawable/wallpaper_shadow declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:133: error: Public symbol drawable/widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:65: error: Public symbol drawable/widget_icon_htc_gallery declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:66: error: Public symbol drawable/widget_icon_photo declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\DOCUME~1\Dennis\LOCALS~1\Temp\APKTOOL2782216268664823213.tmp, -I, C:\Documents and Settings\Dennis\apktool\framework\1.apk, -I, C:\Documents and Settings\Dennis\apktool\framework\2.apk, -S, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res, -M, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\DOCUME~1\Dennis\LOCALS~1\Temp\APKTOOL2782216268664823213.tmp, -I, C:\Documents and Settings\Dennis\apktool\framework\1.apk, -I, C:\Documents and Settings\Dennis\apktool\framework\2.apk, -S, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res, -M, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
Click to expand...
Click to collapse
And just for clarification, I'm using the latest aapt.exe file and still getting this error.
I got Rosie from Fresh420 ROM, decompiled it, modified for 4x5 launcher screens, and now I can't recompile it. Even recompiling an unmodified Rosie won't work.
I am using the latest aapt.exe, I have installed framework files using "java -jar apktool.jar if framework-res.apk", etc. I have tried recompiling with versions 1.0, 1.01, and 1.02 of APK Multi-tools, all give same error. I am stuck, could someone knowledgeable please help me out. This is my first time compiling an APK but I have done my research and feel I understand the basics pretty well. Any advice would be very much appreciated.
The error message i receive:
Building Apk
"An Error Occured, Please Check The Log (option 24)"
Press any key to continue . . .
Click to expand...
Click to collapse
The logfile:
java version "1.6.0_31"
Java(TM) SE Runtime Environment (build 1.6.0_31-b05)
Java HotSpot(TM) Client VM (build 20.6-b01, mixed mode, sharing)
I: Checking whether sources has changed...
I: Checking whether resources has changed...
I: Building resources...
libpng error: Read Error
ERROR: Failure processing PNG image C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\drawable-hdpi\all_apps_divider.9.png
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:87: error: Public symbol drawable/activity_title_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:88: error: Public symbol drawable/alarm declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:21: error: Public symbol drawable/all_apps_divider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:67: error: Public symbol drawable/bb_btn_left declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:68: error: Public symbol drawable/bb_btn_left_src_down declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:69: error: Public symbol drawable/bb_btn_left_src_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:70: error: Public symbol drawable/bb_btn_middle declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:71: error: Public symbol drawable/bb_btn_middle_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:72: error: Public symbol drawable/bb_btn_right declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:73: error: Public symbol drawable/bb_btn_right_personalize_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:74: error: Public symbol drawable/bb_btn_right_src declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:22: error: Public symbol drawable/bg_appwidget_error declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:23: error: Public symbol drawable/bottom_divider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:24: error: Public symbol drawable/box_launcher_bottom declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:25: error: Public symbol drawable/box_launcher_top declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:26: error: Public symbol drawable/box_launcher_top_normal declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:27: error: Public symbol drawable/box_launcher_top_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:141 : error: Public symbol drawable/btn_left_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:142 : error: Public symbol drawable/btn_left_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:134 : error: Public symbol drawable/btn_left_rest_big declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:135 : error: Public symbol drawable/btn_left_setting_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:143 : error: Public symbol drawable/btn_middle_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:144 : error: Public symbol drawable/btn_middle_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:28: error: Public symbol drawable/btn_navbar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:145 : error: Public symbol drawable/btn_right_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:136 : error: Public symbol drawable/btn_right_remove_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:146 : error: Public symbol drawable/btn_right_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:137 : error: Public symbol drawable/btn_right_rest_big declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:29: error: Public symbol drawable/bubble_tip declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:30: error: Public symbol drawable/cell_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:31: error: Public symbol drawable/close_search declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:32: error: Public symbol drawable/common_download_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:33: error: Public symbol drawable/common_download_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:34: error: Public symbol drawable/common_inputfield declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:89: error: Public symbol drawable/common_mainnav_scroller1 declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:147 : error: Public symbol drawable/common_mainnav_scroller1_l declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:148 : error: Public symbol drawable/common_mainnav_scroller2_l declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:90: error: Public symbol drawable/common_mainnav_scroller3 declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:91: error: Public symbol drawable/common_more declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:92: error: Public symbol drawable/common_title_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:35: error: Public symbol drawable/common_titlebar_sublevel_static declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:36: error: Public symbol drawable/common_titlebar_sublevel_static_middle declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:93: error: Public symbol drawable/con_trash_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:94: error: Public symbol drawable/con_trash_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:95: error: Public symbol drawable/default_scene_preview declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:96: error: Public symbol drawable/delete_select declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:37: error: Public symbol drawable/edit_delet_icon declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:38: error: Public symbol drawable/edit_setting_icon declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:39: error: Public symbol drawable/grid_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:40: error: Public symbol drawable/home_screen declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:97: error: Public symbol drawable/ic_close_search declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:98: error: Public symbol drawable/ic_close_search_disable declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:99: error: Public symbol drawable/ic_close_search_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:41: error: Public symbol drawable/ic_launcher_empty declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:42: error: Public symbol drawable/ic_launcher_htc_widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:43: error: Public symbol drawable/ic_rosie_home declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:100 : error: Public symbol drawable/ic_search_widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:101 : error: Public symbol drawable/icon_add_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:102 : error: Public symbol drawable/icon_add_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:103 : error: Public symbol drawable/icon_all_down_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:104 : error: Public symbol drawable/icon_all_down_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:105 : error: Public symbol drawable/icon_all_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:106 : error: Public symbol drawable/icon_all_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:107 : error: Public symbol drawable/icon_htc_logo declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:108 : error: Public symbol drawable/icon_menu_3d_panel declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:109 : error: Public symbol drawable/icon_menu_all_programs declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:110 : error: Public symbol drawable/icon_menu_notifications declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:111 : error: Public symbol drawable/icon_menu_set_ringtone declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:112 : error: Public symbol drawable/icon_menu_theme declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:113 : error: Public symbol drawable/icon_menu_wallpaper declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:114 : error: Public symbol drawable/icon_p_phone_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:115 : error: Public symbol drawable/icon_p_phone_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:78: error: Public symbol drawable/icon_phone_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:79: error: Public symbol drawable/icon_phone_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:116 : error: Public symbol drawable/icon_setting_disable declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:117 : error: Public symbol drawable/icon_setting_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:118 : error: Public symbol drawable/icon_setting_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:80: error: Public symbol drawable/l_btn_remove_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:81: error: Public symbol drawable/l_icon_add_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:82: error: Public symbol drawable/l_icon_add_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:83: error: Public symbol drawable/l_icon_all_down_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:84: error: Public symbol drawable/l_icon_all_down_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:85: error: Public symbol drawable/l_icon_all_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:86: error: Public symbol drawable/l_icon_all_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:44: error: Public symbol drawable/list_item_right_btn declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:45: error: Public symbol drawable/list_item_right_btn_newapp declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:46: error: Public symbol drawable/list_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:47: error: Public symbol drawable/lockscreen declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:48: error: Public symbol drawable/message_no_arrow declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:49: error: Public symbol drawable/message_port_bottom declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:119 : error: Public symbol drawable/notification_sound declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:50: error: Public symbol drawable/panel_navbar_button_press declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:51: error: Public symbol drawable/panel_navbar_button_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:52: error: Public symbol drawable/panel_navbar_button_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:138 : error: Public symbol drawable/personalize_on declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:139 : error: Public symbol drawable/personalize_rest declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:53: error: Public symbol drawable/placeholder_google declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:120 : error: Public symbol drawable/rearrange declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:121 : error: Public symbol drawable/ringtone declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:122 : error: Public symbol drawable/rosie_common_divider_items declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:54: error: Public symbol drawable/rosie_common_divider_items_scene declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:55: error: Public symbol drawable/rosie_common_sectiondivider declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:75: error: Public symbol drawable/rosie_delete_zone_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:76: error: Public symbol drawable/rosie_drag_menu_left_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:77: error: Public symbol drawable/rosie_drag_menu_right_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:56: error: Public symbol drawable/rosie_ic_launcher_gallery declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:123 : error: Public symbol drawable/rosie_indicator_left declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:124 : error: Public symbol drawable/rosie_indicator_right declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:125 : error: Public symbol drawable/scene declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:140 : error: Public symbol drawable/scenes_picker_list_clean_slate declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:126 : error: Public symbol drawable/scenes_picker_sense declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:127 : error: Public symbol drawable/search_floater declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:57: error: Public symbol drawable/settings_icon_application declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:58: error: Public symbol drawable/shortcut_selector declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:128 : error: Public symbol drawable/skin declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:129 : error: Public symbol drawable/sound_set declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:59: error: Public symbol drawable/status_bar declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:60: error: Public symbol drawable/textfield_searchwidget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:61: error: Public symbol drawable/textfield_searchwidget_default declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:62: error: Public symbol drawable/textfield_searchwidget_pressed declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:63: error: Public symbol drawable/textfield_searchwidget_selected declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:130 : error: Public symbol drawable/thumbnail_panel declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:64: error: Public symbol drawable/touch_flo declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:131 : error: Public symbol drawable/wallpaper declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:132 : error: Public symbol drawable/wallpaper_shadow declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:133 : error: Public symbol drawable/widget declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:65: error: Public symbol drawable/widget_icon_htc_gallery declared here is not defined.
C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res\values\public.xml:66: error: Public symbol drawable/widget_icon_photo declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\DOCUME~1\Dennis\LOCALS~1\Temp\APKTOOL2782216268 664823213.tmp, -I, C:\Documents and Settings\Dennis\apktool\framework\1.apk, -I, C:\Documents and Settings\Dennis\apktool\framework\2.apk, -S, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res, -M, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:301)
at brut.androlib.Androlib.buildResources(Androlib.jav a:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\DOCUME~1\Dennis\LOCALS~1\Temp\APKTOOL2782216268 664823213.tmp, -I, C:\Documents and Settings\Dennis\apktool\framework\1.apk, -I, C:\Documents and Settings\Dennis\apktool\framework\2.apk, -S, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\res, -M, C:\android-sdk\APK_Multi-Tools\projects\Rosie.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:191)
... 6 more
Click to expand...
Click to collapse
evo3dtester said:
I got Rosie from Fresh420 ROM, decompiled it, modified for 4x5 launcher screens, and now I can't recompile it. Even recompiling an unmodified Rosie won't work.
I am using the latest aapt.exe, I have installed framework files using "java -jar apktool.jar if framework-res.apk", etc. I have tried recompiling with versions 1.0, 1.01, and 1.02 of APK Multi-tools, all give same error. I am stuck, could someone knowledgeable please help me out. This is my first time compiling an APK but I have done my research and feel I understand the basics pretty well. Any advice would be very much appreciated.
The error message i receive:
The logfile:
Click to expand...
Click to collapse
Before decompiling it get a stock rom, unzip and fine the all_apps_divider.9.png in the res/drawable-hdpi, then upzip yout Rosie.apk and replace your all_apps_divider.9.png with the one from the stock Rosie.apk rezip then decomple. Also follow directions below.
If you are just editing smali files then you can just move the classes.dex file of the one you are compiling with error and unzip the original Rosie.apk place the classes.dex file from the the compiled to the original unzip then rezip it push it and good to go. I have had this same error before. A friend on here taught me this trick only copy modified fies to original and it works.
All_apps_divider.9 is bad in res/drawable and in drawable-hdpi. Either re patch the images or pull known good ones from another Rosie.apk. It seems that this has been going around. I'm assuming thats from Leedroid tweaks? Anyway, that will fix your problem. EDIT* sorry mike didn't see you already answered.
I'm trying to recompile my framework-res.apk.. Once I get this apk recompiled my 4g will be working on my ported rom but i'm getting a weird issue when I recompile this apk it says none of the values in public.xml are defined.. this shocks me because I haven't even touched the public.xml and it matches the base cm9 so idk what the deal is here
This is the error i'm getting
/home/jordan/apktool/frameworkpro/res/values/public.xml:2875: error: Public symbol string/profileNameHome declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2877: error: Public symbol string/profileNameNight declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2876: error: Public symbol string/profileNameSilent declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2874: error: Public symbol string/profileNameWork declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3817: error: Public symbol string/progress_erasing declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3816: error: Public symbol string/progress_unmounting declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3860: error: Public symbol string/radiobutton_not_selected declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3859: error: Public symbol string/radiobutton_selected declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2986: error: Public symbol string/reboot_bootloader declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2987: error: Public symbol string/reboot_bootmenu declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2991: error: Public symbol string/reboot_confirm declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2989: error: Public symbol string/reboot_download declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2988: error: Public symbol string/reboot_fastboot declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2990: error: Public symbol string/reboot_progress declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2984: error: Public symbol string/reboot_reboot declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2985: error: Public symbol string/reboot_recovery declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2982: error: Public symbol string/reboot_system declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2998: error: Public symbol string/recent_tasks_title declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3405: error: Public symbol string/relationTypeAssistant declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3406: error: Public symbol string/relationTypeBrother declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3407: error: Public symbol string/relationTypeChild declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3404: error: Public symbol string/relationTypeCustom declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3408: error: Public symbol string/relationTypeDomesticPartner declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3409: error: Public symbol string/relationTypeFather declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3410: error: Public symbol string/relationTypeFriend declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3411: error: Public symbol string/relationTypeManager declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3412: error: Public symbol string/relationTypeMother declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3413: error: Public symbol string/relationTypeParent declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3414: error: Public symbol string/relationTypePartner declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3415: error: Public symbol string/relationTypeReferredBy declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3416: error: Public symbol string/relationTypeRelative declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3417: error: Public symbol string/relationTypeSister declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3418: error: Public symbol string/relationTypeSpouse declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3611: error: Public symbol string/relative_time declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3618: error: Public symbol string/replace declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3645: error: Public symbol string/report declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3800: error: Public symbol string/reset declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3682: error: Public symbol string/ringtone_default declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3683: error: Public symbol string/ringtone_default_with_actual declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3685: error: Public symbol string/ringtone_picker_title declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3684: error: Public symbol string/ringtone_silent declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3686: error: Public symbol string/ringtone_unknown declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2934: error: Public symbol string/roamingText0 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2935: error: Public symbol string/roamingText1 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2944: error: Public symbol string/roamingText10 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2945: error: Public symbol string/roamingText11 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2946: error: Public symbol string/roamingText12 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2936: error: Public symbol string/roamingText2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2937: error: Public symbol string/roamingText3 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2938: error: Public symbol string/roamingText4 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2939: error: Public symbol string/roamingText5 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2940: error: Public symbol string/roamingText6 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2941: error: Public symbol string/roamingText7 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2942: error: Public symbol string/roamingText8 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2943: error: Public symbol string/roamingText9 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2948: error: Public symbol string/roamingTextAirplaneMode declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2947: error: Public symbol string/roamingTextSearching declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3011: error: Public symbol string/safeMode declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2841: error: Public symbol string/same_month_md1_md2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2833: error: Public symbol string/same_month_md1_time1_md2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2844: error: Public symbol string/same_month_mdy1_mdy2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2837: error: Public symbol string/same_month_mdy1_time1_mdy2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2835: error: Public symbol string/same_month_wday1_md1_time1_wday2_md2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2842: error: Public symbol string/same_month_wday1_md1_wday2_md2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2839: error: Public symbol string/same_month_wday1_mdy1_time1_wday2_mdy2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2840: error: Public symbol string/same_month_wday1_mdy1_wday2_mdy2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2830: error: Public symbol string/same_year_md1_md2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2832: error: Public symbol string/same_year_md1_time1_md2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2843: error: Public symbol string/same_year_mdy1_mdy2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2836: error: Public symbol string/same_year_mdy1_time1_mdy2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2834: error: Public symbol string/same_year_wday1_md1_time1_wday2_md2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2831: error: Public symbol string/same_year_wday1_md1_wday2_md2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2838: error: Public symbol string/same_year_wday1_mdy1_time1_wday2_mdy2_time2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2845: error: Public symbol string/same_year_wday1_mdy1_wday2_mdy2 declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3501: error: Public symbol string/save_password_label declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3576: error: Public symbol string/save_password_message declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3579: error: Public symbol string/save_password_never declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3577: error: Public symbol string/save_password_notnow declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3578: error: Public symbol string/save_password_remember declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3652: error: Public symbol string/screen_compat_mode_hint declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3650: error: Public symbol string/screen_compat_mode_scale declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3651: error: Public symbol string/screen_compat_mode_show declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2980: error: Public symbol string/screen_lock declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3589: error: Public symbol string/searchview_description_clear declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3588: error: Public symbol string/searchview_description_query declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3587: error: Public symbol string/searchview_description_search declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3590: error: Public symbol string/searchview_description_submit declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3591: error: Public symbol string/searchview_description_voice declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3605: error: Public symbol string/second declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3606: error: Public symbol string/seconds declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3700: error: Public symbol string/select_character declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3748: error: Public symbol string/select_input_method declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3667: error: Public symbol string/sendText declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3927: error: Public symbol string/sending declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3918: error: Public symbol string/serial_number declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2927: error: Public symbol string/serviceClassData declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2930: error: Public symbol string/serviceClassDataAsync declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2931: error: Public symbol string/serviceClassDataSync declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2928: error: Public symbol string/serviceClassFAX declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2933: error: Public symbol string/serviceClassPAD declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2932: error: Public symbol string/serviceClassPacket declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2929: error: Public symbol string/serviceClassSMS declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2926: error: Public symbol string/serviceClassVoice declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2886: error: Public symbol string/serviceDisabled declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2884: error: Public symbol string/serviceEnabled declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2885: error: Public symbol string/serviceEnabledFor declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2888: error: Public symbol string/serviceErased declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2915: error: Public symbol string/serviceNotProvisioned declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2887: error: Public symbol string/serviceRegistered declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3504: error: Public symbol string/setup_autofill declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3921: error: Public symbol string/sha1_fingerprint declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3920: error: Public symbol string/sha256_fingerprint declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3824: error: Public symbol string/share declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3924: error: Public symbol string/share_action_provider_share_with declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3873: error: Public symbol string/shareactionprovider_share_with declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:3874: error: Public symbol string/shareactionprovider_share_with_application declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2846: error: Public symbol string/short_format_month declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2996: error: Public symbol string/shutdown_confirm declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2997: error: Public symbol string/shutdown_confirm_question declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2995: error: Public symbol string/shutdown_progress declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2977: error: Public symbol string/silent_mode declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2994: error: Public symbol string/silent_mode_ring declared here is not defined.
/home/jordan/apktool/frameworkpro/res/values/public.xml:2992: error: Public symbol string/silent_mode_silent declared here is not defined.
so on and so forth, it goes on forever.. but as you can see they're all in public.xml...
I also get the same error even when using different versions of apktool. Any help would be appreciated
Sent from my YP-G70 using xda app-developers app
This is not the problem. Please post the complete log which includes everything. The actual problem is stated before all of them
Sent from my GT-S5360 using xda app-developers app
I also get the same error, take a look here i have logged everything http://pastebin.com/h0KuHmvv
Dude check ur png files.. It seems like ur apktool has probz... Can u compile a unchanged franework?
Sent from my GT-S5360 using xda app-developers app
Nope i cant. I tried with 1.3.1, 1.3.2 4.1, 4.2, 4.3 version of apktool and none worked
Use apk multi manager
Sent from my GT-S5360 using xda app-developers app
Nope still getting errors even without modifying anything
Can u decompile and recompile any othr app?? Other than system ones...?
Sent from my GT-S5360 using xda app-developers app
Yes i can
That means the problem is in ur framework
Sent from my GT-S5360 using xda app-developers app
Change the aapt you are using.Use it from the platform tools you downloaded.May work.And for ics based it has a diff method take a look in the forums here.
So I just uninstalled all the tools I had and reinstalled AndroidUtility (becuase it allows you to choose different versions of APKtool to use) and i installed the framework and bam it worked but the only thing is i have some weird bugs when flashing.. but it may be a slight user error i overlooked so i'm gonna check into it tonight before i post more into detail about it..
hell_lock said:
This is not the problem. Please post the complete log which includes everything. The actual problem is stated before all of them
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
& that as the complete log in my terminal
so how is it saying that values arent defined in public.xml isn't the issue? sorry i'm just a lil confused but i'd like to know in case i run into similar issues later on..
Ok i got it working somehow so im ok
rayven18 said:
Ok i got it working somehow so im ok
Click to expand...
Click to collapse
How? What apk are you working on? Have you actually tested the apk yet? I got it to recompile but my settings are in tablet mode even at 240 dpi
Sent from my Nexus S 4G using xda premium
I compiled and decompiled without errors framework-res.apk , com.htc.resources.apk and the Rosie.apk. First of all, im on Windows and i think u are not. I downloaded Apk Manager http://forum.xda-developers.com/showthread.php?t=695701 and followed these tuts http://forum.xda-developers.com/showthread.php?t=1665674 for theming framework-res.apk or any framework and this http://forum.xda-developers.com/showthread.php?t=1664292 for decompiling and editing xml and stuff. The first link is only a guide for theming where u just extract the apk and edit ONLY images, where as the second one is a decompilation where u can edit xml's and smali files. Read the tuts and you will see
EDIT: Yes i tested the apks and they work just fine, ask for help if u dont understand the guide in some part ( u may be in a line where u drag and drop resources.asrc )
rayven18 said:
I compiled and decompiled without errors framework-res.apk , com.htc.resources.apk and the Rosie.apk. First of all, im on Windows and i think u are not. I downloaded Apk Manager http://forum.xda-developers.com/showthread.php?t=695701 and followed these tuts http://forum.xda-developers.com/showthread.php?t=1665674 for theming framework-res.apk or any framework and this http://forum.xda-developers.com/showthread.php?t=1664292 for decompiling and editing xml and stuff. The first link is only a guide for theming where u just extract the apk and edit ONLY images, where as the second one is a decompilation where u can edit xml's and smali files. Read the tuts and you will see
EDIT: Yes i tested the apks and they work just fine, ask for help if u dont understand the guide in some part ( u may be in a line where u drag and drop resources.asrc )
Click to expand...
Click to collapse
Yeah see I'm on Linux, this is the first time I wish I had a windows partition
Sent from my Nexus S 4G using xda premium
I was modding with ninjamorph before using apktool
As I need to edit xml files and it was not able to do it in Ninjamorph
Actually I am trying to make transparent status bar for s5830i
Decompiling went smooth but when I compiled it
I saw this error
Code:
D:\systemui\res\values\public.xml:348: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim83 declared here is not defined.
D:\systemui\res\values\public.xml:349: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim84 declared here is not defined.
D:\systemui\res\values\public.xml:350: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim85 declared here is not defined.
D:\systemui\res\values\public.xml:351: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim86 declared here is not defined.
D:\systemui\res\values\public.xml:352: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim87 declared here is not defined.
D:\systemui\res\values\public.xml:353: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim88 declared here is not defined.
D:\systemui\res\values\public.xml:354: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim89 declared here is not defined.
D:\systemui\res\values\public.xml:355: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim9 declared here is not defined.
D:\systemui\res\values\public.xml:356: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim90 declared here is not defined.
D:\systemui\res\values\public.xml:357: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim91 declared here is not defined.
D:\systemui\res\values\public.xml:358: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim92 declared here is not defined.
D:\systemui\res\values\public.xml:359: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim93 declared here is not defined.
D:\systemui\res\values\public.xml:360: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim94 declared here is not defined.
D:\systemui\res\values\public.xml:361: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim95 declared here is not defined.
D:\systemui\res\values\public.xml:362: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim96 declared here is not defined.
D:\systemui\res\values\public.xml:363: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim97 declared here is not defined.
D:\systemui\res\values\public.xml:364: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim98 declared here is not defined.
D:\systemui\res\values\public.xml:365: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim99 declared here is not defined.
D:\systemui\res\values\public.xml:366: error: Public symbol drawable/stat_sys_ba
ttery_charge_animfull declared here is not defined.
D:\systemui\res\values\public.xml:57: error: Public symbol drawable/stat_sys_bat
tery_full declared here is not defined.
D:\systemui\res\values\public.xml:367: error: Public symbol drawable/stat_sys_ba
ttery_unknown declared here is not defined.
D:\systemui\res\values\public.xml:58: error: Public symbol drawable/stat_sys_dat
a_bluetooth declared here is not defined.
D:\systemui\res\values\public.xml:59: error: Public symbol drawable/stat_sys_dat
a_bluetooth_connected declared here is not defined.
D:\systemui\res\values\public.xml:60: error: Public symbol drawable/stat_sys_dat
a_connected_1x declared here is not defined.
D:\systemui\res\values\public.xml:61: error: Public symbol drawable/stat_sys_dat
a_connected_3g declared here is not defined.
D:\systemui\res\values\public.xml:62: error: Public symbol drawable/stat_sys_dat
a_connected_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:63: error: Public symbol drawable/stat_sys_dat
a_connected_4g declared here is not defined.
D:\systemui\res\values\public.xml:64: error: Public symbol drawable/stat_sys_dat
a_connected_e declared here is not defined.
D:\systemui\res\values\public.xml:65: error: Public symbol drawable/stat_sys_dat
a_connected_g declared here is not defined.
D:\systemui\res\values\public.xml:66: error: Public symbol drawable/stat_sys_dat
a_connected_h declared here is not defined.
D:\systemui\res\values\public.xml:67: error: Public symbol drawable/stat_sys_dat
a_fully_connected_1x declared here is not defined.
D:\systemui\res\values\public.xml:68: error: Public symbol drawable/stat_sys_dat
a_fully_connected_3g declared here is not defined.
D:\systemui\res\values\public.xml:69: error: Public symbol drawable/stat_sys_dat
a_fully_connected_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:70: error: Public symbol drawable/stat_sys_dat
a_fully_connected_4g declared here is not defined.
D:\systemui\res\values\public.xml:71: error: Public symbol drawable/stat_sys_dat
a_fully_connected_e declared here is not defined.
D:\systemui\res\values\public.xml:72: error: Public symbol drawable/stat_sys_dat
a_fully_connected_g declared here is not defined.
D:\systemui\res\values\public.xml:73: error: Public symbol drawable/stat_sys_dat
a_fully_connected_h declared here is not defined.
D:\systemui\res\values\public.xml:74: error: Public symbol drawable/stat_sys_dat
a_fully_in_1x declared here is not defined.
D:\systemui\res\values\public.xml:75: error: Public symbol drawable/stat_sys_dat
a_fully_in_3g declared here is not defined.
D:\systemui\res\values\public.xml:76: error: Public symbol drawable/stat_sys_dat
a_fully_in_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:77: error: Public symbol drawable/stat_sys_dat
a_fully_in_4g declared here is not defined.
D:\systemui\res\values\public.xml:78: error: Public symbol drawable/stat_sys_dat
a_fully_in_e declared here is not defined.
D:\systemui\res\values\public.xml:79: error: Public symbol drawable/stat_sys_dat
a_fully_in_g declared here is not defined.
D:\systemui\res\values\public.xml:80: error: Public symbol drawable/stat_sys_dat
a_fully_in_h declared here is not defined.
D:\systemui\res\values\public.xml:81: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_1x declared here is not defined.
D:\systemui\res\values\public.xml:82: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_3g declared here is not defined.
D:\systemui\res\values\public.xml:83: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:84: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_4g declared here is not defined.
D:\systemui\res\values\public.xml:85: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_e declared here is not defined.
D:\systemui\res\values\public.xml:86: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_g declared here is not defined.
D:\systemui\res\values\public.xml:87: error: Public symbol drawable/stat_sys_dat
a_fully_inandout_h declared here is not defined.
D:\systemui\res\values\public.xml:88: error: Public symbol drawable/stat_sys_dat
a_fully_out_1x declared here is not defined.
D:\systemui\res\values\public.xml:89: error: Public symbol drawable/stat_sys_dat
a_fully_out_3g declared here is not defined.
D:\systemui\res\values\public.xml:90: error: Public symbol drawable/stat_sys_dat
a_fully_out_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:91: error: Public symbol drawable/stat_sys_dat
a_fully_out_4g declared here is not defined.
D:\systemui\res\values\public.xml:92: error: Public symbol drawable/stat_sys_dat
a_fully_out_e declared here is not defined.
D:\systemui\res\values\public.xml:93: error: Public symbol drawable/stat_sys_dat
a_fully_out_g declared here is not defined.
D:\systemui\res\values\public.xml:94: error: Public symbol drawable/stat_sys_dat
a_fully_out_h declared here is not defined.
D:\systemui\res\values\public.xml:95: error: Public symbol drawable/stat_sys_dat
a_in_1x declared here is not defined.
D:\systemui\res\values\public.xml:96: error: Public symbol drawable/stat_sys_dat
a_in_3g declared here is not defined.
D:\systemui\res\values\public.xml:97: error: Public symbol drawable/stat_sys_dat
a_in_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:98: error: Public symbol drawable/stat_sys_dat
a_in_4g declared here is not defined.
D:\systemui\res\values\public.xml:99: error: Public symbol drawable/stat_sys_dat
a_in_e declared here is not defined.
D:\systemui\res\values\public.xml:100: error: Public symbol drawable/stat_sys_da
ta_in_g declared here is not defined.
D:\systemui\res\values\public.xml:101: error: Public symbol drawable/stat_sys_da
ta_in_h declared here is not defined.
D:\systemui\res\values\public.xml:102: error: Public symbol drawable/stat_sys_da
ta_inadnout_e declared here is not defined.
D:\systemui\res\values\public.xml:103: error: Public symbol drawable/stat_sys_da
ta_inandout_1x declared here is not defined.
D:\systemui\res\values\public.xml:104: error: Public symbol drawable/stat_sys_da
ta_inandout_3g declared here is not defined.
D:\systemui\res\values\public.xml:105: error: Public symbol drawable/stat_sys_da
ta_inandout_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:106: error: Public symbol drawable/stat_sys_da
ta_inandout_4g declared here is not defined.
D:\systemui\res\values\public.xml:107: error: Public symbol drawable/stat_sys_da
ta_inandout_e declared here is not defined.
D:\systemui\res\values\public.xml:108: error: Public symbol drawable/stat_sys_da
ta_inandout_g declaredException in thread "main" here is not defined.
D:\systemui\res\values\public.xml:109: error: Public symbol drawable/stat_sys_da
ta_inandout_h declared here is not defined.
D:\systemui\res\values\public.xml:110: error: Public symbol drawable/stat_sys_da
ta_out_1x declared here is not defined.
D:\systemui\res\values\public.xml:111: error: Public symbol drawable/stat_sys_da
ta_out_3g declared here is not defined.
D:\systemui\res\values\public.xml:112: error: Public symbol drawable/stat_sys_da
ta_out_3g_plus declared here is not defined.
D:\systemui\res\values\public.xml:113: error: Public symbol drawable/stat_sys_da
ta_out_4g declared here is not defined.
D:\systemui\res\values\public.xml:114: error: Public symbol drawable/stat_sys_da
ta_out_e declared here is not defined.
D:\systemui\res\values\public.xml:115: error: Public symbol drawable/stat_sys_da
ta_out_g declared here is not defined.
D:\systemui\res\values\public.xml:116: error: Public symbol drawable/stat_sys_da
ta_out_h declared here is not defined.
D:\systemui\res\values\public.xml:117: error: Public symbol drawable/stat_sys_gp
s_acquiring declared here is not defined.
D:\systemui\res\values\public.xml:15: error: Public symbol drawable/stat_sys_gps
_acquiring_anim declared here is not defined.
D:\systemui\res\values\public.xml:118: error: Public symbol drawable/stat_sys_no
_sim declared here is not defined.
D:\systemui\res\values\public.xml:119: error: Public symbol drawable/stat_sys_r_
signal_0 declared here is not defined.
D:\systemui\res\values\public.xml:120: error: Public symbol drawable/stat_sys_r_
signal_0_fully declared here is not defined.
D:\systemui\res\values\public.xml:121: error: Public symbol drawable/stat_sys_r_
signal_1 declared here is not defined.
D:\systemui\res\values\public.xml:122: error: Public symbol drawable/stat_sys_r_
signal_1_fully declared here is not defined.
D:\systemui\res\values\public.xml:123: error: Public symbol drawable/stat_sys_r_
signal_2 declared here is not defined.
D:\systemui\res\values\public.xml:124: error: Public symbol drawable/stat_sys_r_
signal_2_fully declared here is not defined.
D:\systemui\res\values\public.xml:125: error: Public symbol drawable/stat_sys_r_
signal_3 declared here is not defined.
D:\systemui\res\values\public.xml:126: error: Public symbol drawable/stat_sys_r_
signal_3_fully declared here is not defined.
D:\systemui\res\values\public.xml:127: error: Public symbol drawable/stat_sys_r_
signal_4 declared here is not defined.
D:\systemui\res\values\public.xml:128: error: Public symbol drawable/stat_sys_r_
signal_4_fully declared here is not defined.
D:\systemui\res\values\public.xml:129: error: Public symbol drawable/stat_sys_ri
nger_silent declared here is not defined.
D:\systemui\res\values\public.xml:130: error: Public symbol drawable/stat_sys_ri
nger_vibrate declared here is not defined.
D:\systemui\res\values\public.xml:131: error: Public symbol drawable/stat_sys_ro
aming_cdma_0 declared here is not defined.
D:\systemui\res\values\public.xml:16: error: Public symbol drawable/stat_sys_roa
ming_cdma_flash declared here is not defined.
D:\systemui\res\values\public.xml:132: error: Public symbol drawable/stat_sys_ro
aming_cdma_flash_anim0 declared here is not defined.
D:\systemui\res\values\public.xml:133: error: Public symbol drawable/stat_sys_ro
aming_cdma_flash_anim1 declared here is not defined.
D:\systemui\res\values\public.xml:134: error: Public symbol drawable/stat_sys_si
gnal_0 declared here is not defined.
D:\systemui\res\values\public.xml:135: error: Public symbol drawable/stat_sys_si
gnal_0_fully declared here is not defined.
D:\systemui\res\values\public.xml:136: error: Public symbol drawable/stat_sys_si
gnal_1 declared here is not defined.
D:\systemui\res\values\public.xml:137: error: Public symbol drawable/stat_sys_si
gnal_1_fully declared here is not defined.
D:\systemui\res\values\public.xml:138: error: Public symbol drawable/stat_sys_si
gnal_2 declared here is not defined.
D:\systemui\res\values\public.xml:139: error: Public symbol drawable/stat_sys_si
gnal_2_fully declared here is not defined.
D:\systemui\res\values\public.xml:140: error: Public symbol drawable/stat_sys_si
gnal_3 declared here is not defined.
D:\systemui\res\values\public.xml:141: error: Public symbol drawable/stat_sys_si
gnal_3_fully declared here is not defined.
D:\systemui\res\values\public.xml:142: error: Public symbol drawable/stat_sys_si
gnal_4 declared here is not defined.
D:\systemui\res\values\public.xml:143: error: Public symbol drawable/stat_sys_si
gnal_4_fully declared here is not defined.
D:\systemui\res\values\public.xml:144: error: Public symbol drawable/stat_sys_si
gnal_flightmode declared here is not defined.
D:\systemui\res\values\public.xml:145: error: Public symbol drawable/stat_sys_si
gnal_null declared here is not defined.
D:\systemui\res\values\public.xml:146: error: Public symbol drawable/stat_sys_tt
y_mode declared here is not defined.
D:\systemui\res\values\public.xml:147: error: Public symbol drawable/stat_sys_wi
fi_signal_0 declared here is not defined.
D:\systemui\res\values\public.xml:148: error: Public symbol drawable/stat_sys_wi
fi_signal_1 declared here is not defined.
D:\systemui\res\values\public.xml:149: error: Public symbol drawable/stat_sys_wi
fi_signal_1_fully declared here is not defined.
D:\systemui\res\values\public.xml:150: error: Public symbol drawable/stat_sys_wi
fi_signal_2 declared here is not defined.
D:\systemui\res\values\public.xml:151: error: Public symbol drawable/stat_sys_wi
fi_signal_2_fully declared here is not defined.
D:\systemui\res\values\public.xml:152: error: Public symbol drawable/stat_sys_wi
fi_signal_3 declared here is not defined.
D:\systemui\res\values\public.xml:153: error: Public symbol drawable/stat_sys_wi
fi_signal_3_fully declared here is not defined.
D:\systemui\res\values\public.xml:154: error: Public symbol drawable/stat_sys_wi
fi_signal_4 declared here is not defined.
D:\systemui\res\values\public.xml:155: error: Public symbol drawable/stat_sys_wi
fi_signal_4_fully declared here is not defined.
D:\systemui\res\values\public.xml:368: error: Public symbol drawable/stat_sys_wi
max_signal_1 declared here is not defined.
D:\systemui\res\values\public.xml:369: error: Public symbol drawable/stat_sys_wi
max_signal_2 declared here is not defined.
D:\systemui\res\values\public.xml:370: error: Public symbol drawable/stat_sys_wi
max_signal_3 declared here is not defined.
D:\systemui\res\values\public.xml:371: error: Public symbol drawable/stat_sys_wi
max_signal_4 declared here is not defined.
D:\systemui\res\values\public.xml:156: error: Public symbol drawable/status_bar_
background declared here is not defined.
D:\systemui\res\values\public.xml:157: error: Public symbol drawable/status_bar_
call_ongoing_background declared here is not defined.
D:\systemui\res\values\public.xml:158: error: Public symbol drawable/status_bar_
close_on declared here is not defined.
D:\systemui\res\values\public.xml:372: error: Public symbol drawable/status_bar_
header_background declared here is not defined.
D:\systemui\res\values\public.xml:373: error: Public symbol drawable/status_bar_
item_app_background_normal declared here is not defined.
D:\systemui\res\values\public.xml:374: error: Public symbol drawable/status_bar_
item_background_focus declared here is not defined.
D:\systemui\res\values\public.xml:375: error: Public symbol drawable/status_bar_
item_background_normal declared here is not defined.
D:\systemui\res\values\public.xml:376: error: Public symbol drawable/status_bar_
item_background_pressed declared here is not defined.
D:\systemui\res\values\public.xml:159: error: Public symbol drawable/statusbar_b
ackground declared here is not defined.
D:\systemui\res\values\public.xml:160: error: Public symbol drawable/title_bar_p
ortrait declared here is not defined.
D:\systemui\res\values\public.xml:161: error: Public symbol drawable/title_bar_s
hadow declared here is not defined.
D:\systemui\res\values\public.xml:377: error: Public symbol drawable/zz_stat_sys
_r_signal_5 declared here is not defined.
D:\systemui\res\values\public.xml:378: error: Public symbol drawable/zz_stat_sys
_signal_5 declared here brut.androlib.AndrolibException: brut.common.BrutExcepti
on: could not exec command: [aapt, p, -F, C:\Users\Areeb\AppData\Local\Temp\APKT
OOL758201980054297910.tmp, -I, C:\Users\Areeb\apktool\framework\1.apk, -S, D:\sy
stemui\res, -M, D:\systemui\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\U
sers\Areeb\AppData\Local\Temp\APKTOOL758201980054297910.tmp, -I, C:\Users\Areeb\
apktool\framework\1.apk, -S, D:\systemui\res, -M, D:\systemui\AndroidManifest.xm
l]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
is not defined.
D:\systemui\res\values\public.xml:22: error: Public symbol drawable/zzz_stat_sys
_battery_1 declared here is not defined.
C:\Users\Areeb>
I found no problem in compiling framework-res.apk
Please help if you know anything
I know I will find help very late but I posted this thread in correct section because I respect rules
You are likely missing some image files in the drawable-mdpi folder. But i'm not sure.
ZakooZ said:
You are likely missing some image files in the drawable-mdpi folder. But i'm not sure.
Click to expand...
Click to collapse
No file is missing
I checked
Because when I flash that SystemUI.apk
It works fantabulously
Use another apk tool to recompile
This problem is due to buggy apk tool
Sent from my GT-S5830i using xda app-developers app
You Need TO Compile Framework First Or You Will Face Problems With compling SystemUI
Boudz78 said:
You Need TO Compile Framework First Or You Will Face Problems With compling SystemUI
Click to expand...
Click to collapse
Both are individual different apk so how come they got connected ???
I doubt it
Sent from my GT-S5830i using xda app-developers app
I helped myself out
However Thanks for replies
Both are individual different apk so how come they got connected ???
I doubt it
Sent from my GT-S5830i using xda app-developers app
Click to expand...
Click to collapse
No not that i mean install framework as typing ""apktool if framework-res.apk" and the same for systemui then it will work
Boudz78 said:
No not that i mean install framework as typing ""apktool if framework-res.apk" and the same for systemui then it will work
Click to expand...
Click to collapse
Dude
Of course I did it
but it did not work
But as you see I have solved it
iamareebjamal said:
Dude
Of course I did it
but it did not work
But as you see I have solved it
Click to expand...
Click to collapse
How did you solve it? I am facing similar issues. I modified some images and when trying to compile the systemui, I am getting the same errors as the ones you faced (with public.xml).
abhilabhila said:
How did you solve it? I am facing similar issues. I modified some images and when trying to compile the systemui, I am getting the same errors as the ones you faced (with public.xml).
Click to expand...
Click to collapse
I can tell you how to do it for apktool
But I will recommend you to use ApkManager instead
It is very easy to use and has no bugs
I will soon make a guide discussing this
iamareebjamal said:
I can tell you how to do it for apktool
But I will recommend you to use ApkManager instead
It is very easy to use and has no bugs
I will soon make a guide discussing this
Click to expand...
Click to collapse
I am using apktool. Well, I will try Apkmanager next time...
Sent from my GT-I9300 using xda premium
Same issue here. Can you tel how you fixed using apktool? APK Manager is no longer able to download. And there is same error with APK Multi Tool
ilamaan said:
Same issue here. Can you tel how you fixed using apktool? APK Manager is no longer able to download. And there is same error with APK Multi Tool
Click to expand...
Click to collapse
First, thanks for searching before creating new threads
Now, before decompiling apk
You have to place SystemUI.apk, framework - res.apk, and twframework-res.apk in Others folder
And then go to setup.bat and select install framework, systemui.apk and twframework-res.apk
Then you'll be able to do what you want.
iamareebjamal said:
First, thanks for searching before creating new threads
Now, before decompiling apk
You have to place SystemUI.apk, framework - res.apk, and twframework-res.apk in Others folder
And then go to setup.bat and select install framework, systemui.apk and twframework-res.apk
Then you'll be able to do what you want.
Click to expand...
Click to collapse
.
There is no option to install frameworks in it. Just compiling decompiling,etc
ilamaan said:
.
There is no option to install frameworks in it. Just compiling decompiling,etc
Click to expand...
Click to collapse
I use it every time
Don't open script.bat
Open setup.bat
Please reply
iamareebjamal said:
I helped myself out
However Thanks for replies
Click to expand...
Click to collapse
im having the same problem .. how did you fix that ?
x JHAY x said:
im having the same problem .. how did you fix that ?
Click to expand...
Click to collapse
Copy your ROM's framework-res.apk, SystemUI.apk and twframework-res.apk in the folder where you have apktool
Open cmd and type
apktool if framework-res.apk
apktool if SystemUI.apk
apktool if twframework-res.apk
SystemUI.apk!!!
Well...brothers i dnt knw if u have fixed this error which u were getting.... or not....as its of 2013 post (still i am posting)... but i had fixed his error which i was getting too...!!!
First of all i am very new in this decompiling & recompiling stuff..... of SystemUI.apk..!!
SO... now the fix...::::
(What i saw in ur error code was it was this
D:\systemui\res\values\public.xml:348: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim83 declared here is not defined.
D:\systemui\res\values\public.xml:349: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim84 declared here is not defined.)
In my case i got this error bcz i deleted a PNG img. ...in DRAWABLE-HDPI... take it as stat_sys_ba
ttery_charge_anim83 ........ SO.... get back this files... by again decompiling the original SYSTEMUI.apk..... but before this backup the previous decompiled files as u have added many things.... now..!! after decompiling the original apk... search the missing file and re place it..!!!
As i was saying in my case i deleted a PNG img.. that was (ic_qs_sync_on) (ic_qs_sync_off) .... i replaced it back and again recompiled it..!! done..!! fixed..!!!.. btw.. i need some guidance....!!!:fingers-crossed:
Jeewan Deep said:
Well...brothers i dnt knw if u have fixed this error which u were getting.... or not....as its of 2013 post (still i am posting)... but i had fixed his error which i was getting too...!!!
First of all i am very new in this decompiling & recompiling stuff..... of SystemUI.apk..!!
SO... now the fix...::::
(What i saw in ur error code was it was this
D:\systemui\res\values\public.xml:348: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim83 declared here is not defined.
D:\systemui\res\values\public.xml:349: error: Public symbol drawable/stat_sys_ba
ttery_charge_anim84 declared here is not defined.)
In my case i got this error bcz i deleted a PNG img. ...in DRAWABLE-HDPI... take it as stat_sys_ba
ttery_charge_anim83 ........ SO.... get back this files... by again decompiling the original SYSTEMUI.apk..... but before this backup the previous decompiled files as u have added many things.... now..!! after decompiling the original apk... search the missing file and re place it..!!!
As i was saying in my case i deleted a PNG img.. that was (ic_qs_sync_on) (ic_qs_sync_off) .... i replaced it back and again recompiled it..!! done..!! fixed..!!!.. btw.. i need some guidance....!!!:fingers-crossed:
Click to expand...
Click to collapse
The title of the thread says solved, what do you think the word "Solved" means?