Merge pull request #733 from rasika/android-sense

Android sense re-enrollment fixed
revert-dabc3590
sinthuja 8 years ago committed by GitHub
commit fe6a623289

@ -123,7 +123,8 @@ public class AndroidSenseServiceImpl implements AndroidSenseService {
deviceIdentifier.setId(deviceId);
deviceIdentifier.setType(AndroidSenseConstants.DEVICE_TYPE);
try {
if (APIUtil.getDeviceManagementService().isEnrolled(deviceIdentifier)) {
Device enrolledDevice = APIUtil.getDeviceManagementService().getDevice(deviceIdentifier);
if (enrolledDevice != null && !enrolledDevice.getEnrolmentInfo().getStatus().equals(EnrolmentInfo.Status.REMOVED)) {
AndroidConfiguration androidConfiguration = new AndroidConfiguration();
androidConfiguration.setTenantDomain(APIUtil.getAuthenticatedUserTenantDomain());
androidConfiguration.setMqttEndpoint(APIUtil.getMqttEndpoint());

Loading…
Cancel
Save