2

我目前正在尝试在 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;
}

干杯

4

1 回答 1

3

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

于 2017-05-04T22:04:36.953 回答