最終更新:2015-07-15 (水) 16:19:52 (3201d)  

deodex
Top / deodex

.odexから.dexを再生成して.apkに含めることで、メーカーが想定した環境以外にもアプリを移植し易くする作業

メモ

  • .dex (Dalvik Executable)
  • .odex (Optimized dex))
    • .dex を端末に最適化したキャッシュファイル

ツール

メモ

  • odexしてあると高速でセキュアになる
  • deodexすると
    • The cache for each APK is contained within the APK itself as a classes.dex file, making the boot times slower as Dalvik VM is built up.
  • With deodexed ROMs, only the first ever boot after clearing Dalvik cache is slower, and all subsequent ones will be the same as any odexed ROM.

関連

参考