我发布了一个旧版本
使用此配置:
compileSdkVersion 23
buildToolsVersion '23.0.3'
defaultConfig {
applicationId "my.application.id"
minSdkVersion 15
targetSdkVersion 23
versionCode 3412
versionName "3.3.0"
multiDexEnabled true
}
以及使用23.4.0的所有依赖项
在我更新到
之后android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "my.application.id"
minSdkVersion 15
targetSdkVersion 25
versionCode 3415
versionName "3.4.2"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
}
特殊设备不再通过Play商店与应用程序兼容
但奇怪的是,我可以从内存中运行.apk,并且安装完美!
我必须允许这个设备从PlayStore下载,因为我的大多数用户都使用这个特殊的平板电脑,我不知道有什么问题因为没有错误,没有输出, APP在这个设备上工作,但对于玩商店,它不兼容
我正在使用新的Rollout系统,并且测试通过beta / alpha也不适用于此应用
答案 0 :(得分:-1)
问题是在清单中使用required
标志用于摄像头的库。
对于有类似事情的人,请查看依赖项