我想阻止通过没有SIM卡的设备使用消息传递应用程序(ios和android)。这个previous question和this one都表明以下内容可能适用于android,但我还需要一个等效的ios:
<uses-feature
android:name="android.hardware.telephony"
android:required="true"/>
可以将此类代码复制到平板电脑/台式机然后规避吗?我知道wattsapp的移动专用方法可以绕过在PC上使用,我想避免这种可能性。
答案 0 :(得分:0)
在Xcode中单击项目并打开General
页面。在Deployment Info - Devices
中选择iPhone
。
要仅将设备限制为具有电话功能的设备,您应将其添加到Info.plist
UIRequiredDeviceCapabilities
(又名Required Device Capabilities
)字典条目,并将密钥telephony
设置为YES