发送短信和使用互联网但不打电话的应用程序是否需要 android.hardware.telephony?
好的,我有一个简单的问题。我在市场上有一个应用程序,可以拨打电话、发送短信,并且可以浏览互联网。该应用程序支持 469 种设备(市场上)。虽然我可以在平板电脑上安装我的应用程序,但我想为平板电脑用户提供可能性,以便他们可以在市场上浏览它。所以我使用市场上的多个apk解决方案。现在我的两个应用程序都使用 android.hardware.telephony 作为功能,因此平板电脑(市场上)无法支持它。我想知道在第二个应用程序中,如果我删除此功能,我仍然可以发送短信,我不需要打电话吗?
Ok, i have a simple question. I have app on market that calls numbers and sends sms, and can browse internet. That app is supported to 469 devices (on market). Although I can install my app on tablets, i want to give posibility to tablet users, so they can browse it on market. So i am using multiple apk solution on the market. Now both of my app are using android.hardware.telephony as feature, so it cant be supported by tablets (on market). I wonder in second app, if I remove this feature, will i still be able to send sms, i don't need phone calls ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用设备上的某些功能,则不需要该功能。在清单中,您可以指定 android:required=["true" | "false"] 在你的uses-feature标签中。只要确保在用户没有该功能时处理该场景即可。
If you use a certain feature on the device it does not need to be required. In your manifest you can specify android:required=["true" | "false"] in your uses-feature tag. Just make sure you handle the scenario when the user doesn't have that feature.