Starting arm emulator gives “unknown option: – please use -help for a list of valid options”, but there does not seem to be anywhere to see or change the options being used. Does any-one know hows to get around this problem? Thanks.
Share
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.
How are you starting the emulator (In AVD Manager? From Eclipse?…)? Behind the scenes it’s just running the command
<path-to-sdk>\tools\emulator.exe -avd emulatornameThe error you mentioned is thrown if there are invalid options. For example, the following:
<path-to-sdk>\tools\emulator.exe -avd emulatorname -wuioejwill throw the following error:
In your case it looks like there’s just an extra ‘-‘ at the end for some reason, which is why I asked how you’re starting the emulator.