Reputation: 28509
I have Android tools r16 installed on a Win7 machine. I have the tools folder in my path. I can run "lint" and the command executes, giving me help on the command line parameters.
I then navigate to a project folder, and type:
> lint .
I expected it to run against the project in the current folder, but it seems to run against a project called SdkController, which is inside the Android tools folder.
Assuming I need to explicitly provide the full path to the project I tried again with this:
> lint c:\...\android\projectX\source\
I just get "does not exist". If I take the exact same path and CD to it, I am taken to that folder. The path I'm specifying definitely exists. What is it that "does not exist"?
I'm probably missing something very obvious, but can anyone explain to me how to run Android lint on Windows without this error?
Upvotes: 0
Views: 400
Reputation: 76486
Yeah it's probably that you have a space in your folder path :-) like:
/Documents and Settings/
every new install I do or watch someone do I always recommend. Easy:
C:/AndroidSDK/
Upvotes: 2