Skip to main content

Essential Guide to Setting up Emulators- ABNHive

An Android emulator is an Android Virtual Device (AVD) that represents a specific Android device. You can use an Android emulator as a platform to run and test your applications on your PC.
Essential Guide to Setting up Emulators- ABNHive

Installing Emulator on PC

Steps are given below
  1. Open SDK Manager from Android Studio, click Tools > SDK Manager.
  2. Click SDK Tools section
  3. Click to tick Android Emulator and Intel x86 Emulator Accelerator - HAXM Installer (If available)
  4. Click OK Button
  5. Wait to complete download
  6. It will automatically download Android Emulator

Creating AVD

After downloading the Emulator we need to Create AVD (Android Virtual Device). 
  1. Click Tools > AVD Manager.
  2. Click Create New Virtual Device Icon
  3. Now choose device 
  4. If a download option is there, just click to download Device Image
  5. Configure Device
  6. Now Android Studio creates AVD
  7. Click the green icon to run Emulator






- Aswin Bhim Nath

Comments

Popular posts from this blog

Android Application Components Activities, Services, Broadcast Recievers, Content Providers - ABNHive

Application components are the essential building blocks of Android app development.  Each component is an entry point through which the system or a user can enter your app. There are 4 types of components in android Activities Services Broadcast receivers Content providers Let's dive into the deep.  Activities This is a component that represents a single screen with a user interface or simply an entry point for interacting with the user. Example, an email app might have one activity that shows a list of new emails. Activities work together to form a cohesive user experience in the app. For example, clicking a button on the first screen might replace that screen with another screen containing other widgets, a web page, a movie, or text information. Activities are typically created by subclassing (extending) the Android class Activity.  click here   to know more about Activity. Services This runs in the background ...