Installation failed with message Error: android.os.ParcelableException: java.io.IOException: Requested internal only, but not enough space

后端 未结 7 2122
余生分开走
余生分开走 2020-12-11 03:11

I was getting the message

> Installation failed with message Failed to establish session.

so following some responses to the problem I

7条回答
  •  天命终不由人
    2020-12-11 03:31

    that file-system has no space:

    java.io.IOException: Requested internal only, but not enough space.
    

    the issue is:

    android:installLocation="internalOnly"
    

    either remove it, or replace it with:

    android:installLocation="preferExternal"
    

    or make some space on the device / emulator by uninstalled or deleting something -

    or simply assign some more megabytes to the virtual SD card.

提交回复
热议问题