Advertisement
pbeeler

Untitled

May 27th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ifeq (true,$(strip $(enable_target_debugging)))
  2. # Target is more debuggable and adbd is on by default
  3. ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1
  4. # Include the debugging/testing OTA keys in this build.
  5. INCLUDE_TEST_OTA_KEYS := true
  6. else # !enable_target_debugging
  7. # Target is less debuggable and adbd is off by default
  8. ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=0
  9. endif # !enable_target_debugging
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement