2

Installation failed with message INSTALL_FAILED_CONTAINER_ERROR. It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing.

In order to overcome from this problem What I should do? Please help me.

ArtKorchagin
  • 4,801
  • 13
  • 42
  • 58
Umesh
  • 21
  • 5

2 Answers2

2

In your manifest, change this

android:installLocation="preferExternal"

to this

android:installLocation="auto"
Fundhor
  • 3,369
  • 1
  • 25
  • 47
0

Source : What does this mean: Failure [INSTALL_FAILED_CONTAINER_ERROR]?

"Change the install location from

android:installLocation="preferExternal"

into

android:installLocation="auto"

in your project's AndroidManifest.xml.

this worked for me."

Community
  • 1
  • 1
Sebastien FERRAND
  • 2,110
  • 2
  • 30
  • 62