yujian
2019-09-17 d3a9feeeee6f70462d12e48db5fd1cab9b183bc8
fanli/src/main/java/com/yeshi/fanli/util/VersionUtil.java
@@ -42,6 +42,25 @@
      else
         return false;
   }
   public static boolean greaterThan_1_6_5(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 47))
            || (("ios".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 65)))
         return true;
      else
         return false;
   }
   public static boolean greaterThan_2_0(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 48))
            || (("ios".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 66)))
         return true;
      else
         return false;
   }
   public static boolean smallerThan_1_5_1(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) < 36))