Open your terminal and execute the following command:
brew install adb
-
Connect your phone to your Mac using a USB cable and enable USB debugging mode on your phone
-
Verify your phone is connected success with running the following command:
adb devices
- List all the packages in your phone
adb shell pm list packages
- Find the path of the apk
adb shell pm path <packages_id>
- Extracte the base.apk
adb pull <apk_path> <destination_path>
- Redirect output and save it into local file
adb logcat > <path-to-file>
To stop the logging process, preses
Command
+Z