Step-by-Step For Running an Android Emulator
Android Development Tools include an Android emulator used to review and test your Java code. You must first download the ADT files and install them in the Eclipse software, which is the Java environment used to create Android apps. After you install the ADT, you create an Android Virtual Device, which you use to run the emulator while developing your software.
Instructions
-
-
1
Open your Eclipse software. Click the "Help" menu item at the top of the software and click "Install New Software." A configuration window opens. Click the "Add" button. In the download text box, copy and paste "https://dl-ssl.google.com/android/eclipse/" and click "OK."
-
2
Click "Next" in the next two wizard windows until you read the license agreement. Click "I agree" and click "Finish" to install the Android SDK. The Android SDK adds all the libraries necessary for Android development.
-
-
3
Click the "Window" menu item and select "Android SDK and AVD Manager." Click "Virtual Devices" in the list of virtual device types and click "New." The "Create New AVD" window displays. Type a name for your device and check the box next to the Android version you want to target. Click "OK" to create the virtual device, which acts as your Android emulator.
-
4
Click the "File" menu item, then click "New," then "Project." Click "Android Project" in the first wizard window, then click "Next." Check the box for the Android version you chose in the virtual device creation. Type a name for the project and click "Finish." Eclipse creates the main template for your Android app.
-
5
Click the "Run" button. The Android emulator runs. You can click the buttons and menu options just like you press and navigate on your Android phone or tablet.
-
1