本文介绍了在谷歌播放三星Galaxy播放器4.0权限过滤器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序不会对三星Galaxy播放器4.0在谷歌播放(前Android Market的)出现。

如果我通过玩网络界面登录,我得到错误信息:这个程序是三星YP-G1三星YP-G1不兼容此产品是不是与您的设备兼容。同样的设备被用于开发,并有在其上运行的应用程序没有问题。应用程序使用最少有些权限集,到目前为止,我没有与谷歌的过滤播放任何问题。我能够在三星Galaxy播放器5.0安装程序不受谷歌播放任何问题,所以希望它是不相关的三星。

是否有人有任何想法要寻找什么?玩家可以4.0是一个优秀的设备我的应用程序,因为它只能没有电话合同上的Wi-Fi运行。

下面是与权限AndroidManifest的一部分:
    

 <使用许可权的android:NAME =android.permission.CAMERA/>
<使用许可权的android:NAME =android.permission.INTERNET对/>
<使用许可权的android:NAME =android.permission.WRITE_EXTERNAL_STORAG​​E/>
<使用许可权的android:NAME =android.permission.ACCESS_NETWORK_STATE/>
<使用许可权的android:NAME =android.permission.VIBRATE/><使用特征的android:NAME =android.hardware.camera机器人:所需=FALSE/>
<使用特征的android:NAME =android.hardware.vibrate机器人:所需=FALSE/><采用-SDK安卓的minSdkVersion =7机器人:targetSdkVersion =7/>

$ AAPT转储输出徽章

 使用许可权:android.permission.CAMERA
使用许可权:android.permission.INTERNET对'
使用许可权:android.permission.WRITE_EXTERNAL_STORAG​​E
使用许可权:android.permission.ACCESS_NETWORK_STATE
使用许可权:android.permission.VIBRATE
使用特征 - 不要求:android.hardware.camera
使用特征 - 不要求:android.hardware.vibrate
sdkVersion:'7'
targetSdkVersion:'7'
...
使用特征:android.hardware.touchscreen
使用特征:android.hardware.screen.landscape
主要
其他活动
支持的屏幕:小正常大
支持-任何密度:'真'
语言环境:--_--
密度:'120''160''240''320'


解决方案

摄像机清单中删除网页的权限。然后上传到Google Play,然后检查它会工作,并在谷歌播放显示。

My app does not show up on Samsung Galaxy Player 4.0 in Google Play (ex-Android Market).

If I sign in through the Play web interface, I get the error message: "This app is incompatible with your Samsung YP-G1. Samsung YP-G1 This item is not compatible with your device.". The same device was used for development, and there were no problem running app on it. App uses somewhat minimal set of permissions, and so far I did not have any problem with filtering on the Google Play. I was able to install app on Samsung Galaxy Player 5.0 without any problems from Google Play, so hopefully it is not related to Samsung.

Does anybody have any idea what to look for? Player 4.0 can be an excellent device for my app since it can run on Wi-Fi only without phone contract.

Here is a part of AndroidManifest related to permissions:

<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />

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

<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />

Output of $ aapt dump badging

uses-permission:'android.permission.CAMERA'
uses-permission:'android.permission.INTERNET'
uses-permission:'android.permission.WRITE_EXTERNAL_STORAGE'
uses-permission:'android.permission.ACCESS_NETWORK_STATE'
uses-permission:'android.permission.VIBRATE'
uses-feature-not-required:'android.hardware.camera'
uses-feature-not-required:'android.hardware.vibrate'
sdkVersion:'7'
targetSdkVersion:'7'
...
uses-feature:'android.hardware.touchscreen'
uses-feature:'android.hardware.screen.landscape'
main
other-activities
supports-screens: 'small' 'normal' 'large'
supports-any-density: 'true'
locales: '--_--'
densities: '120' '160' '240' '320'
解决方案

Remove permission for camera in manifest page. Then upload to google play, then check it will work and will be shown in google play.

这篇关于在谷歌播放三星Galaxy播放器4.0权限过滤器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-18 23:53