9

What does the Android shell command dexopt ?

Where can i find a manual ?

droiduser
  • 91
  • 1
  • 1
  • 2

1 Answers1

2

dexopt is a system-internal tool that is used to produce optimized dex files.

The source code is available here: https://android.googlesource.com/platform/dalvik-snapshot/+/gingerbread/dexopt/OptMain.c

Documentation is also included with the source; here's a human-readable version: http://www.netmite.com/android/mydroid/dalvik/docs/dexopt.html

Community
  • 1
  • 1
CJBS
  • 15,147
  • 6
  • 86
  • 135