user1807717
user1807717

Reputation: 21

how to find aapt version

I am trying to build an android application from the command line (the one described at "Minimal" source files to create Android app using Eclipse + ADT ) and aapt is failing with some errors. How do I discover what version of aapt I am running?
Is there only one version?
Here is the command line I am running:
aapt package -M AndroidManifest.xml -S res -J gen
The output does not show the version number, nor does there appear to be any flag to set to show the version.

Upvotes: 2

Views: 3056

Answers (1)

Abdullah Jibaly
Abdullah Jibaly

Reputation: 54790

You can try this solution:

aapt v

Upvotes: 5

Related Questions