I am able to solve similar issue just as this one. I am running Cocos2d-x v3.6 and able to have this error on both r9d and r10e NDKs. Whenever I ran the android-build.py from the cpp-tests folder I always got this error:
cocos compile -p android -s C:\Cocos2d-x\cocos2d-x-3.6\build..\tests/cpp-tests --ndk-mode debug
Running command: compile
Building mode: debug
Android platform not specified, searching a default one...
Can't find right android-platform for project : "C:\Cocos2d-x\cocos2d-x-3.6\tests\cpp-tests\proj.android". The android-platform should be equal/larger than 10
Build dynamic library for project [ C:\Cocos2d-x\cocos2d-x-3.6\build..\tests/cpp-tests ] fails!
Also this error appear as well when I tried to create a project and running build_native.py
from the project itself.
I am able to figure out maybe because the ANT_ROOT, NDK_BUILD and ANDROID_SDK_ROOT are not being registered into the cocos command properly.
Here what I did:
- I deleted all environment variables related to Cocos2d-x (ANT_ROOT, NDK_BUILD and ANDROID_SDK_ROOT).
- I went into the Cocos2d-x root folder and ran setup.py again
- This time Cocos2d-x asks for the new paths (since we deleted them)
- I added the path manually from there then I restarted the console.
I went ahead and tried this tutorial.
I got a slightly different output message than that of the screenshot. I got mine failed but at least, I no longer have the error that says Android platform not specified.
UPDATE:
It seems the error is being caused by ANT_ROOT. There is tricky part here. You specify the ANT_ROOT without ;
or \
at the end of the path when you insert the path by My Computer > Right Click > Properties > Advance System Settings > Environment Variables (Assuming you are using windows). The cocos build appends an additional directory off from ant and in effect it destroys the actual path during build. Replacing it manually and then restarting console returns back where I was before. I simply did what I have done awhile back (Deleting all environment variable related to Cocos2d-x, this time including ANT_ROOT) and it works! I am able to build the apk and run it on my phone!
Hope this helps someone in the future.