admin
2019-08-21 75b9f225c0fb0bbd429d542d4e20337f3c0e13f1
fanli/src/main/java/com/yeshi/fanli/util/VersionUtil.java
@@ -42,6 +42,15 @@
      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) >= 59)))
         return true;
      else
         return false;
   }
   public static boolean smallerThan_1_5_1(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) < 36))