3

i would like to install some android apps in emulator like google maps and other.My problem is i want the installation is permanent.I follow the link for installing apk file in emulator. With out permanent installation it is very hard for testing a application so can any one tell me solution or any other alternate solution?
Thanks in advance

Community
  • 1
  • 1
prasad
  • 1,277
  • 2
  • 16
  • 39

1 Answers1

1

What do you mean exactly by "permanent". An application installed with "adb install " will persist in the AVD you have created, unless you use "wipe data" on every run, which is really not recommended.

Only applications that are pre-installed on the system image cannot be removed (but they still can be disabled in later Android versions, which does the same except the files are not removed, and you can later re-enable it).

Digit
  • 2,073
  • 1
  • 13
  • 10
  • Thank for giving answer.By using your answer i solved my problem.And sorry for little ambiguity in my question i.e "permanent".once again Thanks. – prasad Feb 18 '14 at 09:22
  • Note that a "Cold Boot" of the emulator also removes all installed apps. – gmoz22 Sep 06 '19 at 17:59
  • i'm having the same issue even tho im not using any "wipe data" or resetting , my command to start the emulator is very simple : emulator.exe -avd , that is no extra lines and yet each start i find the previous apps get wiped !!!! – The Doctor Feb 01 '23 at 04:51