app Version

master
wangning 7 years ago
parent a510dff3c5
commit 71ea6f9325

@ -1112,17 +1112,21 @@ public class RetailAppServiceImp implements RetailAppService {
Boolean isUpdate = PlatformEnvironment.getEnv().isAppUpdate(clientType);
String updateContent = PlatformEnvironment.getEnv().getAppUpdateContent(clientType);
int update_type = 0;// 0:不更新 1更新 2强制更新
String versionInt = version.replace(".", "");
String newAppVersionInt = newAppVersion.replace(".", "");
if (Integer.valueOf(versionInt) < Integer.valueOf(newAppVersionInt)) {
update_type = 1;
if (isUpdate) {
update_type = 2;
String [] oldVersion = version.split("\\.");
String [] newVersion = newAppVersion.split("\\.");
JSONObject res = new JSONObject();
res.put("update_content", updateContent);
for (int i = 0; i < newVersion.length; i++) {
if(Integer.valueOf(newVersion[i])>Integer.valueOf(oldVersion[i])){
update_type = 1;
if (isUpdate) {
update_type = 2;
}
res.put("update_type", update_type);
return res;
}
}
JSONObject res = new JSONObject();
res.put("update_type", update_type);
res.put("update_content", updateContent);
return res;
}
@ -1428,4 +1432,5 @@ public class RetailAppServiceImp implements RetailAppService {
}
return sourceStr;
}
}

Loading…
Cancel
Save