summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/developing/tools/aapt.jd
blob: 40a209db059997a61161e58b0978e0133517f354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
page.title=Using aapt
@jd:body

<p><strong>aapt</strong> stands for Android Asset Packaging Tool and is included in the <code>tools/</code> directory of the SDK. This tool allows you to view, create, and update Zip-compatible archives (zip, jar, apk). It can also compile resources into binary assets.
</p>
<p>
Though you probably won't often use <strong>aapt</strong> directly, build scripts and IDE plugins can utilize this tool to package the apk file that constitutes an Android application.
</p>
<p>
For more usage details, open a terminal, go to the <code>tools/</code> directory, and run the command:
</p>
<ul>
  <li><p>Linux or Mac OS X:</p>
	<pre>./aapt</pre>
  </li>
  <li><p>Windows:</p>
	<pre>aapt.exe</pre>
  </li>
</ul>