I have installed Android 4.4 through VirtualBox on my PC. I want to know how to install an APK (e.g. FIFA 14) in it via a command in terminal.
How to do that?
I have installed Android 4.4 through VirtualBox on my PC. I want to know how to install an APK (e.g. FIFA 14) in it via a command in terminal.
How to do that?
$ su
# cd (location in which you have the apk file)
# pm install fifa14.apk (or whatever the apk name)
fifa1.apk
. – Dan Hulme Jun 18 '14 at 13:20cd
, not just(location)
. For example, if you have put the .apk file in/sdcard/
, usecd /sdcard/
. – aleksikallio Jun 18 '14 at 14:01cd /sdcard/(folder name in which you moved the apk)
. – samnaction Jun 18 '14 at 14:02