| Hi Austin Cunningham, According to the docs to enable a service the dev need get the dep init it in the client app doing something as described here for each type of SDK. Following the Cordova/JS example.
new SecurityService(app.metrics) |
.check(DeviceCheckType.rootEnabled) |
.then(result => { |
// Handle the security result metric |
// result: { id: string, name: string, passed: boolean } |
});
|
In this way, to disable a service shows that the dev can not add the service and/or use something as rootDisable instead of rootEnabled. So, IMHO we should do the same for this service as well. I hope that this info can be helpful for your checks here. |