在phonegap Android应用程序中设置设备版本的设备

时间:2013-09-17 10:31:06

标签: android cordova

如何根据设备操作系统版本在phonegap android应用程序中设置某些条件。就像我试过这样: -

deviceVersion = device.version;

if (deviceVersion > 2.3){....

        } else {
            ......  
    } 

但是这不适用于真实设备,因为设备版本就像4.0.2等。

任何解决方案?

1 个答案:

答案 0 :(得分:1)

试试这个..

    var ua = navigator.userAgent;
    if( ua.indexOf("Android") >= 0 )
    {
      var androidversion = parseFloat(ua.slice(ua.indexOf("Android")+8)); 
      if (androidversion < 2.3)
      {
          // do whatever
      }
    }

Detecting the OS version of iOS and Android in the browser