How to get logs of other apps?
问题 I want to read logs from other apps and filter them so when a certain keyword is being logged, my application will perform a certain task. I found several methods of reading logs, but from my testing I could only get my application logs. This is the method I originally tried to use try { Process process = Runtime.getRuntime().exec("logcat -d"); BufferedReader bufferedReader = new BufferedReader( new InputStreamReader(process.getInputStream())); StringBuilder log=new StringBuilder(); String