简体   繁体   English

上载的应用显示在错误的api级设备上

[英]Uploaded app shows in wrong api level device

We have uploaded an app into market with following api level in AndroidManifest file 我们已在AndroidManifest文件中将具有以下api级别的应用上传到市场

uses-sdk android:minSdkVersion="15"
        android:targetSdkVersion="16"

It is for support of api level 4.1.1 and 4.1.2. 它支持api级别4.1.1和4.1.2。 But this app can be installed on 4.2 which has api level 17. Any ideas. 但是,此应用可以安装在具有api级别17的4.2上。任何想法。

targetSdkVersion does not specify the max SDK API level. targetSdkVersion未指定最大SDK API级别。 Use maxSdkVersion as well. 也使用maxSdkVersion

This link may also be helpful. 此链接也可能有帮助。

android:maxSdkVersion="16" :- This is the maximum SDK version number that an application works on. android:maxSdkVersion =“ 16”:-这是应用程序可以使用的最大SDK版本号。 [integer] [整数]

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我已在 Play 商店中显示“您的设备与此版本不兼容”的所有设备上上传了该应用程序 - I have uploaded the app on all devices it shows "your device isn't compatible with this version" in play store 如何在真实设备中运行具有特定API级别的Android应用? - How to run an Android app with a specific API level in a real device? 无法在 android oreo(API 级别 26)上以设备管理员身份激活应用 - Unable to activate app as device admin on android oreo(API level 26) 应用显示错误的Drawables - App shows wrong Drawables 真实设备中的文件路径显示错误的路径 - File path in real device shows wrong path 将应用上传到Google Play,但表示与设备不兼容 - Uploaded app to Google Play but saying incompatible with device 在Google Play中上传的Android应用未显示任何设备 - Uploaded android app in google play showing no device 我的设备支持 ARCore Depth API,但 Hello AR 示例应用显示错误 - My device supports the ARCore Depth API, yet the Hello AR sample app shows an error 安装失败,因为应用的 minSdkVersion 比设备的 API 级别新 - Installation failed since app's minSdkVersion is newer than device's API level 最低sdk版本设置为api级别15 android 4.0.3的Android应用程序无法在软糖豆设备上运行 - Android app not working on jelly bean device while minimum sdk version set to api level 15 android 4.0.3
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM