We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 848b36d commit 2a611ecCopy full SHA for 2a611ec
example/src/App.tsx
@@ -251,6 +251,16 @@ const App = () => {
251
)
252
);
253
},
254
+ // Android only
255
+ automation: () => {
256
+ setAppChecks((currentState) =>
257
+ currentState.map((threat) =>
258
+ threat.name === 'Automation'
259
+ ? { ...threat, status: 'nok' }
260
+ : threat
261
+ )
262
+ );
263
+ },
264
};
265
266
const raspExecutionStateActions = {
example/src/checks.ts
@@ -24,4 +24,5 @@ export const androidChecks = [
24
{ name: 'Time Spoofing', status: 'ok' },
25
{ name: 'Location Spoofing', status: 'ok' },
26
{ name: 'Unsecure Wifi', status: 'ok' },
27
+ { name: 'Automation', status: 'ok' },
28
];
0 commit comments