IllegalStateExecption Android studio Webview 应用程序

IllegalStateExecption Android studio Webview App

我目前正尝试 运行 在 AVD 上运行我的应用程序,但一直收到此错误。当我导出它并将其安装在工作的平板电脑上时(不确定 API),但我无法让它在 AVD 和旧的 galaxy note 2 上工作。 这是我从 android 监视器得到的错误。 galaxy note 2 只是说 Unfortunatley, Package installer has failed.

Error: java.lang.IllegalStateException: ☃Requested internal only, but not 
enough space


$ adb shell pm uninstall australia.defence.cubic.lisportal
Unknown failure (at android.os.Binder.execTransact(Binder.java:565))
Error while Installing APK

任何帮助都会很棒。如果您需要更多信息,请告诉我。这是一个简单的 webview 应用程序,启用了 javascript 和 domstorage。

    private native final void destroy();

    private static final void sendDeathNotice(DeathRecipient recipient) {
        if (false) Log.v("JavaBinder", "sendDeathNotice to " + recipient);
        try {
            recipient.binderDied();
        }
        catch (RuntimeException exc) {
            Log.w("BinderNative", "Uncaught exception from death notification",
                    exc);
        }
    }
[this is the location of the Binder.java:565]
    final private WeakReference mSelf;
    private long mObject;
    private long mOrgue;
}

干杯

好的,所以当我在笔记上使用开发者模式时,我发现问题显然是文件大小,而不是应用程序,不是我为它制作的图标。所以我将它们从一些愚蠢的尺寸缩小到更合理的尺寸并且它有效。