我的 android 应用程序无法从最新设备上的 playstore 下载

Posted

技术标签:

【中文标题】我的 android 应用程序无法从最新设备上的 playstore 下载【英文标题】:My android application unable to download from playstore on latest device 【发布时间】:2019-12-01 02:46:58 【问题描述】:

我的 android 应用程序无法从 playstore 下载,但即使在旧版本的移动设备上也可以轻松下载我的应用程序,我使用的是 SDK 版本 28,但在版本 8 的移动设备上无法下载我的 android 应用程序

【问题讨论】:

下载时出现任何错误?? 显示无法安装,重试还是不行 当我通过 Playstore 在 API 级别 26 上安装它时,它很容易下载,但在 API 级别 28 上它无法安装 检查 build.gradle 文件中的 targetSdkVersion compileSdkVersion 28 defaultConfig applicationId "com.travelntour" minSdkVersion 21 targetSdkVersion 28 versionCode 6 versionName "2.3" multiDexEnabled true 【参考方案1】:

我进行了很多搜索并查看了许多评论,然后我在阅读了有关此的 google 文档后发现,然后我得到了这个稳定的解决方案 如果你有

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:appComponentFactory=""
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:replace="android:appComponentFactory">
        <activity android:name="com.travelntime.Splash">

然后改成

<application
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:allowClearUserData="true"
        tools:ignore="GoogleAppIndexingWarning"
        android:fullBackupContent="false">
        <activity android:name="com.travelntime.Splash">

也可以使用

 <action android:name="android.intent.action.VIEW" />

如果你正在启动哪个活动

同:

<activity android:name="com.travelandtime.Splash" android:windowSoftInputMode="adjustPan" android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

问题将解决,如果您关闭 MIUI 优化它不是一个稳定的解决方案,因此您可以在您的手机上运行,​​但是当您在 Playstore 上上传 android 应用程序时,您无法安装到用户的手机中

【讨论】:

以上是关于我的 android 应用程序无法从最新设备上的 playstore 下载的主要内容,如果未能解决你的问题,请参考以下文章

从 Android 设备上的 Java 服务器获取响应

无法在三星设备上的 Android Studio 3.4.1 中运行项目

无法从 Windows 上的资产 index.android.bundle 加载脚本

android 设备上的 sencha touch 2.0 应用程序无法正常工作

在 Android Studio 中查看设备上的 SQLite 数据库

如何从设备上的命令行卸载 android 应用程序