What does package:mine mean in Android Studio Logcat?

Viewed 26

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

1 Answers

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