We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1ff08 commit 12ac444Copy full SHA for 12ac444
app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/VulnerabilityOrganizer.java
@@ -55,6 +55,11 @@ public static List<VulnerabilityTest> getTests(Context ctx){
55
String cpuArch1 = SystemUtils.propertyGet(ctx, "ro.product.cpu.abi");
56
String cpuArch2 = SystemUtils.propertyGet(ctx, "ro.product.cpu.abi2");
57
58
+
59
+ /*
60
+ The logic here is:
61
+ The test must support every architecture that the device lists
62
+ */
63
for(VulnerabilityTest vt : allTests){
64
65
if(vt.getSupportedArchitectures() == null) {
0 commit comments