Compile android error

Hi,I’m using Debian jessie (linux)
I’m trying to compile my game to android platform
the code start working but show error and build failed

here is the part that show Error

-code-gen:
[mergemanifest] Merging AndroidManifest files into one.
[mergemanifest] Manifest merger disabled. Using project manifest only.
[echo] Handling aidl files…
[aidl] Found 1 AIDL files.
[aidl] Compiling 1 AIDL files.

BUILD FAILED
/home/yassine/Documents/android-sdk-linux/tools/ant/build.xml:597: The following error occurred while executing this line:
/home/yassine/Documents/android-sdk-linux/tools/ant/build.xml:649: The following error occurred while executing this line:
/home/yassine/Documents/android-sdk-linux/tools/ant/build.xml:655: Execute failed: java.io.IOException: Cannot run program “/home/yassine/Documents/android-sdk-linux/build-tools/23.0.2/aidl” (in directory “/home/yassine/Desktop/cocos_games/cryptoozoo/frameworks/cocos2d-x/cocos/platform/android/java”): error=2, No such file or directory
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1047)
at java.lang.Runtime.exec(Runtime.java:617)
at org.apache.tools.ant.taskdefs.launcher.Java13CommandLauncher.exec(Java13CommandLauncher.java:58)
at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:428)
at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:442)

pls help me how to correct this .
Thank you .

Are you using jessie amd64 ?
Can you try

ldd /home/yassine/Documents/android-sdk-linux/build-tools/23.0.2/aidl

If nothings appears so you have to enable i386 architecture and install few packages
Check for example Linux Sleuthing: Android SDK on 64-bit Linux

doing

ldd /home/yassine/Documents/android-sdk-linux/build-tools/23.0.2/aidl

return
not a dynamic executable

Ok, so you have to install i386 arch on your linux, please follow http://linuxsleuthing.blogspot.fr/2015/08/android-sdk-on-64-bit-linux.html :

$ sudo dpkg --add-architecture i386
$ sudo apt-get update
$ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

ldd aidl should returns something like that

$ ldd aidl
    linux-gate.so.1 =>  (0xf77ae000)
    libstdc++.so.6 => /usr/lib32/libstdc++.so.6 (0xf7673000)
    libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xf762d000)
    libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf760f000)
    libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf7461000)
    /lib/ld-linux.so.2 (0xf77af000)