admin
2019-06-10 6b8ab82d1d7fb9d44d85eeb1dfd2e36d3c28c9cf
fanli/src/main/java/com/yeshi/fanli/util/VersionUtil.java
@@ -9,8 +9,15 @@
      else
         return false;
   }
   public static boolean greaterThan_1_5_50(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 42))
            || (("ios".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 51)))
         return true;
      else
         return false;
   }
   public static boolean smallerThan_1_5_1(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) < 36))
            || (("ios".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) < 44)))