Where is the dx tool located in the Android SDK?

I installed the latest version of Android sdk just now.

But I can not find the dx tool (which is used to convert .class to .dex file). Neither platform-tool/ nor tools/ . Where can I find the dx tool, then?

(With the Android SDK Manager in Eclipse, I installed the Android SDK Tools , Android SDK Tools for the platform , Tools for creating the Android SDK and All Android platforms from API 3 to API 19.)

+6
source share
3 answers

dx is inside build-tools/android-{version}

From the shell, you can enter ./dx if you are inside dir android-{version} , the whole path to dx otherwise.

+6
source

I found it in the section "android-sdk \ build-tools \ any-sdk-build-tool-version".

+1
source

you will find it in \ platform \ any-platform \ tools \ dx.bat

0
source

All Articles