gpt4 book ai didi

android - Google Play 用户安装问题

转载 作者:行者123 更新时间:2023-11-29 01:43:59 26 4
gpt4 key购买 nike

我的 Rhonna Designs 应用最近在 Google Play 上获得了很多一星评价。有没有其他人处理过用户安装错误?如果是这样,我该怎么做才能解决它?我希望这是我正在做的事情,并且 Google 的基础架构没有看起来那么糟糕。

以下是我获得的几颗星:

How on earth can it "not install in the place attempted" ??? Someone please help me install it :( I wasted my money :(

I purchased it and couldn't install it by the error called 961 I just don't get it what a waste of money

I paid for this app and was very excited, but it won't install and just says "error 918". Such a waste of money.

<?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>

最佳答案

  1. 评论“未在尝试的位置安装”和“error 961”指出内存不足的问题。我猜是内部存储器。

  2. 您的应用程序非常大 - 44 MB。让它尽可能小,例如你可以compress PNG。如果你不能压缩更多,做一个真正的“瘦客户端”并下载内容。制作一个几 MB 的“安装程序”,其中将包含所有难以跳过的内容(代码、布局等),并在第一次从 www.some 的服务启动时将其余内容下载到 SD 卡(图像等) .url.com/content/1142avrh34h34。向用户显示适当的进度条。

  3. 看一下apk安装process .首先,apk 下载到/data/local,在内部存储。你无法改变这一点。因此,如果用户内存不足并且他下载并解压缩了您的 44 MB apk - 就会发生不好的事情。这就是导致您出现问题的原因。

  4. android:installLocation="auto" 更改为 android:installLocation="preferExternal"。下载后至少会在SD卡上存储一个apk,节省一些内存空间。通常外存的可用内存比内存大得多。来自 App Install Location :

    If you declare "preferExternal", you request that your application be installed on the external storage, but the system does not guarantee that your application will be installed on the external storage. If the external storage is full, the system will install it on the internal storage. The user can also move your application between the two locations.

    If you declare "auto", you indicate that your application may be installed on the external storage, but you don't have a preference of install location. The system will decide where to install your application based on several factors. The user can also move your application between the two locations.

关于android - Google Play 用户安装问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com