android 8.0设置蓝牙开机后默认是关闭的

位置在 frameworks/base/packages/SettingsProvider/res/values/defaults.xml

<bool name="def_bluetooth_on">falsebool>
将 def_bluetooth_on 的值设为false,然后编译image,再烧的image开机后会发现蓝牙是关着的了。

 编译命令:

source build/envsetup.sh
lunch helios-eng

make -j8

    刷image的命令:

adb reboot bootloader
fastboot flash system system.img
fastboot reboot

你可能感兴趣的:(bsp)