在Playstore android上更新app时,设备支持删除了警告

我有一个现有的应用程序在plastore上运行,运行在min sdk 15.我做了一些更改并尝试更新我的应用程序,当我上传我的apk一切顺利但在发布审查部分之前,Playstore给我一个警告如下

设备支持已删除警告

停用此APK会导致您的应用在较少类型的设备上进行新安装。

提示如果这是一次意外更改,请在新版本中保留此APK,或确保您的新APK支持所有当前支持的设备。

看到此警告后,我搜索不同的论坛,以了解导致问题的原因

链接1

LINK2

我的大部分搜索都表明,如果我在清单中指定了一些东西,如android:required =“false” 屏幕支持标签

但事情是我没有添加任何新的库或硬件function只添加了一些新的类,我不知道是什么原因造成的。 我将展示我的清单和gradel如何查找playstore中的现有应用程序以及我的新更新

我现有的App gradle和manifest

摇篮

buildscript { repositories { maven { url "http://dl.bintray.com/populov/maven" } mavenCentral() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath 'com.google.gms:google-services:3.0.0' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { maven { url "http://dl.bintray.com/populov/maven" } mavenCentral() jcenter() } } //app gradel apply plugin: 'com.android.application' apply plugin: 'com.neenbedankt.android-apt' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "com.my.app" minSdkVersion 15 targetSdkVersion 25 versionCode 10 versionName "2.0.0.3" } lintOptions { checkReleaseBuilds false } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(":volley") compile group: 'com.google.code.gson', name: 'gson', version: '2.3.1' compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:design:25.3.1' compile 'com.viewpagerindicator:library:2.4.1@aar' compile 'com.android.support:cardview-v7:25.3.1' compile 'com.android.support:recyclerview-v7:25.3.1' compile 'de.hdodenhof:circleimageview:2.0.0' compile 'com.facebook.android:facebook-android-sdk:4.7.0' compile 'com.google.android.gms:play-services-gcm:10.2.1' compile 'com.android.support:support-v4:25.3.1' compile 'uk.co.chrisjenx:calligraphy:2.2.0' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.jakewharton:butterknife:8.4.0' compile files('libs/YouTubeAndroidPlayerApi.jar') apt 'com.jakewharton:butterknife-compiler:8.4.0' } apply plugin: 'com.google.gms.google-services' 

的Manifest.xml

     <!-- --> <!-- -->                                                                

以上是我目前在Playstore上的app deatils

以下是来自playstore的警告签名版本

格拉德尔

 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.google.gms:google-services:3.0.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { maven { url "http://dl.bintray.com/populov/maven" } mavenCentral() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } //app gradel apply plugin: 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "com.my.app" minSdkVersion 15 targetSdkVersion 25 versionCode 11 versionName "2.0.0.4" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile project(":volley") compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:design:25.3.1' compile 'com.viewpagerindicator:library:2.4.1@aar' compile 'com.android.support:cardview-v7:25.3.1' compile 'com.android.support:recyclerview-v7:25.3.1' compile 'de.hdodenhof:circleimageview:2.0.0' compile 'com.facebook.android:facebook-android-sdk:4.7.0' compile 'com.google.android.gms:play-services-gcm:10.2.1' compile 'com.android.support:support-v4:25.3.1' compile 'uk.co.chrisjenx:calligraphy:2.2.0' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.jakewharton:butterknife:8.4.0' compile files('libs/YouTubeAndroidPlayerApi.jar') /*@new change gradle compile*/ compile 'com.jakewharton:butterknife:8.7.0' annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0' compile 'com.google.code.gson:gson:2.3.1' } apply plugin: 'com.google.gms.google-services' 

的Manifest.xml

     <!-- --> <!-- -->                                                                  

我只在清单上增加了2个活动,并改变了等级1中的新丁字裤。 任何人都可以帮助我在Playstore中引起警告的原因,因为我没有在我的应用程序中做出任何重大改变。

谢谢