Key Points
- a relatively open source mobile OS ( vs Apple )
- easier to customize the Apple
References
Reference_description_with_linked_URLs_________________________ | Notes____________________________________________________________ |
---|---|
Android tools | |
ADB logger | |
https://support.sugarsync.com/hc/en-us/articles/204934170-Managing-Automatic-Sync-Settings-Android | SugarSync time sync for android |
Key Concepts
Android Debug from Windows or Mac using adb.exe
use google adb.exe tool
the process is a little work if you want to try.
https://pruvan.zendesk.com/hc/en-us/articles/202717265-How-to-get-an-Android-System-Log
basically there is a tool called ADB that can pull the log file from the device once you have it connected to your laptop for example.
How to get an Android System Log
Sometimes there's a hardware issue that is specific to a single device or a device model that we can not reproduce in our office. In these situations we will need a system log from the device that...
i can try to get you a log if you need one too from our cloud provider. i just need the exact device and OS version of Android and what build you want me to try
Sometimes there's a hardware issue that is specific to a single device or a device model that we can not reproduce in our office. In these situations we will need a system log from the device that is having the problem to try and figure out what is going wrong. These instructions can be used to create that log and send it to us.
1. Install your device driver
Your device driver should install when you connect your device to the computer over USB. If it does not you may need to locate and install the driver from your manufacturer's website. Once you get to Setup the Log step 7 (6 for Mac) you will know if you need a different driver.
( For Samsung Note 8 I had to manually search the Web for the right USB debug driver. )
2. Connect your device
Plug in your device via USB to your computer
Go to your Settings app
Scroll down to the bottom and tap on Developer Options
If this option is not there then:
Scroll down to the bottom and tap on About Phone (or Device)
Scroll down to the bottom and tap repeatedly on Build Number
Stop once the message says you've unlocked Developer Mode
Tap back
Make sure Android Debugging is checked
3. Setup the log
Windows
Download Platform-tools from Google
Create a folder in your C drive called 'adb'
Unzip the Platform-tools zip file to this folder
Press the win+r on your keyboard
In the run window type cmd.exe and press enter
in the CMD window type 'cd c:\adb' and press enter
Type '
adb devices
' and press enterThis should write a line to the CMD window that says '009ab325109378df7e device' or something like that
If it says that there aren't any devices, then you need a different device driver
Type '
adb logcat > android.log
' and press enterThis will just show the cursor (blinker) sitting on a new line (with no 'C:\adb' in front), blinking. This is good.
Mac OS
Download Platform-tools from Google
Create a folder in your hard drive called 'adb'
This will be next to folders like; 'users', 'applications', 'system', etc..
Unzip the Platform-tools zip file to this folder
Go to the Utilities folder and run Terminal
in the Terminal window type 'cd \adb' and press enter
Type 'adb devices' and press enter
This should write a line to the Terminal window that says '009ab325109378df7e device' or something like that
If it says that there aren't any devices, then you need a different device driver
Type '
adb logcat > android.log
' and press enterThis will just show the cursor (blinker) sitting on a new line (with no '\adb' in front), blinking. This is good.
4. Recreate the issue
Pick up your device
Open the your app to test
Take photos or do what every you need to in the app to create the error(s)
5. Finish up
Windows
Click inside of the CMD window on your computer
Press ctrl-c
This will stop the log
Open a folder on your computer and go to C:\adb
Attach android.log to a reply email for your open ticket
Mac OS
Click inside of the Terminal window on your computer
Press cmd-c
This will stop the log
Open your hard drive and go to the adb folder
Attach android.log to a reply email for your open ticket
Find USB debug drivers for different phones
Get USB debug driver for a phone if it didn’t automatically download on Windows USB connect
best site for Note 8 USB driver install
https://www.mobileheadlines.net/samsung-note-8-usb-driver/
Potential Value Opportunities
Potential Challenges
Candidate Solutions
Step-by-step guide for Example
sample code block