振动权限是否会过滤 Android 市场中 Google TV 中的应用程序?
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
需要此功能的应用程序会出现在 Google TV 的 Android 市场中吗?
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
Will an app requiring this show up in the Android Market for Google TV?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该权限不会阻止应用程序出现在 Google TV 设备的市场中。
唯一有可能阻止应用程序出现在市场中的权限是 那些暗示
涵盖的硬件功能的内容。振动电机没有
。因此,VIBRATE
权限并不暗示任何特定的
元素。That permission will not block an app from showing up in the Market for Google TV devices.
The only permissions that are at risk of blocking an app from showing up in the Market are those that imply a hardware feature that is covered by
<uses-feature>
. There is no<uses-feature>
for the vibration motor. Hence, theVIBRATE
permission does not imply any particular<uses-feature>
element.