Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean checkRootMethod1() {
String buildTags = android.os.Build.TAGS;
if (buildTags != null && buildTags.contains("test-keys")) {
return true;
}
return false;
}
}