our device must be rooted. # su # toybox traceroute toybox has multiple internal commands at your perusal. This worked […]
Veejansh
Cloud++ Container++
Cloud++ Container++
our device must be rooted. # su # toybox traceroute toybox has multiple internal commands at your perusal. This worked […]
On a rooted Android device, adb shell su -c “mount -o rw,remount /system” This makes /system writable and can update any […]
public static float cpuTemperature(){ Process process; try { process = Runtime.getRuntime().exec(“cat sys/class/thermal/thermal_zone0/temp”); process.waitFor(); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line = reader.readLine(); if(line!=null) { float temp = […]
On Android java code, print stack trace of all the threads owned by current process. try{ Map info = Thread.getAllStackTraces(); for (Map.Entry<Thread, […]
Use this command to get mount names and origins: df o get block information for data use the command: tune2fs […]