如何在 Android 模拟器中更改移动国家代码 (MCC)?

How do I change the Mobile Country Code (MCC) in the Android Emulator?(如何在 Android 模拟器中更改移动国家代码 (MCC)?)
本文介绍了如何在 Android 模拟器中更改移动国家代码 (MCC)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我的 Android 应用程序需要对不同的移动国家代码做出不同的反应.

My Android application needs to react differently to different Mobile Country Codes.

它似乎被硬编码为 mcc310 (US).我可以从 TelephonyManager.getSimCountryIso() 或使用像 res/values-mcc123/ 这样的资源文件夹读取此值,但如何在模拟器中设置此值?

It seems like it is hardcoded to mcc310 (US). I can read this value from TelephonyManager.getSimCountryIso() or by using a resource folder like res/values-mcc123/ but how do I set this value in the emulator?

推荐答案

要更改 TelephonyManager.getSimCountryIso() 返回的内容,只需执行

To change what TelephonyManager.getSimCountryIso() returns, simply execute

adb shell setprop gsm.sim.operator.iso-country no

现在它返回 no(挪威).

and it now returns no (Norway).

如果你想改变 TelephonyManager.getSimOperator() 返回的内容 (MCC+MNC) 然后执行

If you want to change what TelephonyManager.getSimOperator() returns (MCC+MNC) then execute

adb shell setprop gsm.sim.operator.numeric 24201

您已将 MCC 更改为 242(挪威),将 MNC 更改为 01(Telenor).

and you have changed MCC to 242 (Norway) and MNC to 01 (Telenor).

查看可以更改的其他属性然后执行

To see which other properties you can change then execute

adb shell getprop

这经验证可在 AVD 和 Genymotion 上运行.但是,这不会永久更改这些属性.

This is verified to work on both AVD and Genymotion. However, this does not change these properties persistently.

这篇关于如何在 Android 模拟器中更改移动国家代码 (MCC)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How To Create a Rotating Wheel Control?(如何创建转轮控件?)
How to avoid restarting activity when orientation changes on Android(如何在 Android 上的方向更改时避免重新启动活动)
Screen orientation lock(屏幕方向锁定)
Strange behavior with android orientation sensor(android方向传感器的奇怪行为)
Android: Rotate image in imageview by an angle(Android:将imageview中的图像旋转一个角度)
Activity restart on rotation Android(旋转Android上的活动重启)