简体   繁体   English

Google Play商店过滤器

[英]Google play store filter

I was wondering if there is any filter I can set for my app so that it shows only to devices on the play store which has a SIM card or is atleast a CDMA device. 我想知道是否可以为我的应用设置任何过滤器,以使其仅显示在Play商店中具有SIM卡或至少具有CDMA设备的设备上。 I could not find anything after searching the net so I could use some help 搜索网络后我什么也找不到,所以我可以使用一些帮助

Add this to your manifest: 将此添加到您的清单:

<uses-feature android:name="android.hardware.telephony" android:required="true"/>
<uses-feature android:name="android.hardware.telephony.gsm" android:required="true"/>

I don't know that you'll need both if you include .gsm , but it can't hurt. 我不知道如果同时包含.gsm ,则两者都不需要,但这不会造成伤害。 See the documentation for more information. 请参阅文档以获取更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM