Adding supported feature: DEVICE_UNLOCK entry to db

This commit is contained in:
dilanua 2016-08-22 16:30:32 +05:30
parent 3a25572fda
commit fb30118aa2

View File

@ -463,6 +463,12 @@ public class AndroidFeatureManager implements FeatureManager {
feature.setDescription("Fetch device logcat");
supportedFeatures.add(feature);
feature = new Feature();
feature.setCode("DEVICE_UNLOCK");
feature.setName("Device Unlock");
feature.setDescription("Unlock the device");
supportedFeatures.add(feature);
return supportedFeatures;
}
}