mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fix for enrollment app install without Google
This commit is contained in:
parent
35b42b45a9
commit
de548efd18
@ -705,7 +705,7 @@ public class AndroidDeviceUtils {
|
|||||||
JsonElement googlePolicyPayload = appElement.getAsJsonObject().
|
JsonElement googlePolicyPayload = appElement.getAsJsonObject().
|
||||||
get(AndroidConstants.ApplicationInstall.GOOGLE_POLICY_PAYLOAD);
|
get(AndroidConstants.ApplicationInstall.GOOGLE_POLICY_PAYLOAD);
|
||||||
|
|
||||||
if (googlePolicyPayload == null) {
|
if (googlePolicyPayload == null || googlePolicyPayload.toString().equals("\"\"")) {
|
||||||
uuid = appElement.getAsJsonObject().
|
uuid = appElement.getAsJsonObject().
|
||||||
get(AndroidConstants.ApplicationInstall.ENROLLMENT_APP_INSTALL_UUID).getAsString();
|
get(AndroidConstants.ApplicationInstall.ENROLLMENT_APP_INSTALL_UUID).getAsString();
|
||||||
try (CloseableHttpClient httpClient = HttpClients.createDefault()) {
|
try (CloseableHttpClient httpClient = HttpClients.createDefault()) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user