Monday, April 29, 2013

Root Xperia U


How to root your Xperia U Guide that comes with the video on:


http://www.youtube.com/watch?v=x65ua5x4sMc


SXU FTF FILES (GB AND ICS)


SXU FTF FILES (GB AND ICS)



ICS finally available!


6.1.1.B.1.10

ST25i

ST25a
Difference between the i and a version are the basebands
(radio frequencies for call/data connections)


__________________________________________________________________________________

6.1.1.B.1.54

ST25i
SOON

ST25a
SOON


ST25i (international)
UMTS HSPA 900 (Band VIII), 2100 (Band I)
GSM GPRS/EDGE 850, 900, 1800, 1900

ST25a (america's)
UMTS HSPA 850 (Band V), 1900 (Band II), 2100 (Band I)
GSM GPRS/EDGE 850, 900, 1800, 1900

Build.prop & init.d Tweaks for a better performance in our Xperia U...


Before applying this tweaks, make sure to have a nandroid backup of your device in case something will went wrong.

This tweaks was tested in Xperia U only and is working very well. But, this tweaks are universal tweaks for Android, so this should also work in all Xperia Devices and in other brands.

Requirements:
  • Rooted Xperia U Phones
  • Updated Busybox
  • Root Explorer or any apps that lets you mount system folders as read and write
  • Any Text Editor with Root Access

Build.prop Tweaks

This Build.prop Tweaks offers:
  • Faster wifi connect/disconnect
  • Smoother video streaming
  • 3G, signal, DNS Resolution, and ppp0 Interface tweaks for faster Internet Browsing
  • Enables JIT (Just In Time) Compiler for Dalvik VM which gives better CPU performance
  • Better camera recording quality
  • Better jpg image quality
  • Better Flashlight intensity & camera-flash quality
  • Enables Quick Power-On mode to reduce boot-time

Instructions:
  1. Mount system folder as read and write.
  2. Copy paste the codes below to your Build.prop (Don't delete anything in your Build.prop file. Just copy paste the code below at the lowest portion.) using any text editor with root access. (system/Build.prop) 
  3. Then, restart your phone.

### Wifi connect speed tweak
ro.mot.eri.losalert.delay=1000

### Video Streaming Tweak
media.stagefright.enable-player=true
media.stagefright.enable-meta=true
media.stagefright.enable-scan=false
media.stagefright.enable-http=true

### 3G Signal & Speed Tweaks
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.hsupa.category=5

### Faster DNS Resolution Tweaks
net.dns1=8.8.8.8
net.dns2=8.8.4.4

### ppp0 Interface Tweaks
net.ppp0.dns2=8.8.4.4
net.ppp0.dns2=8.8.4.4

### Allow Dalvik to use JIT Compiler
dalvik.vm.execution-mode=int:jit

### Increase photo and video recording quality
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000

### Increase jpg quality to 100%
ro.media.enc.jpeg.quality=100

### Better Flashlight intensity & camera-flash quality
ro.media.capture.flash=led
ro.media.capture.flashMinV=3300000
ro.media.capture.torchIntensity=65
ro.media.capture.flashIntensity=70

### Enable Quick Power-On mode to reduce boot-time
ro.config.hw_quickpoweron=true

init.d Tweaks

This init.d Tweaks offers:

Network and Internet Tweaks:
  • Blocking of Redirects
  • Blocking of Source-Routing
  • IPV4 Tweaks
  • Avoiding Time Wait
  • Protection against SYN Attacks

Kernel Tweaks:
  • Ondemand Governor Tweaks
  • Disables I/O Stats to reduce overhead, thus increases the overall I/O speed
  • Default I/O Scheduler Tweaks that will enhance the behavior of the scheduler to improve I/O performance
  • Disables Vsync to unleash the FPS rate and increase graphics benchmark scores
  • Disables sleepers to save battery

Others:
  • Disables Android Logger that will provide small performance boost
  • Ext4 File-Systems optimization & instant-mount (working if you have Ext4 partition only)
  • Internal SD I/O Tweaks for faster mounting and read/write speed boost

Instructions:
  1. Add init.d support in your device first. See instructions here http://forum.xda-developers.com/showthread.php?t=1936826. (No need if init.d support is already added.)
  2. Using any text editor with root access, create a new file and copy paste the codes below.
  3. Save the file with any filename to folder /system/etc/init.d/ (set permission to rwxr-xr-x)

### Block Redirects
busybox sysctl -e -w net.ipv4.conf.all.accept_redirects=0;
busybox sysctl -e -w net.ipv4.conf.default.accept_redirects=0;
busybox sysctl -e -w net.ipv4.conf.all.secure_redirects=0;
busybox sysctl -e -w net.ipv4.conf.default.secure_redirects=0;

### Block Source-Routing
busybox sysctl -e -w net.ipv4.conf.default.accept_source_route=0;
busybox sysctl -e -w net.ipv4.conf.all.accept_source_route=0;

### Pv4 Tweaks
busybox sysctl -e -w net.ipv4.tcp_timestamps=0;
busybox sysctl -e -w net.ipv4.tcp_sack=1;
busybox sysctl -e -w net.ipv4.tcp_fack=1;
busybox sysctl -e -w net.ipv4.tcp_congestion_control=cubic;
busybox sysctl -e -w net.ipv4.tcp_window_scaling=1;

### Avoid Time-Wait
busybox sysctl -e -w net.ipv4.tcp_tw_recycle=1;
busybox sysctl -e -w net.ipv4.tcp_tw_reuse=1;

### Protection against SYN Attacks
busybox sysctl -e -w net.ipv4.tcp_syncookies=1;
busybox sysctl -e -w net.ipv4.conf.all.rp_filter=1;
busybox sysctl -e -w net.ipv4.conf.default.rp_filter=1;
busybox sysctl -e -w net.ipv4.tcp_synack_retries=2;
busybox sysctl -e -w net.ipv4.tcp_syn_retries=2;
busybox sysctl -e -w net.ipv4.tcp_max_syn_backlog=1024;
busybox sysctl -e -w net.ipv4.tcp_max_tw_buckets=16384;
busybox sysctl -e -w net.ipv4.icmp_echo_ignore_all=1;
busybox sysctl -e -w net.ipv4.icmp_ignore_bogus_error_responses=1;
busybox sysctl -e -w net.ipv4.tcp_no_metrics_save=1;
busybox sysctl -e -w net.ipv4.tcp_fin_timeout=15;
busybox sysctl -e -w net.ipv4.tcp_keepalive_intvl=30;
busybox sysctl -e -w net.ipv4.tcp_keepalive_probes=5;
busybox sysctl -e -w net.ipv4.tcp_keepalive_time=1800;
busybox sysctl -e -w net.ipv4.ip_forward=0;

### Ondemand Governor Tweaks
chmod -R 777 /sys/devices/system/cpu/cpufreq/ondemand
echo 95 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold;
echo 5 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/down_differential;
echo 1 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/io_is_busy;
echo 1 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_down_factor;
echo 120000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate;
chmod -R 444 /sys/devices/system/cpu/cpufreq/ondemand

### Disable I/O Stats
if [ -e /queue/iostats ]; then
echo 0 > /queue/iostats;
fi;  

### Default I/O Scheduler Tweaks
if [ -e /queue/rotational ]; then
echo 0 > /queue/rotational; fi;
if [ -e /queue/nr_requests ]; then
echo 1024 > /queue/nr_requests; fi;

### Disable Vsync
busybox mount -t debugfs debugfs /sys/kernel/debug
echo '0' > /sys/kernel/debug/msm_fb/0/vsync_enable
umount /sys/kernel/debug

### Disable Normalized Sleeper
echo NO_NORMALIZED_SLEEPER > /sys/kernel/debug/sched_features;

### Disable Gentle Fair Sleeper
echo NO_GENTLE_FAIR_SLEEPERS > /sys/kernel/debug/sched_features;

### Disable New Fair Sleeper
echo NO_NEW_FAIR_SLEEPERS > /sys/kernel/debug/sched_features;

### Disable Android Logger
rm -f /dev/log/main

### Ext4 File-Systems optimization & instant-mount
busybox mount -o remount,noatime,noauto_da_alloc,nodiratime,barrier =0,nobh /system
busybox mount -o remount,noatime,noauto_da_alloc,nosuid,nodev,nodir atime,barrier=0,nobh /data
busybox mount -o remount,noatime,noauto_da_alloc,nosuid,nodev,nodir atime,barrier=0,nobh /cache

### Internal SD I/O Tweaks
echo 8 > /sys/block/mtdblock0/bdi/read_ahead_kb
echo 8 > /sys/block/mtdblock1/bdi/read_ahead_kb
echo 8 > /sys/block/mtdblock2/bdi/read_ahead_kb
echo 8 > /sys/block/mtdblock3/bdi/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:0/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:1/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:2/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:3/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:4/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:5/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:6/read_ahead_kb
echo 128 > /sys/devices/virtual/bdi/7:7/read_ahead_kb
echo 4096 > /sys/devices/virtual/bdi/179:0/read_ahead_kb
echo 4096 > /sys/devices/virtual/bdi/default/read_ahead_kb
echo 97 > /sys/devices/virtual/bdi/179:0/max_ratio
echo 97 > /sys/devices/virtual/bdi/default/max_ratio
echo 4096 > /sys/devices/virtual/bdi/179:0/read_ahead_kb;

CWM for ICS official framework


CWM for ICS official framework



1.you need rooted your phone
2. USB debugging enable
3. download data "CWM_Install_Xperia_U" from
4. extract it
5. find install.batch and click on it
6. Done
7. To boot into CWM**CWM ( hold velume down till the renbow light show - )

Bravia Engine 2 [ XU]


Photo and Video enhancement....

What to have?


STOCK ICS 4.0.4 / BASE 4.0.4
ROOT DEVICE
SOME WORKING BRAIN
BaviaEngine 2 zip file ( http://www.mediafire.com/?pr3cm2vz9ob1ao1 )

1. ACCESS TO YOUR BUILD PROP... (via ROOT EXPLORER or something else)
2. CHANGE YOUR BUILD PROP to

ro.service.swiqi.supported=true
persist.service.swiqi.enable=1

to

ro.service.swiqi2.supported=true
persist.service.swiqi2.enable=1

Save it

3. REBOOT YOUR DEVICE TO CWM
4. FLASH the zip file
5. REBOOT to system
6. ENABLE it


Sony Xperia U ST25i aka Kumquat Specs and Features


Sony Xperia U ST25i aka Kumquat Specs and Features



Operating System
  1. Android 2.3.7 Gingerbread, upgradeable to Android 4.0.4 Ice Cream Sandwich. Jelly Bean on Xperia U is being on test stage! 

Screen/Display features
  1. Resolution: 480 x 854 FWVGA (arround 280 ppi)
  2. Size: 3.5"
  3. Type: LED-backlit LCD, capacitive touchscreen, 16M colors
  4. Multitouch Up to 4 fingers
  5. Scratch Resistant Glass Coating
  6. Timescape NXT UI

Memory Specs
  1. No SDcard slot
  2. 8 GB Internal Storage (4 GB user-accesible)
  3. 512 MB RAM 

CPU  
  1. 1 GHz dual-core Cortex-A9
  2. NovaThor U8500 Chipset by ST-Ericsson

GPU
  1. Mali-400MP (Single Core) by ARM

Camera Specs and Features
  1. 5.0 MP Camera with LED Flash and Auto focus
  2. 0.3 MP Front-Facing Camera
  3. 720p Video Recorder
  4. 3D Sweep Panorama
  5. Face and Smile detection
  6. Image Stabilization
  7. Fast Capture

Other Features
  1. Browser with Adobe Flash Player, HTML5

Exclusive Features on XPERIA U
  1. Sony 3D Surround Sound Technology
  2. Xloud Sound Technology (Xperia Smartphone exclusive)
  3. Sony Mobile Bravia Engine (exclusive on Sony Xperia Smartphone)
  4. Exchangeable Bottom Caps 
  5. RGB LED Bar (LED Bar will change as per the dominant screen color, only effective in Viewing photos on Gallery, Stock Music Player, and Theme)


Gaming
  1. Go here: http://www.facebook.com/groups/st25i/doc/356668014412587/

Review
  1. http://www.gsmarena.com/sony_xperia_u-review-770.ph





What is ROOT?


In short:

Root / Rooting = to lift the default protection of the Android OS and gives you access to all system files that are normally hidden from you.

This enables extra functionality but also requires knowledge about the android system to know what is safe to do and what not.

- Simple root use: changing theme elements / new battery icons / individually controlling the LEDs

- Advanced root use: overclocking your CPU / adjusting the OS / making a custom ROM







ON-SCREEN NAVIGATION BUTTON FOR ICS like GALAXY NEXUS


ON-SCREEN NAVIGATION BUTTON FOR ICS like GALAXY NEXUS


Preparations:
1. xperia U with ICS firmware (perhaps jelly bean soon)
2. file root many android dari http://forum.xda-developers.com/attachment.php?attachmentid=1369608&d=1349161572 then extract with 7zip

nb.: computer with installed xpera u driver.

Instructions:
1. Doubleclick RunMe.bat
2. type 1, press enter
3. plug in your xperia u with screen on or off (not power off) with usb debugging checklist on
4. wait till shown Running.... on RunMe.bat
5. see your device, automatically get into backup & restore application, then choose tap restore
6. wait till reboot and get into homescreen. While in RunMe.bat keep processing 'till shown press any key to continue . . . Then device will reboot again, get into homescreen again, and... Enjoy rooted device!
- work with locked or unlocked bootloader

ROOT : [ROOT] Improve the quality of your audio on your XU! (Beats audio)


ROOT ONLY!!!


Just follow the instructions. After your phone reboots you'll have Beats audio driver installed. It greatly improves audio quality of your device. It works great with any high quality headphones (like ones you get with your XU).

WARNING!
Uninstalling the app will just remove the notification of the app. The driver can't be uninstalled untill the app gets an update!!!

[Add-on][Tweaks/Mods/Apps]█ PIMP MY ROM █ v1.4.1 {Any Device // Any Rom}[AROMA][WIP]


[Add-on][Tweaks/Mods/Apps]█ PIMP MY ROM █ v1.4.1 {Any Device // Any Rom}[AROMA][WIP]



By Androguide.fr @ XDA


disclaimer > I have nothing to do with this (did made it just tested it and felt like sharing.

U NEED CLOCKWORKMOD RECOVERY FOR WHICH U NEED HAVE UNLOCKED BOOTLOADER.

This is NOT a romPimp my Rom is an aroma-installer based script that will allow you to choose between a plethora of nice tweaks, mods, apps, themes and features to add to your current rom.


YOU CHOOSE which options and tweaks to apply, all this with a nice touchscreen interface, even if you're not running a touchscreen recovery, thanks to Aroma.


You can now run this script on any Android Device !!! PmR was originally created for the Galaxy tab 7.7 (p68xx), but it has now evolved into a universally usable script !

Here's the list of the features that you can enable and disable at will (will be adding more and more over the time) : 

Tweaks and Mods it includes

Init.d Scripts :
 - Faster internet browsing
 - Better Battery consumption
 - Miscellanous kernel tweaks
 - Ondemand governor tweaks
 - Dalvik VM tweaks
 - Defragmentation of sqlite3 databases at each boot
 - Disable android-logger
 - Disable kernel Normalize Sleeper
 - Use strict minfree handlers
 - Flags blocks as non-rotational
 - Enable data_writeback for ext4 partitions for better i/o
 - Force GPU rendering on 2D operations
 - Improve multitasking by tweaking system task-killer
 - run Vacuum & Reindex at each boot to optimize sqlite
 - Use Adblock hosts to block in-app advertising
 - Improve External sdcard I/O performances
 - Zipalign all apk at each boot
 - Install Thunderbolt's s98system_tweaks
 - Tweak CPU and GPU tuning values
 - Tweak the behaviour of the Complete Fair Scheduler (cfs)
 - Tweak TCP buffers for better internet speed
 - Optimize all sqlite3 databases to increase speed of apps that use db

Build.prop Tweaks :
- Better jpg image quality
- Better camera recording quality
- Lock launcher in memory 
- Battery savings
- Disable kernel error checking
- Dalvik VM tweaks
- Faster scrolling
- Better touch responsiveness
- Faster browsing and download speed
- Allow purgeable assets
- Reduce dialing time
- Misc 3G tweaks
- Deeper sleep
- Reduce black-screen time of proximity sensor after a call
- Smoother video streaming
- Faster wifi connect/disconnect
- Overall smoothness improvements
- Increase the size of VM heap

Enable/Disable Functionalities
- Enable hardware video acceleration
- Enable gpu UI rendering
- Enable HSUPA
- Enable JIT (Just In Time) Compiler for Dalvik vm
- Enable surface dithering
- Disable Boot-Animation
- Disable usage-data sending
- Disable volume buttons wake
- Disable adb notification icon
- Buttons backlight always enabled when screen on

Applications
- Install the latest jellybean gapps
- Install 13 Inverted gapps (gmail, gtalk, gvoice, play store, google music, google+, google now, google reader)
- Invert some system apps (Sms/Mms, Email, Calendar, Calculator, People, Youtube)
- Install an alternative launcher : Apex Launcher & Nova Launcher
- Install latest Solid Explorer
- Install Adobe Flash Player for JB
- Install Rom Toolbox Lite
- Install Swiftkey hacked for Paranoid Android

Add Features to your tab
- Add support for OpenVPN connections
- Install Awesome Beats Audio dsp manager for a greater sound experience
- Install a hacked version of Swiftkey that works with Paranoid Android

Themes
cm10 themes :
- Miui v4- Holo (white/blue/cyan/Tangerine)- Thyrus soft-buttons mod for Paranoid Android

cm9 themes:
- Blue Infinitum- Black Infinitum


Instructions
You can flash this on top of any custom rom with init.d support
- Download Pimp My Rom (a.k.a PmR)
- Make sure you are running a custom recovery (CWM or TWRP)
- Wipe cache and dalvik cache in recovery
- Flash PmR in recovery 
- A wonderful touchscreen interface will pop-up(devices need different touchscreen calibration, if the touchscreen doesn't work, use the menu button of your device, select "Calibration Tools" and follow the instructions)
- Follow the on-screen instructions, make your choices between all the different features of PmR
- Select "Reboot my device" on last screen (or reboot from recovery) and enjoy 


DOWNLOAD >>>
Pimp My Rom v1.4.1 Link : http://tinyw.in/xZXR

169.13mb

Pimp My Rom v1.4.1 - Light version 
30.94mb

[MOD][APP]ALL Stock launchers update=27-may-2012


Original thread at XDA created By Don2012 @ XDA

Disclaimer : (i dont know the developer, no relation with him or with this project.......blah blah...................just sharing the cool things )

official launchers for our sgs2 made by the makers of different manufacturers such as sony etc.(list below)

i have here launchers EXTRACTED from different phones such as=
 [1]ACERs official launcher
 [2]Dell's DELL STAGE with all widgets

 [3]LG's LG HOME + widgets 
 [4]Samsung's TOUCH WIZ 4.0(old)(ignore)
 [5]Samsung's TOUCH WIZ 5.0 galaxy s3(read note!!)
 [6]Sony's xperia arc home extracted by (Superuser.Angga)
 [7] MOTOROLA'S MOTOBLUR
 [8]htc's sense (modded adw)
 [9] NEW=final fix updated= HTC sense 4.0 clock v3 
 [10] Full HTC sense 3.6/4.0 lockscreen (original with full Ring animation) !(Modded Agile Lock fixed v1)
 [11]MIUI laucher for non miui roms!!! 


INSTRUCTIONS=extract zip file and install apkNOTE
 flash the touch wiz 5 zip!!!
 note for miui laucher==How to activate Appdrawer:
 Install attached APK (MIUI settings)you will get an application called MIUI Control Pannel open that app,There are five option, only last option will work Which is "App drawer option"check auto start and enable App drawer in that.you can set pull down location also in that,Now you can pull down the app drawer from top, just tap & hold and pull down from the location you set, from few millimetre down where we pull down the status bar.(this you have to set after each boot)Enjoy