StackTips

How to Generate .apk and Install to Android Device

nilan avtar
Nilanchala Panigrahy 馃尡

This tutorial will be demonstrate, how to build android code and generate a signed APK and then install in device.

Application testing is one of the vital thing we do soon after development. Due to larger number of devices with different resolution, different聽OS versions and different聽capabilities, it is difficult to test the application on all supported devices. Due to this limitation, each of the聽vendors聽made application testing easy using virtual devices or so聽called聽simulators. 聽Android uses AVD, Android Virtual devices to test the mobile application.

How to generate聽signed聽.apk in android?

  • Download the android Keys and place it in local folder.
  • Right Click on the Project.
  • Find Android Tools>Export Signed Application Package.
  • Select the Project to Export Signed Application Package and Click Next
  • Key store Page selection appears.
  • Enable radio button of use Existing key store.
  • Browse to the local folder of the android keys.
  • Enter the appropriate key password (Same as the key password given while generating key store), Click next.
  • Select the destination folder, where you want to place your newly created .apk. And Click finish.

How to installing android application

Before testing the聽application聽either in real device or simulator we need to install it. In android there are various聽different ways to聽install聽the android聽application (.apk) into simulator or device.

1. Installing .apk to simulator using eclipse

One way of installing android application to android emulator is using Eclipse. Once we create the avd from avd manager, we can run the application directly from the source project from eclipse. For every subsequent change or testing we don鈥檛 have to restart the AVD every time.

2. Installing .apk to simulator using ADB utility

If you don鈥檛 have access to Eclipse or the ADT Plugin, you can install your application on the emulator using the adb utility. Before installing the application, you need to build and package it into an .apk.

When the emulator is running, you can also connect to the emulator instance鈥檚 console to issue commands as needed.

> <adb install <path-to-your-APK>

Sharing is caring!

Did you like what Nilanchala Panigrahy 馃尡 wrote? Thank them for their work by sharing it on social media.

nilan avtar

Nilanchala Panigrahy 馃尡

I'm a blogger, educator and a full stack developer. Mainly focused on Java, Spring and Micro-service architecture. I love to learn, code, make and break things.

Related articles