Adding VPN feature for android

This commit is contained in:
Kasun Delgolla 2016-04-19 16:25:19 +05:30
parent e56e3d0b85
commit a6a0fc2a57

View File

@ -272,12 +272,18 @@ public class AndroidFeatureManager implements FeatureManager {
feature.setDescription("Reboot the device");
supportedFeatures.add(feature);
feature = new Feature();
feature = new Feature();
feature.setCode("UPGRADE_FIRMWARE");
feature.setName("Upgrade Firmware");
feature.setDescription("Upgrade Firmware");
supportedFeatures.add(feature);
feature = new Feature();
feature.setCode("VPN");
feature.setName("Configure VPN");
feature.setDescription("Configure VPN settings");
supportedFeatures.add(feature);
return supportedFeatures;
}