[GT-S6310][GUIDE] how to add lidroid 23toggles - Android Themes

Decompile SystemUI.apk
-Open ids.xml
-paste this code :
Code:
<item type="id" name="exp_power_stat">false</item>
-above code </resources>
-like this :
Code:
<item type="id" name="exp_power_stat">false</item>
</resources>
open tw_status_bar_expande.xml
-paste this ini,
Code:
<com.wanam.systemui.quickpanel.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />
-above :
Code:
<HorizontalScrollView android:id="@id/quicksetting_scroller"
N change android:layout_height="0.0dip on <HorizontalScrollView android:id="@id/quicksetting_scroller"
-like this
Code:
[COLOR="Red"]
<com.wanam.systemui.quickpanel.PowerWidget android:id="@id/exp_power_stat" android:layout_width="fill_parent" android:layout_height="wrap_content" />[/COLOR]
<HorizontalScrollView android:id="@id/quicksetting_scroller" android:scrollbars="none" android:layout_width="wrap_content" [COLOR="Red"]android:layout_height="0.0dip"[/COLOR]>
<com.android.systemui.statusbar.policy.quicksetting.QuickSettingPanel android:orientation="horizontal" android:id="@id/quicksetting_container" android:layout_width="wrap_content" android:layout_height="wrap_content" android:divider="@drawable/tw_black_bg" android:showDividers="middle" />
</HorizontalScrollView>
-Done,save
Recompile SystemUI.apk
Decompile SystemUI.apk again
-open PhoneStatusBar.smali
smali/com/android/systemui/statusbar/phone/PhoneStatusBar.smali
-add code ++ [whitout++]
Code:
.field mPostCollapseCleanup:Ljava/lang/Runnable;
[COLOR="Red"]++.field mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;[/COLOR]
.field private mPreviousConfigFontScale:F
find:
Code:
# virtual methods
.method public addIcon(Ljava/lang/String;IILcom/android/internal/statusbar/StatusBarIcon;)V
.locals 5
-add code ++
Code:
invoke-direct {v2, v3, v4}, Landroid/widget/LinearLayout$LayoutParams;-><init>(II)V
invoke-virtual {v1, v0, p3, v2}, Landroid/widget/LinearLayout;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
[COLOR="Red"]++iget-object v1, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
++invoke-virtual {v1}, Lcom/wanam/systemui/quickpanel/PowerWidget;->updateWidget()V[/COLOR]
.line 1170
return-void
.end method
-open Public.xml
SystemUI.apk/res/values/public.xml
-find :
public type="id" name="exp_power_stat"
Click to expand...
Click to collapse
put hex public exp_power_stat
Code:
<public type="id" name="exp_power_stat" id="[COLOR="Red"]0x7f0d012e[/COLOR]" />
find method
Code:
.method protected makeStatusBarView()Lcom/android/systemui/statusbar/phone/PhoneStatusBarView;
-Scroll down and find this code
Code:
.line 714
new-instance v9, Lcom/android/systemui/statusbar/phone/PhoneStatusBar$MyTicker;
iget-object v10, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mStatusBarView:Lcom/android/systemui/statusbar/phone/PhoneStatusBarView;
invoke-direct {v9, p0, v1, v10}, Lcom/android/systemui/statusbar/phone/PhoneStatusBar$MyTicker;-><init>(Lcom/android/systemui/statusbar/phone/PhoneStatusBar;Landroid/content/Context;Landroid/view/View;)V
iput-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mTicker:Lcom/android/systemui/statusbar/phone/Ticker;
-the above code
paste this,
Code:
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mStatusBarWindow:Lcom/android/systemui/statusbar/phone/StatusBarWindowView;
.line 444
const v10, [COLOR="Red"]0x7f0d012e[/COLOR]
invoke-virtual {v9, v10}, Lcom/android/systemui/statusbar/phone/StatusBarWindowView;->findViewById(I)Landroid/view/View;
.line 445
move-result-object v9
check-cast v9, Lcom/wanam/systemui/quickpanel/PowerWidget;
iput-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
RED CODE ,PUBLIC "exp_power_stat"
Click to expand...
Click to collapse
next, find :
Code:
.line 869
const-string v9, "android.intent.action.SCREEN_ON"
invoke-virtual {v2, v9}, Landroid/content/IntentFilter;->addAction(Ljava/lang/String;)V
.line 872
:cond_7
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mBroadcastReceiver:Landroid/content/BroadcastReceiver;
invoke-virtual {v1, v9, v2}, Landroid/content/Context;->registerReceiver(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;
-add code ++
Code:
.line 872
:cond_7
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mBroadcastReceiver:Landroid/content/BroadcastReceiver;
invoke-virtual {v1, v9, v2}, Landroid/content/Context;->registerReceiver(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;
[COLOR="Red"] ++iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
++invoke-virtual {v9}, Lcom/wanam/systemui/quickpanel/PowerWidget;->setupWidget()V
[/COLOR]
-Save,
open "AndroidManifest.xml"
-find
Code:
<manifest android:versioncode=16 android:versionname="4.1.2-blablabla.."
-add code
Code:
android:sharedUserId="android.uid.system" android:process="system"
-between
Code:
<manifest android:versioncode=16
-like this :
Code:
<manifest [COLOR="Red"]android:sharedUserId="android.uid.system" android:process="system"[/COLOR] android:versionCode="16" android:versionName="4.1.2-blablabla.."
-find
Code:
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
-below code
add this,
Code:
<uses-permission android:name="android.permission.CAMERA" />
SAVE,RECOMPILE,SIGN,PUSH TO SYSTEM
NEED SIGN, OR DISABLE CHECK SIGNATURE APPS [SERVICE.JAR]
READ HERE : http://forum.xda-developers.com/showthread.php?t=1621289
Download file :
smali :
http://d-h.st/45p
lidroid-res & lidroidsettings:
http://d-h.st/HIa
Credit :
-LIDROID
-WANAM
-Adi Aisiteru Reborn
if You like my GUIDE
Please pool n rate my Device to have Sub Forum
here :
http://forum.xda-developers.com/show....php?t=2550846

Having trouble in recompiling...
I'm using dual sim varient GT-S6312. Decompiled Successfully. But Having These errors when i try to recompile. Please help. I can provide you my systemui.apk, framework-res.apk and anything you need. please compile one forme.
text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1614: error: Public symbol id/new_mobi
le_combo declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1639: error: Public symbol id/noNotifi
cationsText declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1638: error: Public symbol id/noNotifi
cationsTitle declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1533: error: Public symbol id/notifica
tionArea declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1643: error: Public symbol id/notifica
tionCart declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1455: error: Public symbol id/notifica
tionIcons declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1645: error: Public symbol id/notifica
tionItems declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1559: error: Public symbol id/notifica
tionTrigger declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1423: error: Public symbol id/notifica
tion_adaptive_wrapper declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1573: error: Public symbol id/notifica
tion_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1453: error: Public symbol id/notifica
tion_icon_area declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1705: error: Public symbol id/notifica
tion_inspect_item declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1451: error: Public symbol id/notifica
tion_lights_out declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1464: error: Public symbol id/notifica
tion_panel declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1565: error: Public symbol id/notifica
tion_scroller declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1474: error: Public symbol id/number d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1640: error: Public symbol id/onGoingC
art declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1642: error: Public symbol id/onGoingI
tems declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1641: error: Public symbol id/onGoingN
otificationText declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1629: error: Public symbol id/operator
LogoIcon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1393: error: Public symbol id/padding
declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1575: error: Public symbol id/preview
declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1694: error: Public symbol id/quick_la
unch declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1646: error: Public symbol id/quickpan
el_dualsim_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1636: error: Public symbol id/quickset
ting_container declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1635: error: Public symbol id/quickset
ting_scroller declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1613: error: Public symbol id/readingm
ode_checkbox declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1612: error: Public symbol id/readingm
ode_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1417: error: Public symbol id/recent_a
pps declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1707: error: Public symbol id/recent_i
nspect_item declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1511: error: Public symbol id/recent_i
tem declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1706: error: Public symbol id/recent_r
emove_item declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1439: error: Public symbol id/recents_
RemoveAll_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1435: error: Public symbol id/recents_
bg_protect declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1515: error: Public symbol id/recents_
callout_line declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1436: error: Public symbol id/recents_
container declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1438: error: Public symbol id/recents_
google_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1437: error: Public symbol id/recents_
launch_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1517: error: Public symbol id/recents_
linear_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1440: error: Public symbol id/recents_
no_apps declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1656: error: Public symbol id/recents_
no_apps_string declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1433: error: Public symbol id/recents_
root declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1434: error: Public symbol id/recents_
transition_background declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1516: error: Public symbol id/recents_
transition_placeholder_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1599: error: Public symbol id/right_ic
on declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1631: error: Public symbol id/right_ic
ons declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1413: error: Public symbol id/rot0 dec
lared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1422: error: Public symbol id/rot270 d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1421: error: Public symbol id/rot90 de
clared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1585: error: Public symbol id/rotate d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1588: error: Public symbol id/rotate_c
heckbox declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1586: error: Public symbol id/rotate_i
con declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1587: error: Public symbol id/rotate_l
abel declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1589: error: Public symbol id/rotate_s
eparator declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1471: error: Public symbol id/rotation
_lock_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1443: error: Public symbol id/s_app_ic
on declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1442: error: Public symbol id/s_app_ic
on_parent declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1444: error: Public symbol id/s_app_la
bel declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1441: error: Public symbol id/s_app_pa
nel_apps_item_parent declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1447: error: Public symbol id/s_apps_c
ontainer declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1448: error: Public symbol id/s_apps_c
ontainer_settings declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1446: error: Public symbol id/s_apps_p
arent declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1445: error: Public symbol id/s_recent
s_bg_protect declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1467: error: Public symbol id/scroll d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1634: error: Public symbol id/scrollCa
rt declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1519: error: Public symbol id/search_b
g_protect declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1518: error: Public symbol id/search_p
anel_container declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1615: error: Public symbol id/separate
_mobile declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1617: error: Public symbol id/separate
_mobile_inout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1616: error: Public symbol id/separate
_mobile_type declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1595: error: Public symbol id/settings
declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1472: error: Public symbol id/settings
_button declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1655: error: Public symbol id/settings
_button_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1700: error: Public symbol id/settings
_label declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1701: error: Public symbol id/settings
_underline declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1660: error: Public symbol id/shortcut
1_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1659: error: Public symbol id/shortcut
1_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1661: error: Public symbol id/shortcut
1_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1663: error: Public symbol id/shortcut
2_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1662: error: Public symbol id/shortcut
2_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1664: error: Public symbol id/shortcut
2_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1666: error: Public symbol id/shortcut
3_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1665: error: Public symbol id/shortcut
3_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1667: error: Public symbol id/shortcut
3_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1669: error: Public symbol id/shortcut
4_icon declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1668: error: Public symbol id/shortcut
4_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1670: error: Public symbol id/shortcut
4_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1657: error: Public symbol id/shortcut
_line declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1457: error: Public symbol id/signal_b
atException in thread "main" tery_cluster declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1458: error: Public symbol id/signal_c
luster declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1618: error: Public symbol id/sim_icon
declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1527: error: Public symbol id/slider d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1690: error: Public symbol id/slider_g
roup declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1692: error: Public symbol id/slider_s
plit declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1691: error: Public symbol id/slider_s
plit_layout declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1693: error: Public symbol id/slider_s
plit_text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1678: error: Public symbol id/smallVie
ws declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1677: error: Public symbol id/smallVie
ws_parent declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1427: error: Public symbol id/spacer d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1456: error: Public symbol id/statusIc
ons declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1450: error: Public symbol id/status_b
ar declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1528: error: Public symbol id/status_b
ar_container declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1577: error: Public symbol id/status_b
ar_touch_proxy declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1563: error: Public symbol id/system_b
ar_notification_panel_bottom_space declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1703: error: Public symbol id/systemno
ti declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1598: error: Public symbol id/text dec
lared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1683: error: Public symbol id/thumbnai
l declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1461: error: Public symbol id/ticker d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1462: error: Public symbol id/tickerIc
on declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1463: error: Public symbol id/tickerTe
xt declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1600: error: Public symbol id/ticker_e
xpanded declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1633: error: Public symbol id/ticker_t
ext_view_new declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1632: error: Public symbol id/ticker_t
ext_view_old declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1566: error: Public symbol id/title_ar
ea declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1525: error: Public symbol id/toggle d
eclared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1506: error: Public symbol id/top_glow
declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1695: error: Public symbol id/traybar_
handler declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1601: error: Public symbol id/traybar_
handler0 declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1602: error: Public symbol id/traybar_
handler90 declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1552: error: Public symbol id/use_phys
ical_keyboard_label declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1392: error: Public symbol id/user_col
lapsed_tag declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1390: error: Public symbol id/user_exp
anded_tag declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1391: error: Public symbol id/user_loc
k_tag declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1507: error: Public symbol id/veto dec
lared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1399: error: Public symbol id/view_cen
ter_bar declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1400: error: Public symbol id/view_cen
ter_bar_arrow declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1394: error: Public symbol id/warning_
text declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1424: error: Public symbol id/wifi_com
bo declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1570: error: Public symbol id/wifi_dir
ection declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1569: error: Public symbol id/wifi_ico
n declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1426: error: Public symbol id/wifi_ino
ut declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1425: error: Public symbol id/wifi_sig
nal declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1571: error: Public symbol id/wifi_tex
t declared here is not defined.
C:\apktool\SystemUI\res\values\public.xml:1698: error: Public symbol id/wifidire
ct declared here is not defined.
brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.Br
utException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-s
dk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL68445917489919198
30.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\apktool\S
ystemUI\res, -M, C:\apktool\SystemUI\AndroidManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:358)
at brut.androlib.Androlib.buildResources(Androlib.java:283)
at brut.androlib.Androlib.build(Androlib.java:206)
at brut.androlib.Androlib.build(Androlib.java:176)
at brut.apktool.Main.cmdBuild(Main.java:228)
at brut.apktool.Main.main(Main.java:79)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not
exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:
\Users\Shampod\AppData\Local\Temp\APKTOOL6844591748991919830.tmp, -0, arsc, -I,
C:\Users\Shampod\apktool\framework\1.apk, -S, C:\apktool\SystemUI\res, -M, C:\ap
ktool\SystemUI\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:357)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:336)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sd
k-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp
\APKTOOL6844591748991919830.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framewor
k\1.apk, -S, C:\apktool\SystemUI\res, -M, C:\apktool\SystemUI\AndroidManifest.xm
l]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:355)
... 6 more
C:\apktool>

Help
Dear developers....
I'm continuously getting these error for compiling SystemUI.apk. I just decompiled my stock SystemUI.apk in several ways like apktool, AndroidMultitool and few other methods. all of them successfully decompile. But when i want to recompile it shows the following errror every time. even i dont modify my SystemUI.apk it showsthe same errror. Please help me.
I: Checking whether sources has changed...
I: Smaling...
I: Checking whether resources has changed...
I: Building resources...
aapt: warning: string 'abbrev_wday_abbrev_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_day_abbrev_month_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_month_day_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'am' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'full_wday_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'pm' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'quickpanel_data_roaming_disable_toast' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: ar az bg ca cs da de el en_PH en_US es_ES es_US et eu fa fi fr fr_CA ga gl hr hu hy in is it iw ja ka kk ko lt lv mk ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv th tr uk ur uz vi zh_CN zh_HK zh_SG zh_TW
aapt: warning: string 'quickpanel_data_roaming_enable_toast' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: ar az bg ca cs da de el en_PH en_US es_ES es_US et eu fa fi fr fr_CA ga gl hr hu hy in is it iw ja ka kk ko lt lv mk ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv th tr uk ur uz vi zh_CN zh_HK zh_SG zh_TW
aapt: warning: string 'today' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'tomorrow' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'twelve_hour_time_format' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'yesterday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:14: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:19: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:21: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:5: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:6: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:7: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:10: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:11: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:12: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:13: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:15: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:16: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:17: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:18: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:21: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:22: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:23: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:26: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:27: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:28: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:29: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:32: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:33: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:34: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:35: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:37: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:353)
at brut.androlib.Androlib.buildResources(Androlib.jav a:281)
at brut.androlib.Androlib.build(Androlib.java:209)
at brut.androlib.Androlib.build(Androlib.java:177)
at brut.apktool.Main.cmdBuild(Main.java:237)
at brut.apktool.Main.main(Main.java:79)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:406)
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:334)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:404)
... 6 more
The system cannot find the file specified.
The system cannot find the file specified.

shampod said:
Dear developers....
I'm continuously getting these error for compiling SystemUI.apk. I just decompiled my stock SystemUI.apk in several ways like apktool, AndroidMultitool and few other methods. all of them successfully decompile. But when i want to recompile it shows the following errror every time. even i dont modify my SystemUI.apk it showsthe same errror. Please help me. :
Click to expand...
Click to collapse
Add this to styles.xml above </resources>
<style name="StatusBarNotificationText" />
<style name="StatusBarPanelSettingsRow" />
<style name="StatusBarPanelSettingsPanelSeparator" />
<style name="StatusBarPanelSettingsContents" />
<style name="StatusBarPanelSettingsIcon" />
</resources>
try again to recompile..
goodluck

dugeriss said:
-open PhoneStatusBar.smali
smali/com/android/systemui/statusbar/phone/PhoneStatusBar.smali
-add code ++ [whitout++]
Code:
.field mPostCollapseCleanup:Ljava/lang/Runnable;
[COLOR="Red"]++.field mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;[/COLOR]
.field private mPreviousConfigFontScale:F
find:
Code:
# virtual methods
-add code ++
Code:
invoke-direct {v2, v3, v4}, Landroid/widget/LinearLayout$LayoutParams;-><init>(II)V
invoke-virtual {v1, v0, p3, v2}, Landroid/widget/LinearLayout;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
[COLOR="Red"]++iget-object v1, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
++invoke-virtual {v1}, Lcom/wanam/systemui/quickpanel/PowerWidget;->updateWidget()V[/COLOR]
.line 1170
return-void
.end method
-open Public.xml
SystemUI.apk/res/values/public.xml
-find :
put hex public exp_power_stat
Code:
<public type="id" name="exp_power_stat" id="[COLOR="Red"]0x7f0d012e[/COLOR]" />
find method
Code:
.method protected makeStatusBarView()Lcom/android/systemui/statusbar/phone/PhoneStatusBarView;
-Scroll down and find this code
Code:
.line 714
new-instance v9, Lcom/android/systemui/statusbar/phone/PhoneStatusBar$MyTicker;
iget-object v10, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mStatusBarView:Lcom/android/systemui/statusbar/phone/PhoneStatusBarView;
invoke-direct {v9, p0, v1, v10}, Lcom/android/systemui/statusbar/phone/PhoneStatusBar$MyTicker;-><init>(Lcom/android/systemui/statusbar/phone/PhoneStatusBar;Landroid/content/Context;Landroid/view/View;)V
iput-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mTicker:Lcom/android/systemui/statusbar/phone/Ticker;
-the above code
paste this,
Code:
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mStatusBarWindow:Lcom/android/systemui/statusbar/phone/StatusBarWindowView;
.line 444
const v10, [COLOR="Red"]0x7f0d012e[/COLOR]
invoke-virtual {v9, v10}, Lcom/android/systemui/statusbar/phone/StatusBarWindowView;->findViewById(I)Landroid/view/View;
.line 445
move-result-object v9
check-cast v9, Lcom/wanam/systemui/quickpanel/PowerWidget;
iput-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
next, find :
Code:
.line 869
const-string v9, "android.intent.action.SCREEN_ON"
invoke-virtual {v2, v9}, Landroid/content/IntentFilter;->addAction(Ljava/lang/String;)V
.line 872
:cond_7
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mBroadcastReceiver:Landroid/content/BroadcastReceiver;
invoke-virtual {v1, v9, v2}, Landroid/content/Context;->registerReceiver(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;
-add code ++
Code:
.line 872
:cond_7
iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mBroadcastReceiver:Landroid/content/BroadcastReceiver;
invoke-virtual {v1, v9, v2}, Landroid/content/Context;->registerReceiver(Landroid/content/BroadcastReceiver;Landroid/content/IntentFilter;)Landroid/content/Intent;
[COLOR="Red"] ++iget-object v9, p0, Lcom/android/systemui/statusbar/phone/PhoneStatusBar;->mPowerWidget:Lcom/wanam/systemui/quickpanel/PowerWidget;
++invoke-virtual {v9}, Lcom/wanam/systemui/quickpanel/PowerWidget;->setupWidget()V
[/COLOR]
-Save,
open "AndroidManifest.xml"
-find
Code:
<manifest android:versioncode=16 android:versionname="4.1.2-blablabla.."
-add code
Code:
android:sharedUserId="android.uid.system" android:process="system"
-between
Code:
<manifest android:versioncode=16
-like this :
Code:
<manifest [COLOR="Red"]android:sharedUserId="android.uid.system" android:process="system"[/COLOR] android:versionCode="16" android:versionName="4.1.2-blablabla.."
-find
Code:
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
-below code
add this,
Code:
<uses-permission android:name="android.permission.CAMERA" />
SAVE,RECOMPILE,SIGN,PUSH TO SYSTEM
Click to expand...
Click to collapse
Not Clear from here. please make it more simplified that i can easily understand. I found my PhoneStatusBar.smali is little diffrent on my GT-S6312. please help me. i provided my systemui.apk, framework-res.apk and twframework-res in the attachment.

Error Again...!
dugeriss said:
Add this to styles.xml above </resources>
<style name="StatusBarNotificationText" />
<style name="StatusBarPanelSettingsRow" />
<style name="StatusBarPanelSettingsPanelSeparator" />
<style name="StatusBarPanelSettingsContents" />
<style name="StatusBarPanelSettingsIcon" />
</resources>
try again to recompile..
goodluck
Click to expand...
Click to collapse
Thank you dear. But again got stuck again. i got the following error.
I: Checking whether sources has changed...
I: Smaling...
[10743,4] The register number must be less than v16
[10746,4] All register args must fit in 4 bits
[10748,4] mismatched tree node: I_STATEMENT_FORMAT21t expecting I_CATCHES
Exception in thread "main" brut.androlib.AndrolibException: Could not smali file: C:\AndroidMultitool\Decompiled_apk\SystemUI\smali\com\android\systemui\statusbar\phone\PhoneStatusBar.smali
at brut.androlib.src.DexFileBuilder.addSmaliFile(DexFileBuilder.java:45)
at brut.androlib.src.DexFileBuilder.addSmaliFile(DexFileBuilder.java:33)
at brut.androlib.src.SmaliBuilder.buildFile(SmaliBuilder.java:66)
at brut.androlib.src.SmaliBuilder.build(SmaliBuilder.java:50)
at brut.androlib.src.SmaliBuilder.build(SmaliBuilder.java:36)
at brut.androlib.Androlib.buildSourcesSmali(Androlib.java:256)
at brut.androlib.Androlib.buildSources(Androlib.java:217)
at brut.androlib.Androlib.build(Androlib.java:208)
at brut.androlib.Androlib.build(Androlib.java:177)
at brut.apktool.Main.cmdBuild(Main.java:237)
at brut.apktool.Main.main(Main.java:79)
The system cannot find the file specified.
The system cannot find the file specified.

shampod said:
Not Clear from here. please make it more simplified that i can easily understand. I found my PhoneStatusBar.smali is little diffrent on my GT-S6312. please help me. i provided my systemui.apk, framework-res.apk and twframework-res in the attachment.
Click to expand...
Click to collapse
try this, http://d-h.st/hKX

awesome bro, :good:

Denz Juand said:
awesome bro, :good:
Click to expand...
Click to collapse
ur welcome sir!

dugeriss said:
ur welcome sir!
Click to expand...
Click to collapse
can try this guide for GB??

Denz Juand said:
can try this guide for GB??
Click to expand...
Click to collapse
NO sir, different source with GB, like dormant mode, powersaving mode, etc

ok ,thanks u sir, btw how to grid lidroid on GB,
sorry i cant coment on your trhead about grid lidroid :crying:

Denz Juand said:
ok ,thanks u sir, btw how to grid lidroid on GB,
sorry i cant coment on your trhead about grid lidroid :crying:
Click to expand...
Click to collapse
i think same with JB guide
try here sir ; http://forum.xda-developers.com/showpost.php?p=44182527&postcount=38

dugeriss said:
i think same with JB guide
try here sir ; http://forum.xda-developers.com/showpost.php?p=44182527&postcount=38
Click to expand...
Click to collapse
woah.. thnks u very very much, very helpfull :good:
---------- Post added at 08:20 PM ---------- Previous post was at 07:54 PM ----------
dugeriss said:
i think same with JB guide
try here sir ; http://forum.xda-developers.com/showpost.php?p=44182527&postcount=38
Click to expand...
Click to collapse
working sir , thnks :good:

Denz Juand said:
woah.. thnks u very very much, very helpfull :good:
---------- Post added at 08:20 PM ---------- Previous post was at 07:54 PM ----------
working sir , thnks :good:
Click to expand...
Click to collapse
thnks for fb

dugeriss said:
thnks for fb
Click to expand...
Click to collapse
:highfive:

Up papah
Sent from my GT-S6310 using XDA Premium 4 mobile app

belel69 said:
Up papah
Sent from my GT-S6310 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
up for whatn

dugeriss said:
up for whatn
Click to expand...
Click to collapse
for future

up again

Related

[WIP][GUIDE] PatchROM - MIUI Porting

Hello guys!
actually i dont own this phone so replace "shakira" with your phone name
MIUI recently opensourced a set of tools made for porting it's ROM to other devices. here's a little guide on how it (kinda) works, maybe it helps someone.
Any contribution is welcome
Here's what I've found of PatchROM:
Get PatchROM from here (384MB)
And make sure you have apktool installed.
The overall proccess looks like this:
Extract the tools
Get an Gingerbread ROM to install MIUI stuff;
Create the required file structure
Change the Makefile
Apply MIUI changes to the selected ROM
Flash it!
STEP 1: Extracting the tools
I've extracted the tools to ~/patchrom, but you can use another directory if you want. I'll call that folder the PatchROM root folder.
STEP 2: Choosing the ROM
The PatchROM docs recommend that we use a stock Gingerbread ROM from the device manufacturer, but there's no official Gingerbread for our device, so I used a MiniCM7 zip instead.
EDIT: make sure you use an deodexed rom or deodex your rom.
STEP 3: Creating the file structure
To port, we need to create a folder inside the PatchROM root directory for our device. There's an example device for the Samsung Galaxy S on the i9000 folder, we'll use that as a base. I created a folder called 'shakira' and copied the makefile file from the i9000 folder and the MiniCM7(thats a gb rom for my device you can take any gb rom ) zip to it.
You also need to decompile the following APK files and put the resulting folder on the 'shakira' folder:
/system/framework/android.policy.jar
/system/framework/framework.jar
/system/framework/framework-res.apk
/system/app/SystemUI.apk
/system/framework/services.jar
and the apps defined on the 'local-modified-apps' below
STEP 4: Editing the Makefile
The makefile has the following structure:
Code:
#
# Makefile for i9100
#
# The original zip file, MUST be specified by each product
local-zip-file := I9100ZCKJ1.zip
# The output zip file of MIUI rom, the default is porting_miui.zip if not specified
local-out-zip-file := MIUI_9100.zip
# All apps from original ZIP, but has smali files chanded
local-modified-apps := LogsProvider Phone MediaProvider Settings
# All apks from MIUI execept MIUISystemUI and framework-miui-res.apk
local-miui-apps := Contacts ContactsProvider Mms TelephonyProvider ThemeManager Launcher2 \
DownloadProvider TelocationProvider Notes Music Torch DownloadProviderUi Updater
# All apps need to be removed from original ZIP file
local-remove-apps := AlipayGphone AmsComposer AndroidQQ_Samsung_Seine BuddiesNow cooldict glyder2 \
ImgoTV iReader kaixin001 Memo MiniDiary MinimalHome mreader PressReader ReadersHub Renren \
Sinamicroblog SinaNews SinaStock SinaWeather SocialHub Tencentmicroblog \
TomEbook Tonghuashun TouchWiz30Launcher Youku_Samsung_seine MusicPlayer \
MediaHub PhotoRetouching VideoEditor thinkdroid QYVideoClient \
Days DigitalClock Dlna DualClock Email EmailWidget FTC FTM FTS Kobo \
Microbesgl Navigator PostIt Protips QuickSearchBox SamsungApps SamsungAppsUNA3 \
SamsungIM SamsungWidget_ProgramMonitor SecretWallpaper1 SecretWallpaper2 \
SevenEngine SnsAccountKx SnsAccountRr SnsDisclaimer SnsImageCache SnsProvider \
Tasks TasksProvider Term TrimApp TwCalendarAppWidget Zinio \
samsungappswidget syncmldm viva_tts
# To include the local targets before and after zip the final ZIP file,
# and the local-targets should:
# (1) be defined after including porting.mk if using any global variable(see porting.mk)
# (2) the name should be leaded with local- to prevent any conflict with global targets
local-pre-zip := local-zip-misc
local-after-zip:= local-test
# The local targets after the zip file is generated, could include 'zip2sd' to
# deliver the zip file to phone, or to customize other actions
include $(PORT_BUILD)/porting.mk
# To define any local-target
local-zip-misc:
cp misc/com.google.android.maps.jar $(ZIP_DIR)/system/framework/
@echo Add google apks
cp misc/apk/* $(ZIP_DIR)/system/app/
@echo Replace build.prop
cp misc/build.prop $(ZIP_DIR)/system/build.prop
local-test:
echo "an example action"
STEP 5: Apply MIUI Changes
To apply the MIUI changes on the choosen ROM, type those commands in the root of PatchROM:
Code:
source build/envsetup.sh
cd shakira # CHANGE THIS LINE TO MATCH THE FOLDER YOU CREATED IN STEP 3
make
Now it should decompile the ROM and merge the ROM's smali files with the MIUI files, and create an ZIP file with the MIUI rom
We already have a guide of ' Porting Official MIUI ' here is the link :
http://forum.xda-developers.com/showthread.php?t=1452041&highlight=miui
but yea for sure understanding your guide seems to be way easier......thanks for the efforts
Oops I didn't see that
farazfaraz said:
The PatchROM docs recommend that we use a stock Gingerbread ROM from the device manufacturer, but there's no official Gingerbread for our device, so I used a MiniCM7 zip instead.
Click to expand...
Click to collapse
Maybe I misunderstand, but why you say there isn't gingerbread for OB? We have different version of Ginger, as the 20N and the 20B. And also we have source code from LG of 20N.
skapez said:
Maybe I misunderstand, but why you say there isn't gingerbread for OB? We have different version of Ginger, as the 20N and the 20B. And also we have source code from LG of 20N.
Click to expand...
Click to collapse
This is from another device. Thats why this is stated. I dont remember which exactly, but I think it wasnt even lg. So just grab a stock ROM and try to port ;-)
Sent from my LG-P970 using Tapatalk
I tryed that, but have error in V step, in compiling decompiled apks,
Can anyone help me? What I can do with that?
Code:
build .build/Phone.apk...
--------------------------------------------
cp -r Phone .build
/home/amper/PatchROM/tools/apktool b .build/Phone .build/Phone.apk
I: Checking whether sources has changed...
I: Smaling...
I: Checking whether resources has changed...
I: Building resources...
/home/amper/PatchROM/p970fiesta/.build/Phone/res/values-kk/strings.xml:267: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
/home/amper/PatchROM/p970fiesta/.build/Phone/res/values-kk/strings.xml:267: error: Unexpected end tag string
/home/amper/PatchROM/p970fiesta/.build/Phone/res/values-uk/strings.xml:268: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
/home/amper/PatchROM/p970fiesta/.build/Phone/res/values-uk/strings.xml:269: error: Unexpected end tag string
aapt: warning: string 'badPin' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'badPuk2' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'card_title_dialing' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'card_title_on_hold' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'invalidPin' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'invalidPin2' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'menu_add' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'menu_delete' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'menu_edit' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'menu_ignore' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'mismatchPin' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'name' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'puk_requested' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'puk_unlocked' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'roaming_reenable_message' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'roaming_warning' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'save' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'simContacts_emptyLoading' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'simContacts_title' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
aapt: warning: string 'sum_carrier_select' has no default translation in /home/amper/PatchROM/p970fiesta/.build/Phone/res; found: pt_PT
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, /tmp/APKTOOL7887371696031411068.tmp, -I, /root/apktool/framework/1.apk, -S, /home/amper/PatchROM/p970fiesta/.build/Phone/res, -M, /home/amper/PatchROM/p970fiesta/.build/Phone/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, /tmp/APKTOOL7887371696031411068.tmp, -I, /root/apktool/framework/1.apk, -S, /home/amper/PatchROM/p970fiesta/.build/Phone/res, -M, /home/amper/PatchROM/p970fiesta/.build/Phone/AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
make: *** [.build/Phone.apk] Error 1
[email protected]:/home/amper/PatchROM/p970fiesta#
UPD: go to general thread http://forum.xda-developers.com/showthread.php?t=1483332
Good News for you, the beta porting miui rom for p970 will be published at the end of Feb.
lhysun said:
Good News for you, the beta porting miui rom for p970 will be published at the end of Feb.
Click to expand...
Click to collapse
Link?
Trolling in the deep
re4lsk said:
Link?
Trolling in the deep
Click to expand...
Click to collapse
Do you understand Chinese?
lhysun said:
Do you understand Chinese?
Click to expand...
Click to collapse
Google translate does
Trolling in the deep

[Q] APKTOOL error compile settings.apk

Hi,
I'm new to Android app developing.
I got an error from apktool.
All I just did is decompile JOYSettings.apk(came from CM7.2 iPhone-style ROM) with apktool(NOT apkmultitool) and edit the "strings.xml" in /res/ , just to correct the broken English made by the ROM cooker but got this error when compiling:
C:\Users\pan_2\Desktop\apk>apktool b JOYSettings.apk
I: Checking whether sources has changed...
I: Checking whether resources has changed...
I: Building resources...
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\layout-port\device_admin_add.xml:
4: error: Error: No resource type specified (at 'background' with value '@173025
04').
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\layout-port\device_admin_settings
.xml:4: error: Error: No resource type specified (at 'background' with value '@1
7302504').
Exception in thread "main" aapt: warning: string 'add_device_admin' has no defau
lt translation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_ask_enablement_and_lasting_discovery' has no de
fault translation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_C
N
aapt: warning: string 'bluetooth_ask_lasting_discovery' has no default translati
on in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_dialog_text' has no default translat
ion in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_notif_message' has no default transl
ation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_permission_request' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_discoverable_duration_summary' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_discoverable_duration_title' has no default tra
nslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_hid_profile_summary_connected' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_hid_profile_summary_use_for' has no default tra
nslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_is_discoverable_always' has no default translat
ion in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_profile_hid' has no default translation in C:\U
sers\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_summary_connected_to_hid' has no default transl
ation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_visibility_timeout' has no default translation
in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_visibility_timeout_summary' has no default tran
slation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'datetime_date_set_text' has no default translation in C:\
Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'datetime_time_set_text' has no default translation in C:\
Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'lock_settings_picker_title' has no default translation in
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'system_updata_info' has no default translation in C:\User
s\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
brut.androlib.AndrolibException: brut.common.BrutException: could not exec comma
nd: [aapt, p, -F, C:\Users\pan_2\AppData\Local\Temp\APKTOOL6241782532963690871.t
mp, -I, C:\Users\pan_2\apktool\framework\1.apk, -S, C:\Users\pan_2\Desktop\apk\J
OYSettings.apk\res, -M, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\AndroidManife
st.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\pan_2\AppData\Local\Temp\APKTOOL6241782532963690871.tmp, -I, C:\Users\pan_2
\apktool\framework\1.apk, -S, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res, -M
, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
Can someone help me please
Sorry for being a noob
U need o put framework installed in apktool
unwritten sentance
Did u include resoures.arsc in compile?
spacecaker said:
U need o put framework installed in apktool
unwritten sentance
Click to expand...
Click to collapse
Sry, not spamming, but pls tell me how please.....
Btw, I think I can use apkmultitool and decompile the apk with dependencies
Btw2, I'm not even in high school yet, so.....
Thx anyway
AashayS said:
Did u include resoures.arsc in compile?
Click to expand...
Click to collapse
No...., not in the file.
panpjp said:
Sry, not spamming, but pls tell me how please.....
Btw, I think I can use apkmultitool and decompile the apk with dependencies
Btw2, I'm not even in high school yet, so.....
Thx anyway
Click to expand...
Click to collapse
Some apk files need to read framework's structure so if it requires, u need to install framework-res. and about ur errors, maybe it's caused by missing framework-res. Try to install original framework-res by following command:
Code:
apktool if framework-res.apk
You have only two errors hope u can figure out :
Code:
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_add.xml:
4: error: Error: No resource type specified (at 'background' with value '@173025
04').
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_settings
.xml:4: error: Error: No resource type specified (at 'background' with value '@1
7302504').
Solution : open apk file in 7zip and copy resources.arsc to the decompiled dir . Now compile
| Google+ |
As devilsking stated above,there are just 2 errors and could solved by installing the right framework maybe.
Code:
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_add.xml:
4: error: Error: No resource type specified (at 'background' with value '@173025
04').
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_settings
.xml:4: error: Error: No resource type specified (at 'background' with value '@1
7302504').
Caused by ids/values as stated (cant say much because the apk is not provided by you).
The rest of the errors are caused because of not having the exact translations throughout all the languages that the roms supports.
---------- Post added at 08:58 PM ---------- Previous post was at 08:57 PM ----------
AashayS said:
Solution : open apk file in 7zip and copy resources.arsc to the decompiled dir . Now compile
| Google+ |
Click to expand...
Click to collapse
-_- maybe you could point out where resources.arsc is located when an apk is decompiled?
Classes.dex gets decompiled into smali files and resources.arsc gets decompiled into xml files when an apk is decompiled.
devilsking said:
Some apk files need to read framework's structure so if it requires, u need to install framework-res. and about ur errors, maybe it's caused by missing framework-res. Try to install original framework-res by following command:
Code:
apktool if framework-res.apk
You have only two errors hope u can figure out :
Code:
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_add.xml:
4: error: Error: No resource type specified (at 'background' with value '@173025
04').
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\lay out-port\device_admin_settings
.xml:4: error: Error: No resource type specified (at 'background' with value '@1
7302504').
Click to expand...
Click to collapse
Figured it out before you posted Thanks anyway.
P.S. I hitted Thx already.
Thanks!
Modulüs said:
Solution : open apk file in 7zip and copy resources.arsc to the decompiled dir . Now compile
| Google+ |
Click to expand...
Click to collapse
Thanks so much, but if I am editing XML files, especially in the values folder, will this still be OK. (Isn't the values folder the decompiled .arsc file?)
Hi, i have a big problem. I'm trying to edit settings.apk, i copied the original Resources-arsc in the folder because without that file was not working, then recompiled... everything seems to work, but files inside APK are not encoded!!!!! in fact the apk doens't work anymore...
I've tried to google it but didn't find any help...
panpjp said:
Hi,
I'm new to Android app developing.
I got an error from apktool.
All I just did is decompile JOYSettings.apk(came from CM7.2 iPhone-style ROM) with apktool(NOT apkmultitool) and edit the "strings.xml" in /res/ , just to correct the broken English made by the ROM cooker but got this error when compiling:
C:\Users\pan_2\Desktop\apk>apktool b JOYSettings.apk
I: Checking whether sources has changed...
I: Checking whether resources has changed...
I: Building resources...
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\layout-port\device_admin_add.xml:
4: error: Error: No resource type specified (at 'background' with value '@173025
04').
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res\layout-port\device_admin_settings
.xml:4: error: Error: No resource type specified (at 'background' with value '@1
7302504').
Exception in thread "main" aapt: warning: string 'add_device_admin' has no defau
lt translation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_ask_enablement_and_lasting_discovery' has no de
fault translation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_C
N
aapt: warning: string 'bluetooth_ask_lasting_discovery' has no default translati
on in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_dialog_text' has no default translat
ion in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_notif_message' has no default transl
ation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_connection_permission_request' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_discoverable_duration_summary' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_discoverable_duration_title' has no default tra
nslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_hid_profile_summary_connected' has no default t
ranslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_hid_profile_summary_use_for' has no default tra
nslation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_is_discoverable_always' has no default translat
ion in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_profile_hid' has no default translation in C:\U
sers\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_summary_connected_to_hid' has no default transl
ation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_visibility_timeout' has no default translation
in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'bluetooth_visibility_timeout_summary' has no default tran
slation in C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'datetime_date_set_text' has no default translation in C:\
Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'datetime_time_set_text' has no default translation in C:\
Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'lock_settings_picker_title' has no default translation in
C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
aapt: warning: string 'system_updata_info' has no default translation in C:\User
s\pan_2\Desktop\apk\JOYSettings.apk\res; found: zh_CN
brut.androlib.AndrolibException: brut.common.BrutException: could not exec comma
nd: [aapt, p, -F, C:\Users\pan_2\AppData\Local\Temp\APKTOOL6241782532963690871.t
mp, -I, C:\Users\pan_2\apktool\framework\1.apk, -S, C:\Users\pan_2\Desktop\apk\J
OYSettings.apk\res, -M, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\AndroidManife
st.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\pan_2\AppData\Local\Temp\APKTOOL6241782532963690871.tmp, -I, C:\Users\pan_2
\apktool\framework\1.apk, -S, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\res, -M
, C:\Users\pan_2\Desktop\apk\JOYSettings.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:191)
... 6 more
Can someone help me please
Sorry for being a noob
Click to expand...
Click to collapse
Try this process:
1. Open apk file in 7zip
2.Copy RESSOURCES.arsc and META-Inf to the decompiled dir
3. Recompile your Settings apk.
I use apktool but that's true for apkmultitool, VTS, anroidMultitool ....

I Need Help, Will Give Thanks, Please Help Me Change Popup Menu Text Color To White

{
"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"
}
PLEASE HELP ME, I WILL GIVE THANKS, IT WOULD MEAN ALOT, AND PLEASE DONT
SEND ME LINKS TO POST, I HAVE SEARCHED AND TRIED EVERYTHING
THE ROM IS XWLPG FOR I9100 (SGS2) AND THE FRAMEWORK INCLUDES JKAY (IF IT MATTERS),, and when editing the styles.xml and you recompile, to i use old resources.arsc from the old untouched framework-res.apk, or should i just use the new one, or does it not matter?​
Well styles is in values folder which is in resources. So.....if you change styles xml how do you think your changes will take effect if you use the original one?
Depending how jkay implemented the text color though you may find changing that in styles also gives you white text on white backgrounds elsewhere in the rom.
Oh and theres no need FOR THE CAPS!
Sent from my GT-I9100 using Tapatalk 2
that didnt help me well, i will try and not use original resources.arsc file,
and some guides say to delete it before recompile (Wanam_Apk_Manager_ICS),
will the apk still work if i remove that file?
You need to think about what your doing rather than just doing it.
You decompile...change some files.
Then when you compile it says "do you want me to be helpful boss and keep the files you didnt mod?".
So you say "yes please that would be very kind my good sir" and it creates the keep folder. From this folder you delete any files you modded. So if you modded styles you need to delete resources (as its in the values folder that creates resources).
Now it compiles the files named in keep folder and says "hang on boss, I dont have a resources file! I best make one from the modded values files!"
So it uses your values folder to create the new resources and keeps everything else from the original apk.
Make sense?
Alternatively just use apktool on its own instead of apkmanager. No questions about keeping files
Sent from my GT-I9100 using Tapatalk 2
what tool are you using, mine doesn't make a resources.arsc out of my values, maybe because i get an error, but for some reason it lets me finsish up work in the keep folder, than at the end the new apk, has no resources.arsc inside, i knew this could never be, please upload the tool your using for me
You messed up styles then by the sounds of it. Read your log file. It will tell you what the error is
Sent from my GT-I9100 using Tapatalk 2
Try textappearance.holo.large (add an item for text color to that style to stop it inheriting from parent...)
If that's the right one create a new style/textappearance, locate the style for the dialog/popup and direct it towards your textappearance instead of the one its using. That would *I think* work and also prevent any color issues.
Resources.arsc contains styles so you can't delete that if you're making changes...
Sent from my GT-I9100 using xda premium
these error's happend without me even editing a thing, stock framework-res.apk deodexed only, and i get these error's i think there i the tool?
how do i fix
You have a broken .9 file....
Tw_ab_transparent_dark_holo.9.png
And your plurals file is wrong at line 79. You need to replace "$d of $d" with "%1$d of %2$d" in all the plurals mentioned at the top of the log.
Sent from my GT-I9100 using Tapatalk 2
what wrong with the plurals.xml ? i tried editing line 79. something
ok i get this now when i compile after deleting that png image
--------------------------------------------------------------------------
|Thu 06/28/2012 -- 15:53:11.32|
--------------------------------------------------------------------------
'mode' is not recognized as an internal or external command,
operable program or batch file.
java version "1.7.0_04"
Java(TM) SE Runtime Environment (build 1.7.0_04-b22)
Java HotSpot(TM) Client VM (build 23.0-b21, mixed mode, sharing)
'xcopy' is not recognized as an internal or external command,
operable program or batch file.
'xcopy' is not recognized as an internal or external command,
operable program or batch file.
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rGB\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rGB\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rUS\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rUS\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-es\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-es\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-pt\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-pt\plurals.xml:79: error: Found tag </item> where </plurals> is expected
aapt: warning: string 'abbrev_wday_abbrev_month_day_no_year' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: sr
aapt: warning: string 'abbrev_wday_day_abbrev_month_no_year' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: sr
aapt: warning: string 'policydesc_allow_htmlemail' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_US
aapt: warning: string 'policylab_allow_htmlemail' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_US
aapt: warning: string 'wifi_p2p_pbc_go_negotiation_request_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
aapt: warning: string 'wifi_p2p_pin_display_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
aapt: warning: string 'wifi_p2p_pin_go_negotiation_request_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\Users\ALIAL-~1\AppData\Local\Temp\APKTOOL6229869327544781716.tmp, -x, -S, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res, -M, C:\Apk_Manager_ICS\other\..\projects\framework-res.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:\Users\ALIAL-~1\AppData\Local\Temp\APKTOOL6229869327544781716.tmp, -x, -S, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res, -M, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
ok i have fixed the plurals problem
and im still getting the same mistake
--------------------------------------------------------------------------
|Thu 06/28/2012 -- 16:09:39.63|
--------------------------------------------------------------------------
'mode' is not recognized as an internal or external command,
operable program or batch file.
java version "1.7.0_04"
Java(TM) SE Runtime Environment (build 1.7.0_04-b22)
Java HotSpot(TM) Client VM (build 23.0-b21, mixed mode, sharing)
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
aapt: warning: string 'abbrev_wday_abbrev_month_day_no_year' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: sr
aapt: warning: string 'abbrev_wday_day_abbrev_month_no_year' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: sr
aapt: warning: string 'policydesc_allow_htmlemail' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_US
aapt: warning: string 'policylab_allow_htmlemail' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_US
aapt: warning: string 'wifi_p2p_pbc_go_negotiation_request_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
aapt: warning: string 'wifi_p2p_pin_display_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
aapt: warning: string 'wifi_p2p_pin_go_negotiation_request_message' has no default translation in C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res; found: en_GB es pt
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rGB\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rGB\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rUS\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-en-rUS\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-es\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-es\plurals.xml:79: error: Found tag </item> where </plurals> is expected
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-pt\plurals.xml:79: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res\values-pt\plurals.xml:79: error: Found tag </item> where </plurals> is expected
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\Users\ALIAL-~1\AppData\Local\Temp\APKTOOL3759429166766336930.tmp, -x, -S, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res, -M, C:\Apk_Manager_ICS\other\..\projects\framework-res.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:\Users\ALIAL-~1\AppData\Local\Temp\APKTOOL3759429166766336930.tmp, -x, -S, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\res, -M, C:\Apk_Manager_ICS\other\..\projects\framework-res.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
You meed to fix it in not just Values but in Values-en-rGB etc etc. Just look at the log. It tells you which folder translations are wrong also
Sent from my GT-I9100 using Tapatalk 2
please include more detail, be more specific
There is more than one values folder. The item i said need changing needs changing in ALL plurals files not just one. I cant give more detail than that as there isnt any.
You need a new apktool to stop it happening in future. Googling "line 79 plurals error" found one immediately.
Sent from my GT-I9100 using Tapatalk 2
Hello,
i don't know if this could be helpful but Vertumus had the same problem with his theme ICS DOMINATION. Maybe if you asked him he could give his opinion.
thanks man, this is great, i am now compiling and decompile apks, liked it used to be
on gb, great now that that's covered, let talk about changing that font color
anyone know how to change popup menu txt colors?
any skilled theme rs out there, please
android_isda_**** said:
any skilled theme rs out there, please
Click to expand...
Click to collapse
This guy already told you how....
m1keyb said:
Try textappearance.holo.large (add an item for text color to that style to stop it inheriting from parent...)
If that's the right one create a new style/textappearance, locate the style for the dialog/popup and direct it towards your textappearance instead of the one its using. That would *I think* work and also prevent any color issues.
Resources.arsc contains styles so you can't delete that if you're making changes...
Click to expand...
Click to collapse
By the way, before you said you fixed compiling with the broken .9 by deleting it. If you push a framework-res with a missing image and something tries to use it you will get a reboot.
Sent from my GT-I9100 using Tapatalk 2
i just copied it using winrar from original ,
street smarts
yes but i still need to know the file that contains it, and if i know that
what stopping me from just adding a normal color in hex code, all i need to
know is its location, witch file, what line???

UOT kitchen SHTF problem pls help me

Hello guys.i had a SHTF problem with the uot kitchen,i used a galaxy ace s5830i with a mindcr rom.
Can anyone help me
Thanks
ERROR
Code:
Error log: UOT-02-05-18-02-1-SHTF.txt
Decompiling framework-res.apk UOT-02-05-18-02-1
I: Loading resource table...
I: Loaded.
I: Decoding AndroidManifest.xml with resources...
I: Decoding file-resources...
I: Decoding values */* XMLs...
I: Done.
I: Copying assets and libs...
Decompiling SystemUI.apk UOT-02-05-18-02-1
I: Framework installed to: /root/apktool/framework/1.apk
I: Baksmaling...
I: Loading resource table...
I: Loaded.
I: Decoding AndroidManifest.xml with resources...
I: Loading resource table from file: /root/apktool/framework/1.apk
I: Loaded.
I: Decoding file-resources...
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Coordinate out of bounds!
at sun.awt.image.ByteInterleavedRaster.setDataElements(ByteInterleavedRaster.java:546)
at java.awt.image.BufferedImage.setRGB(BufferedImage.java:988)
at brut.androlib.res.decoder.Res9patchStreamDecoder.drawVLine(Res9patchStreamDecoder.java:99)
at brut.androlib.res.decoder.Res9patchStreamDecoder.decode(Res9patchStreamDecoder.java:58)
at brut.androlib.res.decoder.ResStreamDecoderContainer.decode(ResStreamDecoderContainer.java:34)
at brut.androlib.res.decoder.ResFileDecoder.decode(ResFileDecoder.java:102)
at brut.androlib.res.decoder.ResFileDecoder.decode(ResFileDecoder.java:68)
at brut.androlib.res.AndrolibResources.decode(AndrolibResources.java:169)
at brut.androlib.Androlib.decodeResourcesFull(Androlib.java:113)
at brut.androlib.ApkDecoder.decode(ApkDecoder.java:99)
at brut.apktool.Main.cmdDecode(Main.java:131)
at brut.apktool.Main.main(Main.java:68)
Compiling framework-res.apk UOT-02-05-18-02-1
W: Could not find sources
I: Building resources...
aapt: warning: string 'Keypad_cancel' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'keyguard_pin_accepted' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'lockscreen_pin_locked_message' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'lockscreen_ruim_pin_blocked' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'lockscreen_sim_pin_blocked' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'permdesc_accessUsb' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: en_GB nb
aapt: warning: string 'permdesc_readOwnerData' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'permdesc_writeOwnerData' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'permlab_accessUsb' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: en_GB nb
aapt: warning: string 'permlab_readOwnerData' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'permlab_writeOwnerData' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'status_bar_clear_all_button' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'status_bar_latest_events_title' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'status_bar_no_notifications_title' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'status_bar_ongoing_events_title' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'stopSelectingText' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_dual_clock_city_local' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_dual_clock_city_seoul' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_fake_call_activated' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_glass_lock_help_text_1' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_glass_lock_help_text_2' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_puzzle_lock_help_text_1' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_puzzle_lock_help_text_2' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_skt_missing_sim_message1' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_skt_missing_sim_message2' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_smart_unlock_help_text_1' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_smart_unlock_help_text_2' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: warning: string 'zzz_smart_unlock_sorry_text' has no default translation in /home/uotftp/port5/data/working_dir/UOT-02-05-18-02-1/fw_dec/res; found: is_IS
aapt: /lib/libz.so.1: no version information available (required by aapt)
I: Building apk file...
aapt: /lib/libz.so.1: no version information available (required by aapt)
Compiling SystemUI.apk UOT-02-05-18-02-1
I: Framework installed to: /home/uotftp/apktool/framework/1.apk
Exception in thread "main" brut.androlib.AndrolibException: brut.directory.PathNotExist: apktool.yml
at brut.androlib.Androlib.readMetaFile(Androlib.java:162)
at brut.androlib.Androlib.build(Androlib.java:179)
at brut.androlib.Androlib.build(Androlib.java:174)
at brut.apktool.Main.cmdBuild(Main.java:188)
at brut.apktool.Main.main(Main.java:70)
Caused by: brut.directory.PathNotExist: apktool.yml
at brut.directory.AbstractDirectory.getFileInput(AbstractDirectory.java:103)
at brut.androlib.Androlib.readMetaFile(Androlib.java:158)
... 4 more

[GUIDE] [JB] GRID LIDROID [wanam source]

Hello uncle2 kece' . .
i'll share guide how tu add lidroid toggles to grid :cyclops:
{
"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"
}
first u'r systemUI.apk suport Lidroid Toggles port by wanam
http://forum.xda-developers.com/showthread.php?t=1876384
http://forum.xda-developers.com/showthread.php?t=2032614
or my GUIDE here :
http://forum.xda-developers.com/showthread.php?t=2551787
REQUIREMENT:
- Brain
- Apktool/Apkmanager,etc
- Know how to decompile/recompiling Apk file
step:
Decompile SystemUI.apk
Downlod file Grid_file2.rar - 1.91 MB
extrack smali to SystemUI/smali/com/wanam/systemui/quickpanel/HERE
Recompile,
Push SystemUI.apk TO System/app
push LidroidSettings.apk TO System/app
push Lidroid-res.apk TO System/framework
reboot
Tested Samsung galaxy young 2 GT-S6310
thnk's :
Allah SWT
credit :
Wanam
iLLegaLDevS hit indonesian Awesome Development Team :highfive:
:cyclops:Sorry, bad English :cyclops:
up
this doesn't add those tabs, does it? (doesn't look like it, there's no xml editing etc)
doesn't work, is there anything else to be done besides replacing smali files? (maybe id's or something)
i found the following error in the logcat:
Code:
E/AndroidRuntime( 575): java.lang.RuntimeException: Unable to create service com.android.systemui.SystemUIService: android.content.res.Resources$NotFoundException: Resource ID #0x503001b
how can i find out what this id has to be?
mjz2cool said:
this doesn't add those tabs, does it? (doesn't look like it, there's no xml editing etc)
doesn't work, is there anything else to be done besides replacing smali files? (maybe id's or something)
i found the following error in the logcat:
Code:
E/AndroidRuntime( 575): java.lang.RuntimeException: Unable to create service com.android.systemui.SystemUIService: android.content.res.Resources$NotFoundException: Resource ID #0x503001b
how can i find out what this id has to be?
Click to expand...
Click to collapse
0x503001b hex public lidroid <public type="layout" name="lidroid_grid_scrollview" id="0x0503001b" />
use my lidroid-res.apk sir, if not. decompile my lidroid-res.apk find,n push "lidroid_grid_scrollview.xml" in SystemUI.apk,
find hex public "lidroid_grid_scrollview" and replace to 0x503001b
good Luck!!
#sorry bad english
dugeriss said:
0x503001b hex public lidroid <public type="layout" name="lidroid_grid_scrollview" id="0x0503001b" />
use my lidroid-res.apk sir, if not. decompile my lidroid-res.apk find,n push "lidroid_grid_scrollview.xml" in SystemUI.apk,
find hex public "lidroid_grid_scrollview" and replace to 0x503001b
good Luck!!
#sorry bad english
Click to expand...
Click to collapse
so i just have to add the 2 smali folders in the smali folder in my systemui (com and wanam into systemui.apk/smali) and use your lidroid-res.apk?
and where is this id? should it be in lidroid-res?
ah, now i see, i have to use the lidroid-res in the grid_file2.rar, thanks anyway!
---------- Post added at 02:29 PM ---------- Previous post was at 02:07 PM ----------
got it working now, but i want to get 3 toggles on a row, how can i do that?
after decompiling lidroid-res.apk and modifying it, i can recompile it, but i get the problem it can't find the resource with id 0x5030004, do you know what i should put in the akptool.yml file?
mjz2cool said:
after decompiling lidroid-res.apk and modifying it, i can recompile it, but i get the problem it can't find the resource with id 0x5030004, do you know what i should put in the akptool.yml file?
Click to expand...
Click to collapse
here sir
http://forum.xda-developers.com/showthread.php?p=31991217
dugeriss said:
here sir
http://forum.xda-developers.com/showthread.php?p=31991217
Click to expand...
Click to collapse
thanks! now i can translate the whole thing, and btw, do you know how i can get 3 toggles instead of 4 a row?
mjz2cool said:
thanks! now i can translate the whole thing, and btw, do you know how i can get 3 toggles instead of 4 a row?
Click to expand...
Click to collapse
Sorry sir i can't ,.
Last time im try, n lost some toggles,
I cant fix it
dugeriss said:
Sorry sir i can't ,.
Last time im try, n lost some toggles,
I cant fix it
Click to expand...
Click to collapse
can you tell me how you tried to do it?
mjz2cool said:
can you tell me how you tried to do it?
Click to expand...
Click to collapse
Powerwidget.smali
Dowoload attachmend from i get source (read in bottom my firs post )
Open powerwidget.smali
Find 0x5 change 0x3
dugeriss said:
Powerwidget.smali
Download attachmend from i get source (read in bottom my firs post )
Open powerwidget.smali
Find 0x5 change 0x3
Click to expand...
Click to collapse
Or Here
http://forum.xda-developers.com/showpost.php?p=44182527&postcount=38&nocache=1&z=1694951676763594
dugeriss said:
Powerwidget.smali
Dowoload attachmend from i get source (read in bottom my firs post )
Open powerwidget.smali
Find 0x5 change 0x3
Click to expand...
Click to collapse
doesn't seem to change anything for me.
mjz2cool said:
doesn't seem to change anything for me.
Click to expand...
Click to collapse
read ,or use powerwidget.smali from here ,.
http://forum.xda-developers.com/showthread.php?t=2406596
Hehe.. Worked bro..
bamzzz said:
Hehe.. Worked bro..
Click to expand...
Click to collapse
Thanks om for feedback :highfive: toss
Help Please
Dear developers....
I'm continuously getting these error for compiling SystemUI.apk. I just decompiled my stock SystemUI.apk in several ways like apktool, AndroidMultitool and few other methods. all of them successfully decompile. But when i want to recompile it shows the following errror every time. even i dont modify my SystemUI.apk it showsthe same errror. Please help me.
I: Checking whether sources has changed...
I: Smaling...
I: Checking whether resources has changed...
I: Building resources...
aapt: warning: string 'abbrev_wday_abbrev_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_day_abbrev_month_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'abbrev_wday_month_day_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'am' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_long_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_medium_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_short_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_friday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_monday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_saturday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_sunday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_thursday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_tuesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'day_of_week_shortest_wednesday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'full_wday_month_day_no_year' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_long_standalone_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_medium_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_april' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_august' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_december' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_february' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_january' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_july' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_june' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_march' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_may' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_november' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_october' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'month_shortest_september' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'pm' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'quickpanel_data_roaming_disable_toast' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: ar az bg ca cs da de el en_PH en_US es_ES es_US et eu fa fi fr fr_CA ga gl hr hu hy in is it iw ja ka kk ko lt lv mk ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv th tr uk ur uz vi zh_CN zh_HK zh_SG zh_TW
aapt: warning: string 'quickpanel_data_roaming_enable_toast' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: ar az bg ca cs da de el en_PH en_US es_ES es_US et eu fa fi fr fr_CA ga gl hr hu hy in is it iw ja ka kk ko lt lv mk ms nb nl pl pt_BR pt_PT ro ru sk sl sr sv th tr uk ur uz vi zh_CN zh_HK zh_SG zh_TW
aapt: warning: string 'today' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'tomorrow' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'twelve_hour_time_format' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
aapt: warning: string 'yesterday' has no default translation in C:\AndroidMultitool\Decompiled_apk\SystemUI\res; found: mk
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:14: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:19: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_notification_panel_title.xml:21: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarNotificationText').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:5: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:6: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:7: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:10: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:11: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:12: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:13: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:15: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:16: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:17: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:18: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:21: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:22: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:23: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:26: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:27: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:28: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:29: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:32: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:33: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsRow').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:34: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsIcon').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:35: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsContents').
C:\AndroidMultitool\Decompiled_apk\SystemUI\res\la yout\system_bar_settings_view.xml:37: error: Error: No resource found that matches the given name (at 'style' with value '@style/StatusBarPanelSettingsPanelSeparator').
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:353)
at brut.androlib.Androlib.buildResources(Androlib.jav a:281)
at brut.androlib.Androlib.build(Androlib.java:209)
at brut.androlib.Androlib.build(Androlib.java:177)
at brut.apktool.Main.cmdBuild(Main.java:237)
at brut.apktool.Main.main(Main.java:79)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:406)
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:334)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, C:\Users\Shampod\AppData\Local\Temp\APKTOOL7479172 192445785852.tmp, -0, arsc, -I, C:\Users\Shampod\apktool\framework\1.apk, -S, C:\AndroidMultitool\Decompiled_apk\SystemUI\res, -M, C:\AndroidMultitool\Decompiled_apk\SystemUI\Androi dManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.java:404)
... 6 more
The system cannot find the file specified.
The system cannot find the file specified.
shampod said:
.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=49272211&postcount=4
dugeriss said:
Hello uncle2 kece' . .
i'll share guide how tu add lidroid toggles to grid :cyclops:
first u'r systemUI.apk suport Lidroid Toggles port by wanam
http://forum.xda-developers.com/showthread.php?t=1876384
http://forum.xda-developers.com/showthread.php?t=2032614
or my GUIDE here :
http://forum.xda-developers.com/showthread.php?t=2551787
REQUIREMENT:
- Brain
- Apktool/Apkmanager,etc
- Know how to decompile/recompiling Apk file
step:
Decompile SystemUI.apk
Downlod file Grid_file2.rar - 1.91 MB
extrack smali to SystemUI/smali/com/wanam/systemui/quickpanel/HERE
Recompile,
Push SystemUI.apk TO System/app
push LidroidSettings.apk TO System/app
push Lidroid-res.apk TO System/framework
reboot
Tested Samsung galaxy young 2 GT-S6310
thnk's :
Allah SWT
credit :
Wanam
iLLegaLDevS hit indonesian Awesome Development Team :highfive:
:cyclops:Sorry, bad English :cyclops:
Click to expand...
Click to collapse
How to make it transparent ?
Ikhsan_novindri said:
How to make it transparent ?
Click to expand...
Click to collapse
decompile lidroid-res.apk/res/power_widget_button.xml
find background, n whatever u want

Categories

Resources