[TUTORIAL] Make Apex/Nova Launcher themes[NOOB-FRIENDLY][WIP] - Nova Launcher

{
"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"
}
Introduction:
OK, I know there are already some guides on this, but since I've got some requests and saw people confused, so I'm making this really simple to follow noob-friendly guide. Well if you got any problems, just ask here Also a guide already exists about this but I thought of making this with some screenshots and easy to follow steps and more explaination.
This guide is applicable only to Apex/Nova launchers, since I find these 2 the best among all the great launchers out there. If I get time, I'll add for more
Stuff required:
# Android ADT bundle - This includes nearly everything thats needed.
# JDK - To run your eclipse
# Icons and Wallpapers and maybe some fonts - You can find many nice stuff here
# A good photo editing software is RECOMMENDED. You can use PhotoShop but if you are new, I'd recommend GIMP(google it).
# Some patience and ability to use google search.
Instructions:
0. Make sure JDK, SDK and eclipse are properly setup.
1. Download the base template from here and extract it.
2. Now open eclipse.
For windows-
Double Click
Click to expand...
Click to collapse
For linux-
1. Extract the ADT bundle you downloaded.
2. Now cd to the directory where adt bundle is present and type cd adt*(or whatever the name of your adb folder is).
3. Now type
Code:
$ cd eclipse
$ ./eclipse
Click to expand...
Click to collapse
3. Now from the eclipse menu bar, click on File.
4. Now click on Import.
5. Now under android choose Existing Android Code into Workspace.
6. Now click on Browse and navigate and select the Apex Sample Theme folder and click OK.
Optional: Check "Copy Projects into Workspace" if you want.
7. Now click Finish.
8. Now the first thing I recommend you is expand the Apex Theme Sample project and expand src folder.
9. Now right click on "com.yourname.iconpackname" and go to Refractor>>Rename.
10. Now rename according to your wish. Eclipse will automatically tell you if you do something's wrong with the name.
11. Now right-click on the main project and choose Android Tools>>Rename Application Package and write the exact same name as you did before. This will change everything according to your wish. But make sure to check the androidmanifest.xml as sometimes eclipse doesn't changes some stuff.
xx. After you do all this finally its time to start real theming.

Icon Pack:
Make sure the icon pack you want to use, you have with you. But before adding them, some details-
Code:
Density Icon Size(px)
ldpi 36x36
mdpi 48x48
hdpi 72x72
xhdpi 96x96
xxhdpi 144x144
xxxhdpi 192x192
Ok now put the required icons with proper scaling into drawable-hdpi folder(well you could put in any drawable folder) and name it accordingly. I know many guides tell us to have the names of icons as package name but I didn't really needed to do them so you could do name them according to you but make sure to have name in lower-cases.
Now go to /res/xml and open appfilter.xml
You can find the activity name for browser. The sample name used for any activity is-
Code:
<item component="ComponentInfo{com.package.name/com.package.name.ActivityName}" drawable="icon_name"/>
You can find many more here- http://activities.droidicon.com/
Now go to iconpack.xml in /res/values and add the names icons in item tags inside the string array for icon pack.
Next go back to appfilter.xml.
You can see lines like:
Code:
<iconback img1="iconback" />
<iconmask img1="iconmask" />
<iconupon img1="iconupon" />
<scale factor="1.1" />
This gives uniformity, scaling and similar look to all your icons, even those not included in your pack so that all of them looks kind of similar.
Wallpapers:
Add all the wallpapers you want to add in drawable-nodpi folder. Also scale them to a small size, check sample theme for reference. Also in the smaller wallpaper, name it same to the original wallpaper but after that put "_small". E.g. the small thumbnail for a wallpaper named as x.png would be x_small.png.
Next open res/values/wallpapers.xml and according to the given list add all the list of wallpapers you have added. Also set a default wallpaper by writing name under
Code:
<string name="default_wallpaper">WRITE WALLPAPER NAME HERE</string>
This will be enough for setting wallpaper.
Fonts:
This is the simplest part. Just collect all the fonts you want to add and put them in /assets folder.
Changing your general information:
Now open /res/values/strings.xml. Here change everything according to your wish under the "Basic theme Information" comment.
Changing previews and feature graphinc:
Now apex launcher shows a feature graphic of your theme. So choose a good feature image of proper size and replace the one in drawable-hdpi with your new one. Also add some previews(upto 5) which all the people can see before installing. Just give them any name. I prefer preview1,preview2,etc.
Next open res/values/strings.xml and change the feature name to whatever the name of your feature image is. Leave as it is if you haven't change the name.
Similarly change names of preview and add some more in the same manner if you want but not more than 5.
This part of the tutorial can be left here and you could straight-away jump to the 3rd post. But if you are interested to make even better changes, read further on
Colors:
Now as you can see many of the colours, like some background colors or outlines are not the way you want. You can change those colours. Go to res/values/colors.xml. Here you can change all the colours you want. Here's a list of hexadecimal codes of colours-
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="White">#FFFFFF</color>
<color name="Ivory">#FFFFF0</color>
<color name="LightYellow">#FFFFE0</color>
<color name="Yellow">#FFFF00</color>
<color name="Snow">#FFFAFA</color>
<color name="FloralWhite">#FFFAF0</color>
<color name="LemonChiffon">#FFFACD</color>
<color name="Cornsilk">#FFF8DC</color>
<color name="Seashell">#FFF5EE</color>
<color name="LavenderBlush">#FFF0F5</color>
<color name="PapayaWhip">#FFEFD5</color>
<color name="BlanchedAlmond">#FFEBCD</color>
<color name="MistyRose">#FFE4E1</color>
<color name="Bisque">#FFE4C4</color>
<color name="Moccasin">#FFE4B5</color>
<color name="NavajoWhite">#FFDEAD</color>
<color name="PeachPuff">#FFDAB9</color>
<color name="Gold">#FFD700</color>
<color name="Pink">#FFC0CB</color>
<color name="LightPink">#FFB6C1</color>
<color name="Orange">#FFA500</color>
<color name="LightSalmon">#FFA07A</color>
<color name="DarkOrange">#FF8C00</color>
<color name="Coral">#FF7F50</color>
<color name="HotPink">#FF69B4</color>
<color name="Tomato">#FF6347</color>
<color name="OrangeRed">#FF4500</color>
<color name="DeepPink">#FF1493</color>
<color name="Fuchsia">#FF00FF</color>
<color name="Magenta">#FF00FF</color>
<color name="Red">#FF0000</color>
<color name="OldLace">#FDF5E6</color>
<color name="LightGoldenrodYellow">#FAFAD2</color>
<color name="Linen">#FAF0E6</color>
<color name="AntiqueWhite">#FAEBD7</color>
<color name="Salmon">#FA8072</color>
<color name="GhostWhite">#F8F8FF</color>
<color name="MintCream">#F5FFFA</color>
<color name="WhiteSmoke">#F5F5F5</color>
<color name="Beige">#F5F5DC</color>
<color name="Wheat">#F5DEB3</color>
<color name="SandyBrown">#F4A460</color>
<color name="Azure">#F0FFFF</color>
<color name="Honeydew">#F0FFF0</color>
<color name="AliceBlue">#F0F8FF</color>
<color name="Khaki">#F0E68C</color>
<color name="LightCoral">#F08080</color>
<color name="PaleGoldenrod">#EEE8AA</color>
<color name="Violet">#EE82EE</color>
<color name="DarkSalmon">#E9967A</color>
<color name="Lavender">#E6E6FA</color>
<color name="LightCyan">#E0FFFF</color>
<color name="BurlyWood">#DEB887</color>
<color name="Plum">#DDA0DD</color>
<color name="Gainsboro">#DCDCDC</color>
<color name="Crimson">#DC143C</color>
<color name="PaleVioletRed">#DB7093</color>
<color name="Goldenrod">#DAA520</color>
<color name="Orchid">#DA70D6</color>
<color name="Thistle">#D8BFD8</color>
<color name="LightGrey">#D3D3D3</color>
<color name="Tan">#D2B48C</color>
<color name="Chocolate">#D2691E</color>
<color name="Peru">#CD853F</color>
<color name="IndianRed">#CD5C5C</color>
<color name="MediumVioletRed">#C71585</color>
<color name="Silver">#C0C0C0</color>
<color name="DarkKhaki">#BDB76B</color>
<color name="RosyBrown">#BC8F8F</color>
<color name="MediumOrchid">#BA55D3</color>
<color name="DarkGoldenrod">#B8860B</color>
<color name="FireBrick">#B22222</color>
<color name="PowderBlue">#B0E0E6</color>
<color name="LightSteelBlue">#B0C4DE</color>
<color name="PaleTurquoise">#AFEEEE</color>
<color name="GreenYellow">#ADFF2F</color>
<color name="LightBlue">#ADD8E6</color>
<color name="DarkGray">#A9A9A9</color>
<color name="Brown">#A52A2A</color>
<color name="Sienna">#A0522D</color>
<color name="YellowGreen">#9ACD32</color>
<color name="DarkOrchid">#9932CC</color>
<color name="PaleGreen">#98FB98</color>
<color name="DarkViolet">#9400D3</color>
<color name="MediumPurple">#9370DB</color>
<color name="LightGreen">#90EE90</color>
<color name="DarkSeaGreen">#8FBC8F</color>
<color name="SaddleBrown">#8B4513</color>
<color name="DarkMagenta">#8B008B</color>
<color name="DarkRed">#8B0000</color>
<color name="BlueViolet">#8A2BE2</color>
<color name="LightSkyBlue">#87CEFA</color>
<color name="SkyBlue">#87CEEB</color>
<color name="Gray">#808080</color>
<color name="Olive">#808000</color>
<color name="Purple">#800080</color>
<color name="Maroon">#800000</color>
<color name="Aquamarine">#7FFFD4</color>
<color name="Chartreuse">#7FFF00</color>
<color name="LawnGreen">#7CFC00</color>
<color name="MediumSlateBlue">#7B68EE</color>
<color name="LightSlateGray">#778899</color>
<color name="SlateGray">#708090</color>
<color name="OliveDrab">#6B8E23</color>
<color name="SlateBlue">#6A5ACD</color>
<color name="DimGray">#696969</color>
<color name="MediumAquamarine">#66CDAA</color>
<color name="CornflowerBlue">#6495ED</color>
<color name="CadetBlue">#5F9EA0</color>
<color name="DarkOliveGreen">#556B2F</color>
<color name="Indigo">#4B0082</color>
<color name="MediumTurquoise">#48D1CC</color>
<color name="DarkSlateBlue">#483D8B</color>
<color name="SteelBlue">#4682B4</color>
<color name="RoyalBlue">#4169E1</color>
<color name="Turquoise">#40E0D0</color>
<color name="MediumSeaGreen">#3CB371</color>
<color name="LimeGreen">#32CD32</color>
<color name="DarkSlateGray">#2F4F4F</color>
<color name="SeaGreen">#2E8B57</color>
<color name="ForestGreen">#228B22</color>
<color name="LightSeaGreen">#20B2AA</color>
<color name="DodgerBlue">#1E90FF</color>
<color name="MidnightBlue">#191970</color>
<color name="Aqua">#00FFFF</color>
<color name="Cyan">#00FFFF</color>
<color name="SpringGreen">#00FF7F</color>
<color name="Lime">#00FF00</color>
<color name="MediumSpringGreen">#00FA9A</color>
<color name="DarkTurquoise">#00CED1</color>
<color name="DeepSkyBlue">#00BFFF</color>
<color name="DarkCyan">#008B8B</color>
<color name="Teal">#008080</color>
<color name="Green">#008000</color>
<color name="DarkGreen">#006400</color>
<color name="Blue">#0000FF</color>
<color name="MediumBlue">#0000CD</color>
<color name="DarkBlue">#00008B</color>
<color name="Navy">#000080</color>
<color name="Black">#000000</color>
</resources>
Changing the holo look and 9png editing:
Well if you had seen, you could have notice that if you run your theme, it will have kind of holo look. Its because of the pngs and .9.pngs present in res/drawable-xhdpi folder. As I mentioned, you should have some good photo editing software for this job since not all photo editors out there provide good 9png editing. You can search on how to edit the 9pngs properly and get your desired colour. Check the below links for reference-
http://developer.android.com/guide/developing/tools/draw9patch.html
http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch
NOW that this is done completely, next part is to test, sign and release your theme on google play.

Testing the theme:
There are 2 ways for testing your theme-
Way 1- Using the Eclipse Emulator:
Before you can run your application on the Android Emulator, you must create an AVD.
To run (or debug) your application, select Run > Run (or Run > Debug) from the Eclipse menu bar. The ADT plugin will automatically create a default run configuration for the project. Eclipse will then perform the following:
1. Compile the project (if there have been changes since the last build).
2. Create a default run configuration (if one does not already exist for the project).
3. Install and start the application on an emulator (or device), based on the Deployment Target defined by the run configuration.
Way 2- Using your phone(via ADB):
1. Enable USB debugging on your device.
On most devices running Android 3.2 or older, you can find the option under Settings > Applications > Development.
On Android 4.0 and newer, it's in Settings > Developer options.
Note: On Android 4.2 and newer, Developer options is hidden by default. To make it available, go to Settings > About phone and tap Build number seven times. Return to the previous screen to find Developer options.
Click to expand...
Click to collapse
2. Now connect your phone to PC via USB and ensure that your development computer can detect your device when connected via USB.
3. Now right click the project and select Run As>>Android Application.
4. Eclipse will recognize your device and prompt you.
5. Click on your device and select OK. Finally the theme will be installed in your phone.
You cannot release this app on google play since this apk is signed via debug key. So to be able to release it on google play, follow the below instructions.
Signing the theme:
Now to be able to published on google play this app has to be signed with a proper keystore, zipaligned, etc but eclipse's export wizard does it all.
If you want to change version name, change the following lines accordingly in your androidmanifes.xml-
Code:
android:versionCode="1"
android:versionName="1.0"
1. Select your project and click on File>>Export.
2. Now go through the export wizard and follow the instructions. I would recommend you to make a new keystore.
//Never lose your keystore or you wont be able to update your apps if the SHA1 keys dont match
3. Now when your apk is ready release it in your google play's developer account.
Also check this out.
Credits:
dennisxl- For base theme

Last reserved for adding troubleshooting with eclipse and other stuff.
Cheers,
AJ

Thumbs up :good: for the very detailed guide

That Simple?
Abhinav2 said:
Last reserved for adding troubleshooting with eclipse and other stuff.
Cheers,
AJ
Click to expand...
Click to collapse
Is it really that simple to make a icon pack app? You make it seem so easy. I am new to the coding world by the way just started learning Android SDK through lynda.com it was frustrating at first but I am starting to understand the language better. Any tips for me, like what I need to learn any good website references ect? It would be a huge help and thanks for this guide as well.

Related

[ Q / DEV ] Modifying Home.apk but not run after change

I want to change Home.apk from xHDPI 6x4 to 5x4.
After unpack Home.apk, I change in res\values-xhdpi\integers.xml
From
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="apptray_grid_rows">[B]6[/B]</integer>
<integer name="apptray_grid_cols">4</integer>
</resources>
To
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="apptray_grid_rows">[B]5[/B]</integer>
<integer name="apptray_grid_cols">4</integer>
</resources>
And repack Home.apk by Apktool
But after replace new Home.apk, it not working (everything ok but not show home launcher, black sreen). Please help me, thanks!:crying:
my old home.apk

[Guide] How To Theme Media Apps From Light To Dark | With According To Theme Feature

{
"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 Welcome my new guide, How To Theme Album / Movies / Music, from Light to Dark theme, and make both Light & Dark Theme change according to theme color .
Putting my name in Credits won't hurt you
IF You Can Make It A MORE Clean Way & Simple Way, Please PM Me.
​
Sections :
#1 - Light To Dark .
#2 - According To Theme .
Bugs :
Album Delete dialog is in White ( dark version ) .
Music Menu / overall icons ( options ) / is using white theme .
Movies Videos / Folders bg is in White ( changed everything, and no luck ) .
Album Theming :
Install Xperia Lollipop Framework .
Decompile Latest Album From Apkmirror.com .
Navigate to res/values/colors.xml
Blue : Search | between " > < " replace the current hex codes with the Red .
<color name="drawer_activated_color">#11ffffff</color>
<color name="drawer_background_color">#1a1a1a</color>
<color name="drawer_header_background_color">#ffffae00</color>
<color name="drawer_pressed_color">#40707070</color>
<color name="drawer_ripple_color">#1f000000</color>
<color name="default_background_dark_color">#ff0c0c0c</color>
<color name="default_background_light_color">#ff0c0c0c</color>
Click to expand...
Click to collapse
Navigate to res/values/styles.xml
Blue : Search | Make the rest look like the code below
<style name="Theme.Album.AppCompat.SupportActionBar.Base" parent="@style/Theme.AppCompat.Light.NoActionBar">
<style name="Theme.Album.DeviceDefault" parent="@style/Theme.Album.DeviceDefault.Base">
<item name="android:actionBarWidgetTheme">@style/Theme.DeviceDefault.Light.DarkActionBar</item>
<item name="com.sonyericsson.uxp:directionality">leftToRight</item>
</style>
<style name="Theme.Album.DeviceDefault.Base" parent="@style/Theme.DeviceDefault.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/Album.ActionBar.DeviceDefault</item>
<item name="android:windowActionBarOverlay">true</item>
<item name="android:actionOverflowButtonStyle">@style/OverflowMenu</item>
Click to expand...
Click to collapse
Movies Theming :
Install Xperia Lollipop Framework .
Decompile Latest Movies From Apkmirror.com .
Navigate to res/values/colors.xml
Blue : Search | between " > < " replace the current hex codes with the Red .
<color name="settings_background">#ff0c0c0c</color>
<color name="drawer_activated_background">#11ffffff</color>
<color name="drawer_list_background">#1a1a1a</color>
<color name="drawer_pressed_background">#40707070</color>
<color name="drawer_selected_background">#40707070</color>
<color name="white_theme_button_color">#ffffffff</color>
<color name="white_theme_button_pressed">#40707070</color>
<color name="white_theme_highlight_color">#1fffffff</color>
<color name="white_theme_primary_text_color">#ffffffff</color>
<color name="white_theme_ripple_selected">#3fffffff</color>
<color name="white_theme_secondary_text_color">#ffffffff</color>
Click to expand...
Click to collapse
Navigate to res/values/styles.xml
Blue : Search | Make the rest look like the code below
<style name="MoviesButton" parent="@android:attr/buttonStyleSmall">
<item name="android:textColor">@android:color/black</item>
<style name="Theme.Settings" parent="@style/Theme.AppCompat.NoActionBar">
<style name="ThemeOverlay.AppCompat.Light" parent="@style/Base.ThemeOverlay.AppCompat" />
<style name="WebView" parent="@style/Theme.AppCompat" />
<style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="@style/Base.Theme.AppCompat">
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Dark</item>
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
<item name="actionBarWidgetTheme">@null</item>
<item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
<item name="colorPrimary">@color/primary_material_dark</item>
<item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
</style>
<style name="Theme.AppCompat.Light" parent="@style/Base.Theme.AppCompat" />
<style name="Theme.AppCompat.Light.Dialog" parent="@style/Base.Theme.AppCompat.Dialog" />
<style name="Theme.AppCompat.Light.Dialog.Alert" parent="@style/Base.Theme.AppCompat.Dialog.Alert" />
<style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="@style/Base.Theme.AppCompat.Dialog.MinWidth" />
<style name="Theme.AppCompat.Light.DialogWhenLarge" parent="@style/Base.Theme.AppCompat.DialogWhenLarge" />
<style name="Theme.AppCompat.Light.NoActionBar" parent="@style/Theme.AppCompat">
<style name="Base.Theme.AppCompat.Light" parent="@style/Base.V7.Theme.AppCompat" />
<style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="@style/Base.Theme.AppCompat">
<style name="Base.V7.Theme.AppCompat.Light" parent="@style/Platform.AppCompat">
<style name="Platform.AppCompat.Light" parent="@android:style/Theme">
<style name="Platform.AppCompat.Light" parent="@android:style/Theme.Material">
Click to expand...
Click to collapse
Music Theming :
Install Xperia Lollipop Framework .
Decompile Latest Music From Apkmirror.com .
Navigate to res/values/colors.xml
Blue : Search | between " > < " replace the current hex codes with the Red .
<color name="miniplayer_bg">#000000</color>
<color name="moving_item_background">#ffe0e0e0</color>
<color name="music_background_color">#303030</color>
<color name="music_landingpage_background_color">#ff161819</color>
<color name="navigation_drawer_background">#1a1a1a</color>
<color name="navigation_drawer_pressed_background">#40707070</color>
<color name="navigation_drawer_selected_background">#80707070</color>
<color name="promotion_backplate_normal">#b3252525</color>
<color name="promotion_backplate_pressed">#b3808080</color>
<color name="list_divider_color">#ff494949</color>
<color name="list_divider_index_color">#ff292929</color>
Click to expand...
Click to collapse
Navigate to res/values/styles.xml
Blue : Search | Make the rest look like the code below
<style name="Base.V7.Theme.AppCompat.Light" parent="@style/Platform.AppCompat">
<style name="MusicBaseTheme.Settings" parent="@style/Theme.AppCompat.DarkActionBar">
<style name="MusicApplicationDialogTheme" parent="@style/Theme.AppCompat.Dialog" />
<style name="Theme.AppCompat.Light" parent="@style/Base.Theme.AppCompat" />
<style name="Base.V7.Theme.AppCompat.Light" parent="@style/Platform.AppCompat">
<style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="@style/Base.Theme.AppCompat">
<style name="Base.Theme.AppCompat.Light" parent="@style/Base.V7.Theme.AppCompat" />
<style name="Base.ThemeOverlay.AppCompat.Light" parent="@style/Platform.ThemeOverlay.AppCompat.Dark">
<style name="MusicApplicationTheme" parent="@style/MusicBaseTheme">
<item name="colorPrimary">#ffffffff</item>
<item name="colorPrimaryDark">#ffffffff</item>
<style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="@style/Base.Theme.AppCompat">
<item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Dark</item>
<item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
<item name="actionBarWidgetTheme">@null</item>
<item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
<item name="colorPrimary">@color/primary_material_light</item>
<item name="colorPrimaryDark">@color/primary_dark_material_light</item>
<style name="SettingTextViewStyle" parent="@style/BaseTextViewStyle">
<item name="android:textColor">android:color/white</item>
Click to expand...
Click to collapse
According To Theme :
Album
Navigate to res/values/colors.xml .
Search for the color code, and replace make it exact same
<color name="material_primary_color">@android:color/somc_color_primary_dark</color>
<color name="material_secondary_color">@android:color/somc_color_accent_dark</color>
<color name="primary_button_color">@android:color/somc_color_primary_dark</color>
Click to expand...
Click to collapse
Movies
Navigate to res/values/colors.xml .
Search for the color code, and replace make it exact same
<color name="material_accent">@android:color/somc_color_primary_dark</color>
<color name="material_primary">@android:color/somc_color_primary_dark</color>
<color name="material_primary_dark">@android:color/somc_color_accent_dark</color>
<color name="status_bar_color">@android:color/somc_color_accent_dark</color>
Click to expand...
Click to collapse
Music
Navigate to res/values/colors.xml .
Search for the color code, and replace make it exact same
<color name="material_accent">@android:color/somc_color_primary_dark</color>
<color name="material_accent_dark">@android:color/somc_color_accent_dark</color>
<color name="material_primary">@android:color/somc_color_primary_dark</color>
<color name="material_primary_dark">@android:color/somc_color_accent_dark</color>
<color name="mini_player_progress_bg">@android:color/somc_color_accent_dark</color>
<color name="mini_player_progress_fill">@android:color/somc_color_primary_dark</color>
<color name="player_progress_background">@android:color/somc_color_primary_dark</color>
<color name="primary_material_dark">@android:color/somc_color_accent_dark</color>
<color name="primary_material_light">@android:color/somc_color_primary_dark</color>
<color name="tab_indicator">@android:color/somc_color_accent_dark</color>
Click to expand...
Click to collapse
It May Not Be Complete According to theme, you may need to edit another colors codes, so until that .. to be updated .​
bigups brov.... theming getting interesting more & more!
whalesplaho said:
bigups brov.... theming getting interesting more & more!
Click to expand...
Click to collapse
Still more to come
I have a question, how i disable status bar in album app and movie app

[Cm12.1][Mod]Xperia Z5 framework[Tut][Updated]

Hello Guys i have here a tutorial to port Z5 framework so let's start :
Note : its only compatible with Sony apps and some others
needs : brain
basic knowledge of decompiling
sense of humor
to the tut :
first you need to download the the files bellow and replace the files with your files in your decompiled framework-res.apk
Seems easy now to the Hard part
it's not really hard but only for noobs
go to Values folder in your decompiled framework-res.apk
open ^attr-privates.xml and add this to the end of it (before </resources> ) (needed)
Code:
<attr name="somcSystemUiLight" format="boolean" />
<attr name="somcSkinnableTranslucentBars" format="boolean" />
Click to expand...
Click to collapse
open arrays.xml and add this to the end (idk if its needed)
Code:
<string-array name="special_language_codes">
<item>bs_BA</item>
<item>in_ID</item>
<item>jv_ID</item>
<item>su_ID</item>
<item>sr_RS</item>
<item>tl_PH</item>
</string-array>
<string-array name="special_language_names">
<item>Bosanski</item>
<item>Bahasa Indonesia</item>
<item>Jawa</item>
<item>Basa Sunda</item>
<item>Srpski</item>
<item>Tagalog</item>
</string-array>
<string-array name="share_priority_extra_weights">
<item>com.sonymobile.socialengine.plugins.facebook_sharefrwk,3.4</item>
<item>com.sonymobile.social.apps,3.3</item>
</string-array>
<string-array name="ps3_controller_names">
<item>PLAYSTATION(R)3 Controller</item>
<item>Sony PLAYSTATION(R)3 Controller</item>
<item>Sony Computer Entertainment Wireless Controller</item>
</string-array>
<string-array name="config_runtime_skin_blacklist">
<item>com.android.vending</item>
<item>com.google.android.googlequicksearchbox</item>
<item>com.android.packageinstaller</item>
</string-array>
<array name="config_packagesBlacklist" />
<array name="config_single_pdp_detection_fail_causes" />
<integer-array name="config_lteDbmThresholds">
<item>-85</item>
<item>-95</item>
<item>-105</item>
<item>-115</item>
<item>-140</item>
</integer-array>
<integer-array name="config_umtsDbmThresholds">
<item>2147483647</item>
<item>2147483647</item>
<item>2147483647</item>
<item>2147483647</item>
</integer-array>
<array name="removable_application_list" />
<array name="config_silentSmsPackageList" />
<string-array name="config_trustedInstallersPackageList">
<item>com.sonyericsson.updatecenter</item>
</string-array>
<array name="config_fac_list" />
<integer-array name="launchboost_params">
<item>0x2fe</item>
<item>0x3fe</item>
<item>0x4fe</item>
<item>0x5fe</item>
<item>0x702</item>
</integer-array>
<array name="system_server_preloaded_drawables">
<item>@drawable/somc_bg_dark</item>
<item>@drawable/somc_bg_light</item>
</array>
<array name="preloaded_skin_drawables">
<item>@drawable/somc_bg_dark</item>
<item>@drawable/somc_bg_light</item>
</array>
Click to expand...
Click to collapse
open bools.xml and do the same (not needed)
Code:
<bool name="config_enableCpuBoostForOverScrollerFling">false</bool>
<bool name="config_enableCpuBoostForScroller">false</bool>
<bool name="config_enableCpuBoostForAppLaunch">true</bool>
<bool name="config_enableLowAccPollFreqWithBoost">true</bool>
<bool name="config_clean_up_connections_before_lte">false</bool>
<bool name="config_enable_wifi_txpower_control">false</bool>
<bool name="config_enable_wifi_connection_handler">true</bool>
<bool name="config_telephony_enable_lte">true</bool>
<bool name="config_led_off_when_battery_fully_charged">false</bool>
<bool name="config_formatSdcardAtEasDeviceWipe">true</bool>
<bool name="config_enable_default_preferred_apn">false</bool>
<bool name="config_enable_easy_wakeup_mode">true</bool>
<bool name="config_enable_glove_mode">true</bool>
<bool name="config_enable_single_pdp_detection">false</bool>
<bool name="config_enable_extend_EONS">false</bool>
<bool name="config_wifi_use_iw_for_auto_regulatory_domain">false</bool>
<bool name="config_telephony_enable_apn_switch">true</bool>
<bool name="config_enable_eu_roaming_apn">false</bool>
<bool name="config_enable_eu_roaming_ui">false</bool>
<bool name="national_data_roaming_visibility">false</bool>
<bool name="disable_charge_popups">false</bool>
<bool name="config_enable_data_failure_dialog">false</bool>
<bool name="config_enable_extra_short_ussd_code">false</bool>
<bool name="config_deactivate_tether_after_sim_refresh_reset">false</bool>
<bool name="config_update_existing_applications_only">true</bool>
<bool name="config_display_emergency_calls_only_to_restricted_user">false</bool>
<bool name="config_wifi_eap_sim_supported">true</bool>
<bool name="config_ps3c_bt_supported">true</bool>
<bool name="config_hardware_auto_brightness_available">true</bool>
<bool name="config_bootAnimationSoundEnabled">true</bool>
<bool name="config_dualModeSimApnManagement">false</bool>
<bool name="config_move_apps_to_sd_card">true</bool>
<bool name="config_override_prefer_external">true</bool>
<bool name="config_enable_volte_default_value">false</bool>
<bool name="config_wifi_auto_add_ssid_support_for_dbdc_access_point">false</bool>
<bool name="config_enable_wifi_to_lte_transition_based_on_score">false</bool>
<bool name="config_enable_14digit_imei">false</bool>
<bool name="config_wifi_disable_autoconnect_for_bad_eapsim_networks">false</bool>
<bool name="config_gsm_enable_hd_icon">false</bool>
<bool name="config_suppress_usb_msc_notifications">true</bool>
<bool name="somc_center_alert_dialog_buttons">false</bool>
<bool name="somc_split_seekbar_bg">true</bool>
Click to expand...
Click to collapse
open colors.xml and do the same(important)
Code:
<color name="somc_color_dark_primary_dark">#ff158597</color>
<color name="somc_color_primary_dark">#ff009faf</color>
<color name="somc_color_accent_dark">#ffd15b40</color>
<color name="somc_color_dark_primary_light">#ff2699a5</color>
<color name="somc_color_primary_light">#ff2ab9d2</color>
<color name="somc_color_accent_light">#ffed6642</color>
<color name="somc_color_background_light">#fffafafa</color>
<color name="somc_color_component_ripple_dark">@color/ripple_material_dark</color>
<color name="somc_color_component_ripple_light">@color/ripple_material_light</color>
<color name="somc_color_btn_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_btn_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_btn_borderless_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_btn_borderless_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_btn_toggle_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_btn_toggle_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_compound_btn_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_compound_btn_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_radiobutton_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_radiobutton_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_checkbox_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_checkbox_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_switch_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_switch_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_star_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_star_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_seekbar_thumb_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_seekbar_thumb_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_item_bg_borderless_ripple_dark">@color/ripple_material_dark</color>
<color name="somc_color_item_bg_borderless_ripple_light">@color/ripple_material_light</color>
<color name="somc_color_item_bg_ripple_dark">@color/somc_color_component_ripple_dark</color>
<color name="somc_color_item_bg_ripple_light">@color/somc_color_component_ripple_light</color>
<color name="somc_color_dropdown_panel_dark">@color/background_material_dark</color>
<color name="somc_color_dropdown_panel_light">@color/background_material_light</color>
<color name="somc_color_dialog_full_dark">@color/background_floating_material_dark</color>
<color name="somc_color_dialog_full_light">@color/background_floating_material_light</color>
<color name="somc_color_btn_dark">@color/button_material_dark</color>
<color name="somc_color_btn_light">@color/button_material_light</color>
<color name="somc_color_btn_toggle_dark">@color/somc_color_btn_dark</color>
<color name="somc_color_btn_toggle_light">@color/somc_color_btn_light</color>
<color name="somc_color_btn_star_off_dark">@color/secondary_text_default_material_dark</color>
<color name="somc_color_btn_star_off_light">@color/secondary_text_default_material_light</color>
<color name="somc_color_dropdown_unselected_dark">@color/secondary_text_default_material_dark</color>
<color name="somc_color_dropdown_unselected_light">@color/secondary_text_default_material_light</color>
<color name="somc_color_textselection_handle_dark">@color/accent_material_dark</color>
<color name="somc_color_textselection_handle_light">@color/accent_material_light</color>
<color name="somc_color_textcursor_dark">@color/somc_color_textselection_handle_dark</color>
<color name="somc_color_textcursor_light">@color/somc_color_textselection_handle_light</color>
<color name="somc_text_color_edittext_dark">@color/primary_text_default_material_dark</color>
<color name="somc_text_color_edittext_light">@color/primary_text_default_material_light</color>
<color name="somc_text_color_hint_dark">@color/hint_foreground_material_light</color>
<color name="somc_text_color_hint_light">@color/hint_foreground_material_dark</color>
<color name="somc_text_color_button_dark">@color/primary_text_default_material_dark</color>
<color name="somc_text_color_button_light">@color/primary_text_default_material_light</color>
<color name="somc_text_color_switch_disabled_dark">#4d000000</color>
<color name="somc_text_color_switch_unchecked_dark">#de000000</color>
<color name="somc_text_color_switch_checked_dark">#ffffffff</color>
<color name="somc_text_color_switch_disabled_light">#4d000000</color>
<color name="somc_text_color_switch_unchecked_light">#de000000</color>
<color name="somc_text_color_switch_checked_light">#ffffffff</color>
<color name="somc_color_edittext_ripple_dark">@color/somc_color_accent_dark</color>
<color name="somc_color_edittext_ripple_light">@color/somc_color_accent_light</color>
<color name="somc_color_btn_star_on_dark">@color/somc_color_accent_dark</color>
<color name="somc_color_btn_star_on_light">@color/somc_color_accent_light</color>
<color name="somc_color_tab_unselected_dark">@color/transparent</color>
<color name="somc_color_tab_selected_dark">@color/somc_color_accent_dark</color>
<color name="somc_color_tab_unselected_light">@color/transparent</color>
<color name="somc_color_tab_selected_light">@color/somc_color_accent_light</color>
Click to expand...
Click to collapse
open dimens and do the same (important)
Code:
<dimen name="selection_base_handle_offset_x">7.0dip</dimen>
<dimen name="selection_extent_handle_offset_x">15.0dip</dimen>
<dimen name="selection_handle_offset_y">42.0dip</dimen>
<dimen name="roundMagnificationRadius">55.0dip</dimen>
<dimen name="rectangularMagnificationWidth">179.0dip</dimen>
<dimen name="rectangularMagnificationHeight">74.0dip</dimen>
<dimen name="magnifier_selection_handle_offset_y">44.0dip</dimen>
<dimen name="somc_dimension_btn_base_elevation">1.0dip</dimen>
<dimen name="somc_dimension_btn_press_elevation">2.0dip</dimen>
<dimen name="somc_actionbar_contentInsetStart">72.0dip</dimen>
<dimen name="somc_preference_fragment_padding_side">0.0dip</dimen>
Click to expand...
Click to collapse
open drawables.xml and do the same (its important)
Code:
<item type="drawable" name="somc_btn_normal_dark">@drawable/somc_btn_dark</item>
<item type="drawable" name="somc_btn_pressed_dark">@drawable/somc_btn_normal_dark</item>
<item type="drawable" name="somc_btn_focused_dark">@drawable/somc_btn_normal_dark</item>
<item type="drawable" name="somc_btn_disabled_dark">@drawable/somc_btn_normal_dark</item>
<item type="drawable" name="somc_btn_disabled_focused_dark">@drawable/somc_btn_disabled_dark</item>
<item type="drawable" name="somc_btn_normal_light">@drawable/somc_btn_light</item>
<item type="drawable" name="somc_btn_pressed_light">@drawable/somc_btn_normal_light</item>
<item type="drawable" name="somc_btn_focused_light">@drawable/somc_btn_normal_light</item>
<item type="drawable" name="somc_btn_disabled_light">@drawable/somc_btn_normal_light</item>
<item type="drawable" name="somc_btn_disabled_focused_light">@drawable/somc_btn_disabled_light</item>
<item type="drawable" name="somc_btn_toggle_on_normal_dark">@drawable/somc_btn_toggle_dark</item>
<item type="drawable" name="somc_btn_toggle_on_pressed_dark">@drawable/somc_btn_toggle_on_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_on_focused_dark">@drawable/somc_btn_toggle_on_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_on_disabled_dark">@drawable/somc_btn_toggle_on_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_on_disabled_focused_dark">@drawable/somc_btn_toggle_on_disabled_dark</item>
<item type="drawable" name="somc_btn_toggle_off_normal_dark">@drawable/somc_btn_toggle_dark</item>
<item type="drawable" name="somc_btn_toggle_off_pressed_dark">@drawable/somc_btn_toggle_off_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_off_focused_dark">@drawable/somc_btn_toggle_off_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_dark">@drawable/somc_btn_toggle_off_normal_dark</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_focused_dark">@drawable/somc_btn_toggle_off_disabled_dark</item>
<item type="drawable" name="somc_btn_toggle_on_normal_light">@drawable/somc_btn_toggle_light</item>
<item type="drawable" name="somc_btn_toggle_on_pressed_light">@drawable/somc_btn_toggle_on_normal_light</item>
<item type="drawable" name="somc_btn_toggle_on_focused_light">@drawable/somc_btn_toggle_on_normal_light</item>
<item type="drawable" name="somc_btn_toggle_on_disabled_light">@drawable/somc_btn_toggle_on_normal_light</item>
<item type="drawable" name="somc_btn_toggle_on_disabled_focused_light">@drawable/somc_btn_toggle_on_disabled_light</item>
<item type="drawable" name="somc_btn_toggle_off_normal_light">@drawable/somc_btn_toggle_light</item>
<item type="drawable" name="somc_btn_toggle_off_pressed_light">@drawable/somc_btn_toggle_off_normal_light</item>
<item type="drawable" name="somc_btn_toggle_off_focused_light">@drawable/somc_btn_toggle_off_normal_light</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_light">@drawable/somc_btn_toggle_off_normal_light</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_focused_light">@drawable/somc_btn_toggle_off_disabled_light</item>
<item type="drawable" name="somc_edittext_focused_dark">@drawable/somc_edittext_normal_dark</item>
<item type="drawable" name="somc_edittext_disabled_focused_dark">@drawable/somc_edittext_disabled_dark</item>
<item type="drawable" name="somc_edittext_focused_light">@drawable/somc_edittext_normal_light</item>
<item type="drawable" name="somc_edittext_disabled_focused_light">@drawable/somc_edittext_disabled_light</item>
<item type="drawable" name="somc_edittext_ripple_mask_dark">@drawable/textfield_activated_mtrl_alpha</item>
<item type="drawable" name="somc_edittext_ripple_mask_light">@drawable/textfield_activated_mtrl_alpha</item>
<item type="drawable" name="somc_btn_star_on_pressed_dark">@drawable/somc_btn_star_on_normal_dark</item>
<item type="drawable" name="somc_btn_star_on_focused_dark">@drawable/somc_btn_star_on_normal_dark</item>
<item type="drawable" name="somc_btn_star_on_disabled_focused_dark">@drawable/somc_btn_star_on_disabled_dark</item>
<item type="drawable" name="somc_btn_star_off_pressed_dark">@drawable/somc_btn_star_on_pressed_dark</item>
<item type="drawable" name="somc_btn_star_off_focused_dark">@drawable/somc_btn_star_off_normal_dark</item>
<item type="drawable" name="somc_btn_star_off_disabled_focused_dark">@drawable/somc_btn_star_off_disabled_dark</item>
<item type="drawable" name="somc_btn_star_on_pressed_light">@drawable/somc_btn_star_on_normal_light</item>
<item type="drawable" name="somc_btn_star_on_focused_light">@drawable/somc_btn_star_on_normal_light</item>
<item type="drawable" name="somc_btn_star_on_disabled_focused_light">@drawable/somc_btn_star_on_disabled_light</item>
<item type="drawable" name="somc_btn_star_off_pressed_light">@drawable/somc_btn_star_on_pressed_light</item>
<item type="drawable" name="somc_btn_star_off_focused_light">@drawable/somc_btn_star_off_normal_light</item>
<item type="drawable" name="somc_btn_star_off_disabled_focused_light">@drawable/somc_btn_star_off_disabled_light</item>
<item type="drawable" name="somc_tab_unselected_pressed_dark">@drawable/somc_tab_unselected_dark</item>
<item type="drawable" name="somc_tab_unselected_focused_dark">@drawable/somc_tab_unselected_dark</item>
<item type="drawable" name="somc_tab_selected_pressed_dark">@drawable/somc_tab_selected_dark</item>
<item type="drawable" name="somc_tab_selected_focused_dark">@drawable/somc_tab_selected_dark</item>
<item type="drawable" name="somc_tab_unselected_pressed_light">@drawable/somc_tab_unselected_light</item>
<item type="drawable" name="somc_tab_unselected_focused_light">@drawable/somc_tab_unselected_light</item>
<item type="drawable" name="somc_tab_selected_pressed_light">@drawable/somc_tab_selected_light</item>
<item type="drawable" name="somc_tab_selected_focused_light">@drawable/somc_tab_selected_light</item>
<item type="drawable" name="somc_item_bg_pressed_dark">@color/transparent</item>
<item type="drawable" name="somc_item_bg_focused_dark">@color/transparent</item>
<item type="drawable" name="somc_item_bg_disabled_dark">@color/transparent</item>
<item type="drawable" name="somc_item_bg_pressed_light">@color/transparent</item>
<item type="drawable" name="somc_item_bg_focused_light">@color/transparent</item>
<item type="drawable" name="somc_item_bg_disabled_light">@color/transparent</item>
<item type="drawable" name="somc_item_bg_borderless_dark">@drawable/somc_item_bg_borderless_ripple_dark</item>
<item type="drawable" name="somc_item_bg_borderless_light">@drawable/somc_item_bg_borderless_ripple_light</item>
Click to expand...
Click to collapse
add to ids.xml like the others (important)
Code:
<item type="id" name="theme_accent">false</item>
<item type="id" name="global_actions_double_item_group1">false</item>
<item type="id" name="global_actions_double_item_icon1">false</item>
<item type="id" name="global_actions_double_item_message1">false</item>
<item type="id" name="global_actions_double_item_group2">false</item>
<item type="id" name="global_actions_double_item_icon2">false</item>
<item type="id" name="global_actions_double_item_message2">false</item>
<item type="id" name="certificate_name">false</item>
<item type="id" name="package_content">false</item>
<item type="id" name="emergency_master_reset_title">false</item>
<item type="id" name="emergency_master_reset_btn">false</item>
<item type="id" name="emergency_master_reset_exit_btn">false</item>
<item type="id" name="parent_view">false</item>
<item type="id" name="picture">false</item>
Click to expand...
Click to collapse
add to integers.xml (not important)
Code:
<integer name="flingboost_timeout_param">0</integer>
<integer name="flingboost_schedboost_param">0</integer>
<integer name="flingboost_cpuboost_param">0</integer>
<integer name="flingboost_pcdisbl_param">0</integer>
<integer name="flingboost_ksmboost_param">0</integer>
<integer name="scrollboost_timeout_param">0</integer>
<integer name="scrollboost_schedboost_param">0</integer>
<integer name="scrollboost_cpuboost_param">0</integer>
<integer name="scrollboost_pcdisbl_param">0</integer>
<integer name="scrollboost_ksmboost_param">0</integer>
<integer name="launchboost_timeout_param">1000</integer>
<integer name="launchboost_schedboost_param">0</integer>
<integer name="launchboost_cpuboost_param">0</integer>
<integer name="launchboost_cpu_6_7_offline_param">0</integer>
<integer name="launchboost_pcdisbl_param">0</integer>
<integer name="launchboost_ksmboost_param">0</integer>
<integer name="config_proximityScreenWakeupDelay">250</integer>
<integer name="config_softap_default_channel">1</integer>
<integer name="config_in_call_notification_relative_volume">100</integer>
Click to expand...
Click to collapse
for strings (Important)
Code:
[too much so download the strings.txt and add the lines to the end of your strings.xml] :p
Click to expand...
Click to collapse
now for the styles.xml
Code:
download it from the attatchments and replace it
(If you have cm12.1 take styles_cm.rar if you have bliss take styles_blisspop.rar)
Click to expand...
Click to collapse
now we should be done i hope you did it if you need any help just quote me
Note: u need SuperUserMode from here : http://forum.xda-developers.com/cro...t-xperia-z5-systemui-particle-effect-t3206206
Credits:- @STRYDER~007 i used his framework to learn @blackwings66 Me
Some Screens
if you want to get some themes for it visit this link @ post 3 :
http://forum.xda-developers.com/xpe...-stryflex2013266073-lp-official-sony-t3178049
maybe i will need it
Good job! I was gonna share it but you did before me! Keep learning and keep sharing!
i'm try to do that but not complete and this is my log
i hope any one help me to do that
elkhshap said:
i'm try to do that but not complete and this is my log
i hope any one help me to do that
Click to expand...
Click to collapse
I think you didn't add the lines in drawbles.XML but if you have then send me your framework
STRYDER~007 said:
Good job! I was gonna share it but you did before me! Keep learning and keep sharing!
Click to expand...
Click to collapse
Sure yes
Thanks a lot!!
Enviado desde mi Moto G mediante Tapatalk
blackwings66 said:
Sure yes
Click to expand...
Click to collapse
Hi thank you so much for the guide,
There are few errors in the guide pls corect it , below are the errors I found which is causing the errors: Blank spaces between words
1. Dimes.xml
Code:
<dimen name="somc_preference_fragment_padding_side">0.0di p</dimen>
2.Colors.xml
Code:
<color name="somc_color_btn_borderless_ripple_dark" [user=667883]@colo[/user] r/somc_color_component_ripple_dark</color>
<color name="somc_color_seekbar_thumb_ripple_light" [user=667883]@colo[/user] r/somc_color_component_ripple_light</color>
<color name="somc_color_textselection_handle_light" [user=667883]@colo[/user] r/accent_material_light</color>
<color name="somc_color_btn_borderless_ripple_light" [user=323692]@Col[/user] or/somc_color_component_ripple_light</color>
<color name="somc_color_item_bg_borderless_ripple_dark">@ color/ripple_material_dark</color>
<color name="somc_text_color_switch_disabled_dark">#4d000 000</color>
<color name="somc_text_color_switch_unchecked_dark">#de00 0000</color>
<color name="somc_text_color_switch_checked_dark">#ffffff ff</color>
<color name="somc_text_color_switch_disabled_light">#4d00 0000</color>
<color name="somc_text_color_switch_unchecked_light">#de0 00000</color>
<color name="somc_text_color_switch_checked_light">#fffff fff</color>
3. Drawables:
Code:
<item type="drawable" name="somc_btn_toggle_on_disabled_focused_dark">@d rawable/somc_btn_toggle_on_disabled_dark</item>
<item type="drawable" name="somc_btn_star_off_disabled_focused_light">@d rawable/somc_btn_star_off_disabled_light</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_focused_dark">@ drawable/somc_btn_toggle_off_disabled_dark</item>
<item type="drawable" name="somc_btn_toggle_on_disabled_focused_light">@ drawable/somc_btn_toggle_on_disabled_light</item>
<item type="drawable" name="somc_btn_toggle_off_disabled_light">@drawabl e/somc_btn_toggle_off_normal_light</item>
<item type="drawable" name="somc_edittext_disabled_focused_dark">@drawab le/somc_edittext_disabled_dark</item>
<item type="drawable" name="somc_btn_star_on_disabled_focused_dark">@dra wable/somc_btn_star_on_disabled_dark</item>
<item type="drawable" name="somc_btn_star_off_disabled_focused_dark">@dr awable/somc_btn_star_off_disabled_dark</item>
<item type="drawable" name="somc_btn_star_on_disabled_focused_light">@dr awable/somc_btn_star_on_disabled_light</item>
4. Bools
Code:
<bool name="config_enableCpuBoostForOverScrollerFling">f alse</bool>
<bool name="config_clean_up_connections_before_lte">fals e</bool>
<bool name="config_update_existing_applications_only">tr ue</bool>
<bool name="config_hardware_auto_brightness_available">t rue</bool>
5. Also the @Color/somc_color_seekbar_thumb_ripple_light" defined in res/drawables/somc_seekbar_thumb_bg_light is not added in Colors.xml files
So add
<color name="somc_color_seekbar_thumb_ripple_light" @Color/somc_color_component_ripple_light</color> in colors,xml
I hope this helps everyone
Edit:
Recompiled successfuly and got the black status bar
blackwings66 said:
I think you didn't add the lines in drawbles.XML but if you have then send me your framework
Click to expand...
Click to collapse
this is my framework
http://www.mediafire.com/download/po3hxgw3vq3vsw5/framework-res.apk
Got error while recompiling, already made @Apexpredator fixes:
EDIT: My bad, extracted the framework files in the wrong place.
@Apexpredator
try flashing the z5 systemui
and ok i will update it
edit: i don't think that the black statusbar is from the framework i think it's from systemui
go to colors and change <color name="system_bar_background_semi_transparent">#66000000</color>\
to <color name="system_bar_background_semi_transparent">#00000000</color> and try
New Updated Guide with Screenshots and i have fixed some bugs that makes recompiling errors
and with new files (more files and less size )
Don't forget to press thanks
blackwings66 said:
New Updated Guide with Screenshots and i have fixed some bugs that makes recompiling errors
and with new files (more files and less size )
Don't forget to press thanks
Click to expand...
Click to collapse
thanks bro it's work for me
now can i use xperia dialer and contacts or not
@blackwings66
I manage to follow your guide and the framework work excellent ..
but it seems that this mod cause my cm engine ( themechooser.apk ) force
closed.
Something on your guide is not compatible with cm 12.1 theme engine .. please help . .Thank you
inpamcoxie said:
@blackwings66
I manage to follow your guide and the framework work excellent ..
but it seems that this mod cause my cm engine ( themechooser.apk ) force
closed.
Something on your guide is not compatible with cm 12.1 theme engine .. please help . .Thank you
Click to expand...
Click to collapse
Try xperia themes in the z5 roms port
This guide make it working with Port z5 system ui in general section but when im open lockscreen it's force close..
Anyone know how to port manualy z5 system ui in cm 12.1.. Bcoz i have dual sim, maybe that is problem..

[GUIDE][4.3 - 5.x.x] Xperia Lockscreen with Graphic Visualizer

Yep, this could sounds to repost, but not, in this case the Porting Guide works with 4.4.x (KitKat) too.
Let's go with this, then:
For try port to LP: here
If you, don't understand that guide, here I've a explain (In spanish only):
Requirements
- Have a Deodex ROM (Really Important)
- Have the signature verification for all apps disabled (a.k.a Superuser Mod) installed.
- Know compile/decompile and sign apps (here a lite guide, I recommend download it)
- Brain (Not much xD )
- Patient
- Notepad++
- Latest apktool (in this case)
First, JellyBean (4.3)
Step 1
- Decompile XperiaLockScreen.apk
- Download Smali for JB 4.3 Lockscreen (In Download Section) and merge "smali" folder to your decompiled XperiaLockScreen
Step 2
Go to XperiaLockScreen/res/layout/keyguard_no_security_view.xml, search the follow line
Code:
[COLOR="RoyalBlue"]<LinearLayout android:gravity="center" android:layout_gravity="center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true">[/COLOR]
and add the red line down
Code:
[COLOR="Red"]<com.adi.rom.interface.MusicEqualizerVisualizer android:layout_gravity="bottom" android:id="@id/new_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="0.0dip">
<FrameLayout android:id="@id/new_custom_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.adi.rom.interface.VisualizerView android:id="@id/new_custom_visualizer_view" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</FrameLayout>
</com.adi.rom.interface.MusicEqualizerVisualizer>[/COLOR]
Some like this
{
"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"
}
Save it.
Step 3
Go to XperiaLockScreen/res/values/colors.xml
add these lines before of </resources>
Code:
[COLOR="Red"]<color name="new_custom_equalizer_fill_color">@color/didi2</color>
<color name="didi">@com.sonyericsson.uxp:color/somc_theme_accent_color_light</color>
<color name="didi2">@com.sonyericsson.uxp:color/somc_theme_accent_color_dark</color>
<color name="didi3">@com.sonyericsson.uxp:color/somc_accent_color_neutral</color>
<color name="didi4">@com.sonyericsson.uxp:color/semc_theme_illumination_color</color>[/COLOR]
If these lines don't leave compile, use only this
Code:
[COLOR="red"]<color name="new_custom_equalizer_fill_color">#96ffffff</color>[/COLOR]
Save it.
Go to XperiaLockScreen/res/values/dimens.xml
and add before of </resources>
Code:
[COLOR="red"] <dimen name="new_custom_eqalizer_path_effect_1">12.0dip</dimen>
<dimen name="new_custom_eqalizer_path_effect_2">1.0dip</dimen>
<dimen name="new_custom_eqalizer_path_stroke_width">24.0dip</dimen>[/COLOR]
Save it.
Go to XperiaLockScreen/res/values/ids.xml
and add before of </resources>
Code:
[COLOR="red"]<item type="id" name="new_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view">false</item>[/COLOR]
Save it.
Go to XperiaLockScreen/res/values/integers.xml
and add before of </resources>
Code:
[COLOR="red"]<integer name="new_custom_equalizer_divisions">4</integer>
<integer name="new_custom_equalizer_db_fuzz_factor">2</integer>
<integer name="new_custom_equalizer_db_fuzz">-10</integer>[/COLOR]
Step 4
Go to XperiaLockScreen/AndroidManifest.xml
and search
Code:
[COLOR="royalblue"]<uses-permission android:name="com.sonymobile.permission.READ_LOCKSCREEN_WALLPAPER"/>[/COLOR]
add the follow lines down
Code:
[COLOR="red"]<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>[/COLOR]
Step 5
- Compile XperiaLockScreen
- Sign it
- Push to System/app with the right permissions
- Download VisualizerStyleSettings.apk (from Download section) push to System/app with right permissions
Now with KitKat (4.4.x)
Step 1
- Decompile XperiaLockScreen.apk
- Download Smali for JB 4.3 Lockscreen (Yep, the same file, in Download Section) and merge "smali" folder to your decompiled XperiaLockscreen
Step 2
Go to XperiaLockScreen/res/layout/keyguard_no_security_view.xml, search the follow line
Code:
[COLOR="RoyalBlue"]<LinearLayout android:gravity="center" android:layout_gravity="center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true">[/COLOR]
and add the red line down
Code:
[COLOR="Red"]<com.adi.rom.interface.MusicEqualizerVisualizer android:layout_gravity="bottom" android:id="@id/new_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="0.0dip">
<FrameLayout android:id="@id/new_custom_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.adi.rom.interface.VisualizerView android:id="@id/new_custom_visualizer_view" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</FrameLayout>
</com.adi.rom.interface.MusicEqualizerVisualizer>[/COLOR]
Some like this
Save it.
Step 3
Go to XperiaLockScreen/res/values/dimens.xml
and add before of </resources>
Code:
[COLOR="red"] <dimen name="new_custom_eqalizer_path_effect_1">12.0dip</dimen>
<dimen name="new_custom_eqalizer_path_effect_2">1.0dip</dimen>
<dimen name="new_custom_eqalizer_path_stroke_width">24.0dip</dimen>[/COLOR]
Save it.
Go to XperiaLockScreen/res/values/ids.xml
and add before of </resources>
Code:
[COLOR="red"]<item type="id" name="new_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view">false</item>[/COLOR]
Save it.
Go to XperiaLockScreen/res/values/integers.xml
and add before of </resources>
Code:
[COLOR="red"] <integer name="new_custom_equalizer_divisions">13</integer>
<integer name="new_custom_equalizer_db_fuzz_factor">20</integer>
<integer name="new_custom_equalizer_db_fuzz">-10</integer>[/COLOR]
Step 4
Go to XperiaLockScreen/AndroidManifest.xml
and search
Code:
[COLOR="royalblue"]<uses-permission android:name="com.sonymobile.permission.READ_LOCKSCREEN_WALLPAPER"/>[/COLOR]
add the follow lines down
Code:
[COLOR="red"]<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>[/COLOR]
Step 5
- Compile XperiaLockScreen
- Sign it
- Push to System/app with the right permissions
- Download VisualizerStyleSettings.apk (from Download section) push to System/app with right permissions
Step 6
- Decompile SystemUI.apk
- Download Smali for KK-LP SystemUI (In Download Section) and merge "smali" folder to your decompiled SystemUI
Step 7
Go to SystemUI/res/layout/status_bar_expanded.xml, search the follow line
Code:
[COLOR="RoyalBlue"]
</LinearLayout>[/COLOR]
and add the red line down
Code:
[COLOR="Red"]<com.adi.rom.interface.MusicEqualizerVisualizer android:layout_gravity="bottom" android:id="@id/new_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="0.0dip">
<FrameLayout android:id="@id/new_custom_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.adi.rom.interface.VisualizerView android:id="@id/new_custom_visualizer_view" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</FrameLayout>
</com.adi.rom.interface.MusicEqualizerVisualizer>[/COLOR]
Save it.
Step 8
Go to SystemUI/res/values/colors.xml
add this line before of </resources>
Code:
[COLOR="red"]<color name="new_custom_equalizer_fill_color">#96ffffff</color>[/COLOR]
Save it.
Go to SystemUI/res/values/dimens.xml
and add before of </resources>
Code:
[COLOR="red"]<dimen name="new_custom_eqalizer_path_effect_1">6.0dip</dimen>
<dimen name="new_custom_eqalizer_path_effect_2">1.0dip</dimen>
<dimen name="new_custom_eqalizer_path_stroke_width">6.0dip</dimen>[/COLOR]
Save it.
Go to SystemUI/res/values/ids.xml
and add before of </resources>
Code:
[COLOR="red"]<item type="id" name="new_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view_panel">false</item>
<item type="id" name="new_custom_visualizer_view">false</item>[/COLOR]
Save it.
Go to SystemUI/res/values/integers.xml
and add before of </resources>
Code:
[COLOR="red"]<integer name="new_custom_equalizer_divisions">4</integer>
<integer name="new_custom_equalizer_db_fuzz_factor">2</integer>
<integer name="new_custom_equalizer_db_fuzz">-10</integer>[/COLOR]
Step 9
Go to SystemUI/AndroidManifest.xml
and search
Code:
[COLOR="royalblue"]<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/>[/COLOR]
add the follow lines down
Code:
[COLOR="red"]<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>[/COLOR]
Step 10
- Compile SystemUI
- Sign it
- Push to System/app with the right permissions
- Download VisualizerStyleSettings.apk (from Download section) push to System/app with right permissions
Screenies & Demo
JB 4.3
KK 4.4.x (CyanogenMod Visualizer don't works)
LP 5.x.x (Works almost all, except Lines Visualizer on Stock ROM)
Demo
Downloads
Smalies for JB 4.3
Smalies for KK/LP SystemUI
VisualizerStyleSettings
VisualizerStyleSettings Fix for Lollipop
Credits
@idid idamrep (For their port to JB 4.3)
@Adi Aisiteru Reborn (For their Guide for port to "All" Android devices)
@sebasrock156 (For port to KitKat and make this possible)

[TUT] [UNROOT] change system app's colors in your theme

{
"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"
}
INTRODUCTION :
Hey community , As the launch of Xperia X series .. We all saw their new themes ( Lime , Rose and White ) and we also saw how they have the potential to change colors of different system apps .. So today I'M going to share with you how we will do this and again with out having Root access .
WHAT YOU WILL NEED :
A BRAIN :3
NOTEPAD++
APKTOOL
THIS GUIDE SUPPORTS :
CLOCK
EMAIL
MESSAGING
CONTACTS
LET'S START :
FOR CHANGING CLOCK COLOR
1 / Download my attachment called " com.sonyericsson.organizer.zip "
2 / Extract it using APKTOOL ( apktool d com.sonyericsson.organizer.zip )
3 / Navigate to res / values / color / colors.xml
- You will see this :
HTML:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--COLOR OF MAIN BARS-->
<color name="local_primary_color_light">#YOUR COLOR</color>
<!--COLOR OF STATUES BAR-->
<color name="local_primarydark_color_light">#YOUR COLOR</color>
<!--SECOND COLOR / COLOR OF FLOATING CIRCLE-->
<color name="local_accent_color_light">#YOUR COLOR</color>
<!--SAME AS FIRST AND SECOND LINES BUT ON DARK UI-->
<color name="local_primary_color_dark">#YOUR COLOR</color>
<color name="local_primarydark_color_dark">#YOUR COLOR</color>
<!--SAME AS THIRD LINE AND YES ON DARK UI AS WELL-->
<color name="local_accent_color_dark">#YOUR COLOR</color>
</resources>
4 / After adding your own color rebuild the zip file ( apktool b com.sonyericsson.organizer.zip.out )
5 / Now add it your theme folder ( YOUR THEME / ASSETS )
6 / Open AndroidManifest.xml file of your theme and add these lines :
HTML:
<asset path="com.sonyericsson.organizer.zip" target="com.sonyericsson.organizer">
<laf-version-filter from="3" to="3"/>
</asset>
7 / DONE !
Email & messaging
FOR CHANGING EMAIL COLORS
1 / Download my attachment called " com.sonymobile.email.zip "
2 / Extract it using APKTOOL ( apktool d com.sonymobile.email.zip )
3 / Navigate to res / values / colors / color.xml
- You will see this :
HTML:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--COLOR OF MAIN BARS-->
<color name="local_primary_color_light">#YOUR COLOR</color>
<!--COLOR OF STATUES BAR-->
<color name="local_primarydark_color_light">#YOUR COLOR</color>
<!--SECOND COLOR / COLOR OF FLOATING CIRCLE-->
<color name="local_accent_color_light">#YOUR COLOR</color>
<!--SAME AS FIRST AND SECOND LINES BUT ON DARK UI-->
<color name="local_primary_color_dark">#YOUR COLOR</color>
<color name="local_primarydark_color_dark">#YOUR COLOR</color>
<!--SAME AS THIRD LINE AND YES ON DARK UI AS WELL-->
<color name="local_accent_color_dark">#YOUR COLOR</color>
</resources>
4 / After adding your own colors rebuild the zip file ( [COLOR = "Green"]apktool b com.sonymobile.email.zip.out[/COLOR] )
5 / Now add it your theme folder ( YOUR THEME / ASSETS )
6 / Open AndroidManifest.xml file of your theme and add these lines :
HTML:
<asset path="com.sonymobile.email.zip" target="com.sonymobile.email">
<laf-version-filter from="1" to="1"/>
</asset>
7 / DONE !
FOR CHANGING MESSAGING COLORS
1 / Download my attachment called " com.sonyericsson.conversations.zip "
2 / Extract it using APKTOOL ( apktool d com.sonyericsson.conversations.zip )
3 / Navigate to res / values / colors / color.xml
- You will see this :
HTML:
[HTML]
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--COLOR OF MAIN BARS-->
<color name="local_primary_color_light">#YOUR COLOR</color>
<!--COLOR OF STATUES BAR-->
<color name="local_primarydark_color_light">#YOUR COLOR</color>
<!--SECOND COLOR / COLOR OF FLOATING CIRCLE-->
<color name="local_accent_color_light">#YOUR COLOR</color>
<!--SAME AS FIRST AND SECOND LINES BUT ON DARK UI-->
<color name="local_primary_color_dark">#YOUR COLOR</color>
<color name="local_primarydark_color_dark">#YOUR COLOR</color>
<!--SAME AS THIRD LINE AND YES ON DARK UI AS WELL-->
<color name="local_accent_color_dark">#YOUR COLOR</color>
</resources>
4 / After adding your own colors rebuild the zip file ( [COLOR = "Green"]apktool b com.sonyericsson.conversations.zip.out[/COLOR] )
5 / Now add it your theme folder ( YOUR THEME / ASSETS )
6 / Open AndroidManifest.xml file of your theme and add these lines :
HTML:
<asset path="com.sonyericsson.conversations.zip" target="com.sonyericsson.conversations">
<laf-version-filter from="3" to="3"/>
</asset>
Contacts & dialer
FOR CHANGING DIALER & CONTACTS COLORS
1 / Download my attachment called " com.sonyericsson.android.socialphonebook.zip "
2 / Extract it using APKTOOL ( apktool d com.sonyericsson.android.socialphonebook.zip )
3 / Navigate to res / values / colors / color.xml
- You will see this :
HTML:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--COLORS OF DIALER-->
<!--COLOR OF MAIN BARS-->
<color name="dialer_primary_color_light">#YOUR COLOR</color>
<!--COLOR OF STATUES BAR-->
<color name="dialer_primarydark_color_light">#YOUR COLOR</color>
<!--SECOND COLOR / COLOR OF FLOATING CIRCLE-->
<color name="dialer_accent_color_light">#YOUR COLOR</color>
<!--SAME AS FIRST AND SECOND LINES BUT ON DARK UI-->
<color name="dialer_primary_color_dark">#ff4185f3</color>
<color name="dialer_primarydark_color_dark">#ff3368d4</color>
<!--SAME AS THIRD LINE AND YES ON DARK UI AS WELL-->
<color name="dialer_accent_color_dark">#ff84f4f4</color>
<!--COLOR OF CONTACTS-->
<!--COLOR OF MAIN BARS-->
<color name="contacts_primary_color_light">#ffad076a</color>
<!--COLOR OF STATUES BAR-->
<color name="contacts_primarydark_color_light">#ff7a064e</color>
<!--SECOND COLOR / COLOR OF FLOATING CIRCLE-->
<color name="contacts_accent_color_light">#fff05b3e</color>
<!--SAME AS FIRST AND SECOND LINES BUT ON DARK UI-->
<color name="contacts_primary_color_dark">#ffad076a</color>
<color name="contacts_primarydark_color_dark">#ff7a064e</color>
<!--SAME AS THIRD LINE AND YES ON DARK UI AS WELL-->
<color name="contacts_accent_color_dark">#ffff7155</color>
</resources>
4 / After adding your own colors rebuild the zip file ( apktool b com.sonyericsson.android.socialphonebook.zip.out )
5 / Now add it your theme folder ( YOUR THEME / ASSETS )
6 / Open AndroidManifest.xml file of your theme and add these lines :
HTML:
<asset path="com.sonyericsson.android.socialphonebook.zip" target="com.sonyericsson.android.socialphonebook">
<laf-version-filter from="3" to="3"/>
</asset>
7 / DONE !
This is all I got hope we will see nice projects in the future and yeah all I need is the respect by adding my name in credits .. thanks
Nice work buddy
I will add them to my themes
a.hamameh96 said:
Nice work buddy
I will add them to my themes
Click to expand...
Click to collapse
Glad to hear
Sent from my E6633 using Tapatalk
Can you tell me how to put the app back on the phone?...

Categories

Resources