Trying to output my LogCat to a file

后端 未结 3 1037
别跟我提以往
别跟我提以往 2021-02-14 13:31

I\'ve been told it\'s a command line option. But Eclipse\'s Run!Run Configurations...!Target!Additional Emulator Command Line Options field is already occupied with

<         


        
3条回答
  •  温柔的废话
    2021-02-14 14:27

    There should be an adb.exe file in C:\android-sdk-windows\tools. You can invoke this manually from a DOS command prompt:

    cd C:\android-sdk-windows\tools
    adb logcat -s MessageBox > "C:\Users\me\Documents\LogCatOutput.txt"
    

    There's no need to bother with Eclipse in this case.

提交回复
热议问题