android.ndk = 9c
#android.ndk = 10e
Also, and I don't know if this would help your build or not, I changed java.target and java.source properties in AndroidSDK/android-sdk-Linux/tools/ant/build.xml to make java happy.
<property name="java.target" value="1.7" />
<property name="java.source" value="1.7" />
You can set the build tools to use in the same file by editing the appropriate property.
<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" />