Ahs*_*bal 5 android build version google-play google-play-console

Play 商店提示“无法安装此应用重试,如果仍然无法正常工作,请查看常见的修复方法”。我已经在 Play Store 上发布了我的不同 android 应用程序的更新,并且它像往常一样成功地上线了。但问题是,在我的 Google Play 控制台上,过去 2.3 天以来,所有应用程序的新安装都是零。清单和构建 Gradle:附加了应用程序。我想提一下,应用程序正在被 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>
Run Code Online (Sandbox Code Playgroud)

构建 Gradle:应用程序

    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'
}
Run Code Online (Sandbox Code Playgroud)