Pidcat alternatives and similar packages
Based on the "Debug" category.
Alternatively, view Pidcat alternatives based on common mentions on social networks and blogs.
-
Android Debug Database
A library for debugging android databases and shared preferences - Make Debugging Great Again -
ADB Enhanced
🔪Swiss-army knife for Android testing and development 🔪 ⛺ -
Linx
Lynx is an Android library created to show a custom view with all the information Android logcat is printing, different traces of different levels will be rendererd to show from log messages to your application exceptions. You can filter this traces, share your logcat to other apps, configure the max number of traces to show or the sampling rate used by the library. -
android-grid-wichterle
This app will show grid overlay over whole system which helps you to verify your excellent app design. -
Under the Hood
Under the Hood is a flexible and powerful Android debug view library. It uses a modular template system that can be easily extended to your needs, although coming with many useful elements built-in. -
Android Snooper
Android library to record the network calls through the interceptor mechanism of the http clients. -
Android DebugPort
A Read-Eval-Print-Loop server for Android and SQLite -
AndroidMiniDebugger
A small tool to log your application inside your application with a floating UI component -
AppSpector
Remote Android and iOS debugging and data collection service. You can debug networking, logs, SQLite and mock device's geo location.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Pidcat or a related project?
README
PID Cat
An update to Jeff Sharkey's excellent logcat color script which only shows log entries for processes from a specific application package.
During application development you often want to only display log messages coming from your app. Unfortunately, because the process ID changes every time you deploy to the phone it becomes a challenge to grep for the right thing.
This script solves that problem by filtering by application package. Supply the target package as the sole argument to the python script and enjoy a more convenient development process.
pidcat com.oprah.bees.android
Here is an example of the output when running for the Google Plus app:
[Example screen](screen.png)
Install
Get the script:
OS X: Use Homebrew.
brew install pidcat
If you need to install the latest development version
brew unlink pidcat brew install --HEAD pidcat
Arch Linux : Install the package called
pidcat-git
from the AUR.Others: Download the
pidcat.py
and place it on your PATH.
Make sure that adb
from the Android SDK is on your PATH. This script will
not work unless this is that case. That means, when you type adb
and press
enter into your terminal something actually happens.
To include adb
and other android tools on your path:
export PATH=$PATH:<path to Android SDK>/platform-tools
export PATH=$PATH:<path to Android SDK>/tools
Include these lines in your .bashrc
or .zshrc
.
Note: <path to Android SDK>
should be absolute and not relative.
pidcat
requires at least version 8.30 of coreutils
. Ubuntu 20.04 LTS already ships
with it, for 18.04 and below, coreutils
can be upgraded from the focal
repo by running
the following:
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu focal main restricted universe multiverse'
sudo apt-get update
sudo apt-get -t focal install coreutils