Y'all,
Google broke ant in Android. This means that, among other things, Cordova
is broken if you are using the latest tooling. HOWEVER, I found a
workaround and this is tracked in Android's bug tracker.
If you are seeing an error along the lines of ${aapt} can not be found then
this affects you.
First the workaround :
add
```
<property name="aapt"
location="${sdk.dir}/build-tools/22.0.1/aapt" />
<property name="aidl"
location="${sdk.dir}/build-tools/22.0.1/aidl" />
<property name="dx" location="${sdk.dir}/build-tools/22.0.1/dx"
/>
<property name="zipalign"
location="${sdk.dir}/build-tools/22.0.1/zipalign" />
```
to $ANDROID_HOME/tools/ant/build.xml
Second, Google's bug report for tracking :
https://code.google.com/p/android/issues/detail?id=176488