与Blackberry一样,我们是否有任何API方法(类似于DeviceInfo.isSimulator()
)来检查设备是模拟器还是真实设备?
答案 0 :(得分:0)
没有100%正确的方法来执行此操作,因为内部常量似乎每隔一段时间就会发生变化。这对我有用:
if (android.os.Build.MODEL.contains("google_sdk") ||
android.os.Build.MODEL.contains("Emulator")) {
// Then you are running the app on the emulator.
}