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