gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:02 25 4
gpt4 key购买 nike

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

最佳答案

我搜索了很多并查看了很多评论,然后我在阅读了有关此的谷歌文档后找到了这个稳定的解决方案如果你有

<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

同于:

<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 - 我的 android 应用程序无法从最新设备上的 playstore 下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57157649/

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