Play商店说下载后"can't install this app try again, and if it still doesn't work, see common ways to fix



Play Store表示"无法安装此应用程序,请重试,如果它仍然不起作用,请参阅常见的修复方法"。我已经在play store上发布了我的不同android应用程序的更新,它像往常一样成功地上线了。但问题是,在我的Google Play控制台上,过去2、3天所有应用程序的新安装都为零。清单和构建渐变:已附加应用程序。我想提到的是,应用程序正在100%下载,然后显示以下对话框。

每个应用程序安装上显示的消息

以下是清单文件:

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

<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-feature android:name="android.hardware.telephony" android:required="false" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.front" android:required="false" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/ime_name"
android:largeHeap="true"
tools:replace="android:icon,android:label">

<activity
android:name="com...Main"
android:screenOrientation="unspecified"
android:label="@string/ime_name"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".PrefActivity"></activity>
<activity
android:name="com.google.android.gms.ads.AdActivity"


android:configChanges="keyboard|keyboardHidden|orientation|
screenLayout|uiMode|screenSize|smallestScreenSize" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="@string/ads_application_id"/>
</application>
</manifest>

构建渐变:应用程序

apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-R'
buildToolsVersion '29.0.2'
defaultConfig {
applicationId '...'
minSdkVersion 16
targetSdkVersion 29
versionCode 4
versionName '4.43'

}
lintOptions {
abortOnError false
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation 'junit:junit:4.13'
implementation project(':lib')
implementation project(':library')
implementation 'com.google.android.gms:play-services-ads:19.0.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
}

我没有答案,但我想帮助您调试这个问题。如果你有一个再现问题的设备,请尝试将其连接到你的ADB,并在收到此消息时阅读错误日志。在我的情况下,它类似于:

提交者:提交错误消息INSTALL_FAILED_UPDATE_INCOMPATIBLE:包签名以前不匹配已安装版本;忽略!任务失败:tid:1000000026,状态代码:6004com.google.android.finsky.installrv2.InstallerException:状态:6004

这让我得出结论,更新本身没有任何问题。我只是想从Google Play没有签名的版本更新到Google Play签名的版本。更不用说这是一个错误的警报,因为我的用户根本没有处理这个问题。

希望你们能找到你们的错误信息并解决你们的问题!

相关内容

最新更新