Changes between Version 2 and Version 3 of Android/OSDevelopment


Ignore:
Timestamp:
09/11/2018 05:11:17 PM (6 years ago)
Author:
Shiv Khanna
Comment:

added initial section on logcat

Legend:

Unmodified
Added
Removed
Modified
  • Android/OSDevelopment

    v2 v3  
    10241024
    10251025[=#overlay]
     1026=== Android logging ===
     1027Logcat is a command-line tool that dumps a log of system messages, including stack traces when the device throws an error and messages form user programs. Logcat can be written to with the Log class in Java and KLOG in C. Logcat is an important tool to use when doing any OS development on android. 
     1028
     1029
     1030
     1031[=#overlay]
    10261032=== Customizing your target device using overlays ===
    10271033The Android build system uses an overlay system that allows files to be replaced on a per-target device basis. This is commonly done to do things like adjust layout specific resources or background wallpapers for a specific device.