Android / Eclipse: where to write command lines like "-wipe-data emulator"?

Many blogs mention how to write command lines to do different things ... but I don’t know where to write these command lines! For example, I want to clear the emulator using emulator -wipe-data , but where should I put this?

+4
source share
2 answers

Open a command prompt and click

 android-sdk-windows\tools 

Then for the following command:

 emulator -avd -wipe-data 

use something like:

 emulator -avd myandroidavd -wipe-data 
+9
source

To set the cleaning option on a Mac, when you start the Android SDK Manager, click the "Start" button to start AVD. The Launch Options window opens. There is a β€œClear user data” checkbox about halfway down.

+2
source

All Articles