我最近在Google Play上为我的Rhonna Designs应用程序获得了很多一星评价。还有其他人处理过用户安装错误吗?如果是这样我该怎么办才能解决它?我希望这是我正在做的事情,Google基础设施并不像看起来那么糟糕。
以下是我得到的一个明星:
它到底能不能安装在所尝试的地方" ???有人请帮我安装它:(我浪费了我的钱:(
我购买了它并且无法通过名为961的错误安装它我只是不知道这是多么浪费
我支付了这个应用程序并且非常兴奋,但它不会安装,只是说错误918"。这样浪费钱。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.niftybytes.rhonna_android"
android:versionCode="37"
android:versionName="1.4 DEV"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="15"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true" />
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:largeHeap="true">
<receiver android:name = "com.amazon.inapp.purchasing.ResponseReceiver" >
<intent-filter>
<action android:name = "com.amazon.inapp.purchasing.NOTIFY"
android:permission = "com.amazon.inapp.purchasing.Permission.NOTIFY" />
</intent-filter>
</receiver>
<activity
android:name=".StartScreenActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:configChanges="orientation"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".SliderActivity"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:hardwareAccelerated="true"/>
<activity android:name=".FontActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
<activity android:name=".DesignActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
<activity android:name=".CanvasOptionsActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"/>
<meta-data android:name="com.crashlytics.ApiKey" android:value="xxx"/>
</application>
</manifest>
答案 0 :(得分:1)
评论&#34;不安装在尝试的地方&#34;和&#34; error 961&#34;指出内存不足的问题。我想是内部记忆。
您的应用程序非常庞大 - 44 MB。尽可能小,例如你可以compress PNG。如果你不能再压缩它,那就做一个真正的瘦客户机&#34;并下载内容。制作一个&#34;安装程序&#34;在几个MB中,它将包含所有难以跳过的内容(代码,布局等),并在第一次启动时将其余内容下载到SD卡(图像等),从www.some服务。 url.com/content/1142avrh34h34。向用户显示相应的进度条。
看看apk安装process。首先,apk被下载到内部存储空间中的/data/local
。你不能改变它。因此,如果用户缺少内部内存并且他下载并解压缩您的44 MB apk - 将会发生不好的事情。这就是造成问题的原因。
将android:installLocation="auto"
更改为android:installLocation="preferExternal"
。下载后至少一个apk将存储在SD卡上,节省了内部存储空间。通常外部存储器的可用内存远大于内部存储器。来自App Install Location:
如果您声明
"preferExternal"
,则请求申请 安装在外部存储器上,但系统不保证 您的应用程序将安装在外部存储上。如果 外部存储空间已满,系统会将其安装在 内部存储器。用户还可以在之间移动您的应用程序 两个地点。如果您声明
"auto"
,则表明您的应用程序可能已安装在外部存储设备上,但您没有安装位置的偏好设置。 系统将根据多种因素决定应用程序的安装位置。用户还可以在两个位置之间移动应用程序。
答案 1 :(得分:0)
以下是修复错误961的方法: -----&gt;正常清除缓存和数据
1)要执行此操作,请进入手机设置,然后进入应用程序(或应用程序或应用程序管理器),向左滑动至“全部”,向下滚动直至找到Google Play,点按它。
2)在应用信息页面中,点击按钮清空缓存。
3)如果这样无法解决问题,请尝试删除同一页面上的Play商店中的数据(设置&gt;管理应用程序&gt; Google Play&gt;删除数据)。这很可能会起作用,因为当我在我的机器人中遇到问题时,它已经适用于我的情况。
如果问题仍然存在,请尝试以下方法: 1)关闭手机电源。 2)保持音量增大/减小&amp;同时供电,直到看到引导模式选择菜单 3)使用音量降低导航到“恢复”,使用音量调高选择。您应该会在Android旁边看到带三角形和感叹号的屏幕。 4)同时按音量增大/减小进入系统恢复。 5)使用音量摇杆导航到“擦除缓存”并使用电源按钮进行选择 6)完成后,使用音量摇杆导航至“立即重启系统”并使用电源按钮进行选择。
来源:http://appslova.com/android-fix-unknown-install-error-961/