SDK 返回的 `device_width` 和 `device_height` 不一致的问题

2019/04/25

iOS 返回的 device_width 为真实设备宽度
Android 返回的 device_width 为像素宽度

if (util.device().isiOS) {
  device_width = appSetting.device.device_width * _scale;
  device_height = appSetting.device.device_height * _scale;
}