Last active
August 9, 2017 12:27
-
-
Save kiok46/06add5048882e6504895 to your computer and use it in GitHub Desktop.
How to make use logcat???
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You need to use adb server. | |
1. Connect your android with your laptop/pc | |
2. Go to developer options and turn on the stay awake and USB debugging options. (Your phone) | |
3. In your terminal, type "sudo adb kill-server" and then "sudo adb start-server". | |
4. Type "adb devices" (this should give list of devices connected) | |
List of devices attached | |
you_device_name device | |
5. "cd" to your folder where you have made your build. | |
6. Type "buildozer android debug deploy run logcat > logcat.txt" | |
this saves the logs (for the entire process) in a file logcat.txtx in the same folder and also deploys you app on the phone. | |
Go through it and find your error. | |
7. keep your phone awake.(do not lock it). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brief summary:
The app has 2 screens, 1 for user login and 1 for content display
Libraries: kivymd, sqlite3 and django
The apk crashed on startup with no specific error
Below is part of the log
Thanks