What does this mean: Failure [INSTALL_FAILED_CONTAINER_ERROR]?

后端 未结 14 1466
轮回少年
轮回少年 2020-12-02 07:28

I try to deploy my app and sometimes get this error:

Failure 
[INSTALL_FAILED_CONTAINER_ERROR] 

I tried to google it but don\'t find what

相关标签:
14条回答
  • 2020-12-02 07:29

    If you're using an emulator, edit it and add more memory. I've had a problem just like this one and all I did was edit my AVD's memory from 200 MB to 1000 MB and the problem seem to go away... Good Luck.

    0 讨论(0)
  • 2020-12-02 07:33

    I had similar problem with emulator. It was gone when I changed emulator's CPU type from ARM to Intel.

    0 讨论(0)
  • 2020-12-02 07:37

    This means there was an earlier installation that was corrupt. If you install on external I would suggest that you format the sd card an try again.

    0 讨论(0)
  • 2020-12-02 07:38

    Change the install location from

    android:installLocation="preferExternal"
    

    into

    android:installLocation="auto"
    

    in your project's AndroidManifest.xml.

    0 讨论(0)
  • 2020-12-02 07:38

    For me, it was the device language. I chnaged the language to Arabic to test my application. Then I got this error. Reverting back the language did the trick.

    0 讨论(0)
  • 2020-12-02 07:42

    For me this was caused by a lack of space on my emulator's SD card. I was working with a pretty large project and I had thought 40 mb was enough, but I changed it to 200 mb and the problem went away.

    0 讨论(0)
提交回复
热议问题