Home > OS >  What does package:mine mean in Android Studio Logcat?
What does package:mine mean in Android Studio Logcat?

Time:09-27

I can see package:mine prefilled in the Android Studio Dolphin's Log cat filter. Can someone explain what it means?

CodePudding user response:

Logcat queries with package:<package-ID> filters logs for a specific package identifier, also the mine keyword in this refers to the local app projects identifier. Thus all logs for your local app can be shown.

Read more about this here

  • Related