I am trying to compile my android app in ant and I keep getting this message:
BUILD FAILED
K:\build.xml:359: aaptexec doesn't support the "basename" attribute
why does this happen? I am using the template from android sdk 4.
Thanks, Jason
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Please, provide full ant output with stack trace. You’re probably using mismatched sdk/target platform versions. This might cause use of unsupported build system features from your build.xml. Upgrade your sdk, and update build configuration with
androidtool:android update project --name <project_name> --target <target_ID>--path <path_to_your_project>
See http://developer.android.com/guide/developing/other-ide.html for
androidcommand details