admin
2019-08-05 44255910ce75cecb3d34c00cf963a3fe6ebd3fc6
fanli/src/main/java/com/yeshi/fanli/util/VersionUtil.java
@@ -35,7 +35,13 @@
         return false;
   }
   public static boolean greaterThan_1_6_0(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 46))
            || (("ios".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) >= 57)))
         return true;
      else
         return false;
   }
   public static boolean smallerThan_1_5_1(String platform, String versionCode) {
      if ((("android".equalsIgnoreCase(platform) && Integer.parseInt(versionCode) < 36))