android – Play Store说我的手机不支持我自己的应用程序?

前端之家收集整理的这篇文章主要介绍了android – Play Store说我的手机不支持我自己的应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的清单中有这些 Android权限.
android.permission.INTERNET
 android.permission.ACCESS_NETWORK_STATE
 android.permission.ACCESS_FINE_LOCATION
 android.permission.CAMERA,android.permission.WRITE_EXTERNAL_STORAGE
 android.permission.SEND_SMS,android.permission.SYSTEM_ALERT_WINDOW
 android.permission.READ_EXTERNAL_STORAGE

我有索尼Xperia Tipo手机(索尼ST21i).应用页面显示我的应用不支持我的手机.我的手机具有以上所有功能,我的手机在手机上运行良好.

Google Developer网站将以下内容称为必需功能,但我没有在清单中明确定义任何uses-feature标记.

This application is only available to devices with these features,as defined in your application manifest.

Screen layouts: SMALL NORMAL LARGE XLARGE
required device features
android.hardware.camera
android.hardware.camera.autofocus
android.hardware.location
android.hardware.location.gps
android.hardware.telephony
android.hardware.touchscreen

解决方法

android.permission.CAMERA的使用意味着android.hardware.camera和
android.hardware.camera.autofocus如Android文档中所述(参见本页的最后一个表: http://developer.android.com/guide/topics/manifest/uses-feature-element.html).

由于您的设备没有自动对焦功能,因此无法下载您的应用.
你应该添加

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
原文链接:https://www.f2er.com/android/316146.html

猜你在找的Android相关文章