Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/215.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 只能在手机上的play store中查看我的应用程序,而不能在平板电脑上查看_Android_Google Play_Publishing - Fatal编程技术网

Android 只能在手机上的play store中查看我的应用程序,而不能在平板电脑上查看

Android 只能在手机上的play store中查看我的应用程序,而不能在平板电脑上查看,android,google-play,publishing,Android,Google Play,Publishing,我可以在我的Jellybean 4.1.2手机上的Google Play store和KitKat上的Google Nexus 7上看到我发布的应用程序,但在Jellybean 4.1.2上使用三星tab 3时,我无法在商店中看到该应用程序 它是说,应用程序不兼容 它在设备上显示错误,不仅因为minSDKversion,而且google play也担心您对清单文件的给定权限 例如,如果您输入以下内容: <uses-permission android:name="android.permi

我可以在我的Jellybean 4.1.2手机上的Google Play store和KitKat上的Google Nexus 7上看到我发布的应用程序,但在Jellybean 4.1.2上使用三星tab 3时,我无法在商店中看到该应用程序

它是说,应用程序不兼容

它在设备上显示错误,不仅因为minSDKversion,而且google play也担心您对清单文件的给定权限

例如,如果您输入以下内容:

<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

您必须遵守其要求。

请检查您的android应用程序的google play store帐户设置。您在AndroidManifest.xml中是否具有“定义摄像头”或“电话”权限?为什么对此问题投反对票?对于downvoter:您应该在downvote后面添加一条评论,以便用户可以更新他的问题。这是安卓系统中一个非常常见的问题。我定义了摄像头,但三星标签上有摄像头,我没有定义电话。我应该检查我的Google Play商店帐户的哪些设置。谢谢。这并不是说应用程序不兼容,而是说它根本不会出现在应用程序商店中,而是说它在Eclipse中运行时很好。我明天会检查这些设置。谢谢你的帮助。
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SEND_SMS"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.telephony" android:required="false" />
<uses-feature android:name="android.hardware.screen.portrait" android:required="false"/>