-1
Android 5.0のログファイルを作成したい。私はフィルタなしでlogcatを使用していますが、それでも私はすべてのアプリケーションの代わりに自分のアプリケーションのログを表示しています。それは私にAndroidシステムの完全なログを示しているはずです。Android 5.0のログファイルをlogcatを使って作成したい
File root = new File(Environment.getExternalStorageDirectory(), "Logs");
// if external memory exists and folder with name Notes
if (!root.exists()) {
root.mkdirs(); // this will create folder.
}
file = new File(root, "log.txt"); // file path to save
Process process = Runtime.getRuntime().exec("logcat -f "+file.getAbsolutePath());