Reputation: 5773
i created one android project on command line using android tool. After adding aidl file, while compiling using the command (ant debug projectname), its giving the arro "BUILD FAILED"
Target "MyIpc" does not exist in the project "MyIpc"
Upvotes: 1
Views: 503
Reputation: 15018
You should only be issuing the command ant debug
and nothing else. ant debug projectname
is incorrect.
Upvotes: 2