Install APP service

This commit is contained in:
manoj 2015-05-18 02:52:11 +05:30
parent bed8361f60
commit 3da5169bbb
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ public class AndroidDeviceManager implements DeviceMgtService {
}
@Override
public boolean updateDeviceInfo(Device device) throws DeviceManagementException {
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
boolean status;
MobileDevice mobileDevice = MobileDeviceManagementUtil.convertToMobileDevice(device);
try {

View File

@ -97,7 +97,7 @@ public class WindowsDeviceManager implements DeviceMgtService {
}
@Override
public boolean updateDeviceInfo(Device device) throws DeviceManagementException {
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
return true;
}