Detect-It-Easy/db/APK/_APK.0.sg
2024-11-12 20:11:38 +03:00

15 lines
No EOL
342 B
JavaScript
Executable file

// Detect It Easy: detection rule file
init("operation system", "Android");
function detect() {
if (APK.isVerbose()) {
sName = APK.getOperationSystemName();
sVersion = APK.getOperationSystemVersion();
sOptions = APK.getOperationSystemOptions();
bDetected = true;
}
return result();
}