Ente Pengunjung Ke

Not-
Found
Tampilkan postingan dengan label tuts. Tampilkan semua postingan
Tampilkan postingan dengan label tuts. Tampilkan semua postingan

Odex Deodex All Rom.. Gampang Method :D Try It.. Work 100 persen

Would you like to speed up your rom, more stability, more battery life, no lag to open system app and better ram utilization? Now you can! (Only For Rooted Phone And Deodexed Rom)

This is possible with my Odexer Tool created myself.
I worked a lot of time to create this script.


What is ODEX and DEODEX?
In Android file system, applications come in packages with the extension .apk. These application packages, or APKs contain certain .odex files whose supposed function is to save space. These odex files are actually collections of parts of an application that are optimized before booting. Doing so speeds up the boot process, as it preloads part of an application. On the other hand, it also makes hacking those applicationsdifficult because a part of the coding has already been extracted to another location before execution.
THEN COMES DEODEX
Deodexing is basically repackaging of these APKs in a certain way, such that they are reassembled into classes.dex files. By doing that, all pieces of an application package are put together back in one place, thus eliminating theworry of a modified APK conflicting with some separate odexed parts.
In summary, Deodexed ROMs (or APKs) have all their application packages put back together in one place, allowing for easy modification such as theming. Since no pieces of code are coming from any external location, custom ROMs or APKs are always deodexed to ensure integrity.

Another explanation is this:
If you odex the rom, you'll have also more space in data (this is important because if you don't have partition ext4 in sdcard, you won't have too free space), increase battery life, more stability and increase perfomance( the Rom is more faster to load system and app) but you can't modifie apk after odex (you can't mod program with classes.dex).
Infact ODEX is an OPTIMIZED-DEX and Android load system and app faster than deodexed (DEOPTIMIZED-DEX) app and system.
When you have a deodex file (a lot of roms are deodexed) you have File.apk in system/app and in data/dalvik-cache/system@app@File.apk@classes.dex, but with odex file you have File.apk in system/app and File.odex in system/app

With these explanation you can understand that:
Odexed Rom = +fast -difficult_customization +more_battery_life +better_stability +less_ram_utilization
Deodexed Rom = -slow +customization -less_battery_life -less_stability -worse_ram_manager

If you run my script with remove classes.dex and zipalign disabled your rom will be odexed without "-difficult_customization"

My script does (it depends by option):
- odex framework
- odex app in system/app
- odex app in system/priv-app (if you have android kitkat)
- remove classes.dex and zipalign from jar/apk (if you enable this option)


All commands of my script:
+ frame [odex all framework]
+ sysapp [odex all system apps]
+ all [odex framework and system apps]
+ set [change settings of the script];
> 1 [enable/disable remove classes.dex and zipalign]
> 2 [back]
+ exit [exit from the script]

WORKING IN ALL ROM (Froyo, GingerBread, IceCreamSandwich, JellBean And KitKat)
AOSP - AOKP - CM - MIUI - PA - PAC - BASE STOCK - ALL!


Credits:
- @MatrixDJ96 (Me)
- MrTony68 (Beta Tester)
- @Thyrus (Beta Tester)
- @angel.sea (For Support)



Changelog

Changelog:
Odexer Tool 1.1.1
- Fixed "elif syntax error"
-----------------------------------
Odexer Tool 1.1
- Fixed creation of flashable zip in some device
- Disabled command to change settings with kitkat
- Fixed minor bugs
-----------------------------------
Odexer Tool 1.0
- First stable version


Important Dalvik

IMPORTANT IF ANDROID REBUILD DALVIK-CACHE AT ALL BOOT (Android is upgrading...):
1 - Remove all files .odex from /system/app, /system/framework (and /system/priv-app if you have android kitkat)
2 - Enable "Remove classes.dex & Zipalign"


IMPORTANT TO ODEX KITKAT ROM:
The Options "Remove classes.dex" & "Zipalign" Must Be Disabled!


IMPORTANT TO ODEX YOUR ROM:
To Odex Framework (Command 'dexo -fr') You Must Have At Least 16% Of Free Space In System.
To Odex System Apps (Command 'dexo -sys') You Must Have At Least 26% Of Free Space In System.


How to odex:
- download file
- go to recovery
- install zip
- reboot
- open terminal emulator (will be installed automaticaly)
- setting terminal type "Linux"
- type su to obtain root permission
- type odex and enjoy!

IF YOU HAVE ENABLED "REMOVE CLASSES.DEX & ZIPALIGN", A FLASHABLE ZIP BY RECOVERY WILL BE CREATED WITH OPTIMIZED SYSTEM SO REBUILD IN RECOVERY AND FLASH THIS FILE (You find it in sdcard and it's called "Optimized-System_NAMEOFYOURDEVICE.zip")

I hope that all are clear
 

+++++++++++++++++++++++++++++++++
Download link: download sini aja..

++++++++++++++++++++++++

Very Thank to >>  MatrixDJ96  

Sumber >> xda-developers nya master MatrixDJ96 :) 

Posted by
Unknown

More

How To Add QuickPanel 3Minit QuickLaunch Panel

The quicklauncher panel:
It is simply a scrollable panel of app shortcuts that you instantly launch from your drop down panel. You can launch apps from inside other app without the need to exit to home screen first. You can also edit and order the shortcuts to suit your needs.

The idea:
When I started writing this mod I wanted to make it as easy to implement as possible which means no smali changes. I also wanted to make it universal for most android devices so thats what you get.

Implementation Guide:
This guide assumes you can already decompile and recompile an .apk correctly. If you cannot do this please don`t ask me how there are already lots of guides on how to do this here at XDA.

prerequisites:
  • A deodexed SystemUI.apk with a api level of 16 or higher
  • Knowledge of decompiling and recompiling the .apk.
  • These files: Download. MD5:bc0afe23017cb58420c0422dac1f0836
  1. Decompile the SystemUI.apk and navigate to smali/com/android/systemui/statusbar/policy
  2. Copy the quicklaunch folder from the downloaded files and paste it into the above location
  3. Navigate to res/layout and open status_bar_expanded.xml look for this line: 
<LinearLayout android:orientation="vertical" android:id="@id/scrollCart" android:layout_width="fill_parent" android:layout_height="wrap_content">

  1. (Note this is based on TW stock files you may have to mess with the location in your file to find correct placemant)
  2. Directly below that line add:
    Code:
    <HorizontalScrollView android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="wrap_content">
                <com.android.systemui.statusbar.policy.quicklaunch.QuickLaunchContainer android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" />
    </HorizontalScrollView>
  3. Recompile and push to your device its done:)

How to use:
To add a shortcut simply scroll all the way to the right and press the + symbol this will bring up a list of currently installed app to choose from click one to apply.

To change or remove a shortcut long press the icon and a menu will appear select the desired option by clicking it.

You can also get further functionality by getting the quicklauncher app from the Playstore for just $1. In this you can set colors, visibility of the panel and text etc and more. This will support the development thanks.

Posted by
Unknown

More

[SHARE] Google Text-to-speech updated with high definition English

The engine powering speech output for Android has seen an update. The service, which provides vocal feedback for a variety of apps and services, now has less robotic voices, should you want them. The higher quality voices have a pretty hefty file size, but if you use txt-to-speech much, they might be worth it.

Posted by
Unknown

More
Diberdayakan oleh Blogger.