Sunday, November 27, 2016
How to Install APK Files on Android Device Emulator
How to Install APK Files on Android Device Emulator
In this tutorial you are to run any APK (Android application) file to your Android emulator. Assuming you already have the Emulator running (if not sure how run the Android device emulator, refer to this http://blog.kerul.net/2011/09/android-emulator-to-run-your-apps.html) .
Figure 1
Locate your adb.exe file in your Android SDK folder. In Windows environment normally your adb.exe is inside [Android-SDK-folder]/platform-tools/ . In my case, the adb.exe is in C:android-junoandroid-sdkplatform-tools (this is an example path to the adb.exe, may varies depending on your system). Find any APK file (for the purpose of this tutorial, Ive prepare an APK file download here http://bit.ly/peribahasa-apk ). After youve successfully downloaded the APK, put it inside your [Android-SDK-folder]/platform-tools/ as in Figure 2.
Figure 2
Now run the adb.exe through the command prompt, go to Start, and find cmd.
Figure 3
In the command line, go inside the platform-tools folder, as in the Figure 4. Execute command;
adb install Peribahasa.apk
C:Userskerul>cd
C:>cd android-juno
C:android-juno>cd android-sdk
C:android-junoandroid-sdk>cd platform-tools
C:android-junoandroid-sdkplatform-tools>adb install Peribahasa.apk
Figure 4
Later, the apps you just install will be in the emulator.
Available link for download