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

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

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

1,140 次查看
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 项奖励
回复
0 回复数