gpt4 book ai didi

Android:无法从 Play 商店下载

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:38:50 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序。我能够在我的设备上成功测试它。所以我在 Google Play 商店上推送了已发布的版本。现在我从我的设备上卸载了调试版本并尝试从 Play 商店下载它。但是当我点击安装按钮时,出现了这个错误。

you cannot install this app because another user has already installed an incompatible version on this device...

enter image description here

我只使用 Google Play 服务。不使用任何存储空间或任何可能因不同用户和 Android L 而异的东西。我应该在我的应用程序源中进行哪些更改才能解决此问题?

编辑

安卓 list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unary.untangleit"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".GameActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<meta-data
android:name="com.google.android.gms.games.APP_ID"
android:value="@string/app_id" />
<meta-data
android:name="com.google.android.gms.appstate.APP_ID"
android:value="@string/app_id" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>

最佳答案

我通过卸载应用程序的调试版本然后清除 Play 商店应用程序的数据解决了这个问题。

如果还是不行,可以关注这些steps given in this site .

Go to any root file manager, and navigate to directory: root >> data/data folder.

Find the relevant folder of that app which you were installing from play store.

Then delete that folder. [Note: Here you will loose all data related to that app].

Now go to play store, and try to install that app again.

Check you have fixed your error.

希望对您有所帮助!

更新:谢谢 Abhishek,您也可以尝试使用 adb 卸载应用程序:

adb shell pm uninstall com.packagename

关于Android:无法从 Play 商店下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28522991/

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