Enabling debugging console in user mode build Android 8.0.0 on imx6 platform

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Enabling debugging console in user mode build Android 8.0.0 on imx6 platform

665 Views
prasannakulkarni
Contributor IV

Debugging console feature is given only in eng/userdebug build types it is disabled in user mode build.

to debug in user mode we need a console . it can enabled by modifying the file

build/make/core/main.mk


ifeq ($(user_variant),user)
ADDITIONAL_DEFAULT_PROPERTIES += ro.adb.secure=1
endif

ifeq ($(user_variant),userdebug)
# Pick up some extra useful tools
tags_to_install += debug
else
# Disable debugging in plain user builds.
enable_target_debugging :=
endif

 

there @ bold text append string true

0 Kudos
0 Replies