Android enterpise app install payload creation

This commit is contained in:
Saad Sahibjan 2019-06-06 22:12:06 +05:30 committed by lasanthaDLPDS
parent a1ba80f048
commit c0e301845e

View File

@ -50,7 +50,9 @@ public class MDMAndroidOperationUtil {
case ENTERPRISE:
EnterpriseApplication enterpriseApplication = new EnterpriseApplication();
enterpriseApplication.setType(application.getType().toString());
enterpriseApplication.setUrl(application.getLocation());
//TODO: replace needs to be removed after doing the proper config update in application-mgt.xml
enterpriseApplication.setUrl(application.getLocation().replace("https://localhost:9443",
"http://192.168.8.6:9763"));
operation.setPayLoad(enterpriseApplication.toJSON());
break;
case PUBLIC: