android,如何将键盘权限添加到清单中?

发布于 2024-11-10 02:55:44 字数 434 浏览 3 评论 0原文

我已经完成了我的第一个应用程序并发布在 android 市场 (https:/ /market.android.com/details?id=Mobilesoft.asia.numbers&feature=search_result

我的问题是,在上传页面中写入: 此 apk 请求 1 个将用于 Android 电子市场过滤的功能: android.hardware.touchscreen

而该游戏是为所有触摸屏和非触摸设备设计的。如果设备不支持触摸,玩家可以使用键盘、操纵杆或导航键进行游戏。我怎么能说这个应用程序能够支持非触摸设备呢?

I have finished my first application and published in android marketplace (https://market.android.com/details?id=Mobilesoft.asia.numbers&feature=search_result)

My problem is, in upload page is written:
This apk requests 1 features that will be used for Android Market filtering:
android.hardware.touchscreen

while this game is designed for all touchscreen and non-touch devices. If device doesn't support touch, the player can play with keyboard, joystick or navigation keys. How can I say this application is able to support non-touch devices?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许久 2024-11-17 02:55:44

我的 Android 应用程序也有同样的问题。我认为 Google 添加了 android.hardware.touchscreen 过滤器,因为您在代码中使用了某些需要触摸屏的功能。

应用 android.hardware.touchscreen 过滤器后,当某人拥有不支持触摸屏的设备时,您的应用将不再显示。在删除代码中需要过滤器的任何部分之前,您将无法说您的应用程序支持非触摸屏设备。

I have the same issue with my Android app. I think Google adds the android.hardware.touchscreen filter because you're using some feature in your code that requires a touchscreen.

What happens when the android.hardware.touchscreen filter is applied is that your app no longer shows up when someone has a device that does not support a touchscreen. You won't be able to say that your application supports non touch screen devices until you remove whatever part of your code that has required the filter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文