Merge branch 'master_app_udpate' into develop

master
wangning 7 years ago
commit d787ec14ec

@ -1032,16 +1032,13 @@ public class RetailAppServiceImp implements RetailAppService {
Boolean isUpdate = PlatformEnvironment.getEnv().isAppUpdate(clientType); Boolean isUpdate = PlatformEnvironment.getEnv().isAppUpdate(clientType);
String updateContent = PlatformEnvironment.getEnv().getAppUpdateContent(clientType); String updateContent = PlatformEnvironment.getEnv().getAppUpdateContent(clientType);
int update_type = 0;// 0:不更新 1更新 2强制更新 int update_type = 0;// 0:不更新 1更新 2强制更新
String[] versionArr = version.split("\\."); String versionInt = version.replace(".","");
String[] newVersionArr = newAppVersion.split("\\."); String newAppVersionInt = newAppVersion.replace(".","");
for (int i = 0; i < newVersionArr.length; i++) { if (Integer.valueOf(versionInt)<Integer.valueOf(newAppVersionInt)){
if (Integer.valueOf(newVersionArr[i]) > Integer.valueOf(versionArr[i])) {
update_type = 1; update_type = 1;
if(isUpdate){ if(isUpdate){
update_type=2; update_type=2;
} }
i = newVersionArr.length + 1;
}
} }
JSONObject res = new JSONObject(); JSONObject res = new JSONObject();
res.put("update_type", update_type); res.put("update_type", update_type);

Loading…
Cancel
Save