1. 手机型号修改
1.1 /build/make/core/Makefile
1.2/device/qcom/msm8953_64/msm8953_64.mk
2. 开机logo修改,将splash.img添加到烧录包
3. 通知栏图标快捷键的去除
frameworks/base/packages/SystemUI/res/values/config.xml
4. 默认语言设置成中文
build/make/target/product/full_base.mk
5. 内存大小显示不符合实际要求
/device/qcom/msm8953_64/BoardConfig.mk
6. 音量键加减功能相反
/device/qcom/msm8953_64$ vim gpio-keys.kl
key 115 VOLUME_UP
key 114 VOLUME_DOWN
key 102 HOME
key 528 FOCUS
key 766 CAMERA
7. 关闭双按电源键启动相机
frameworks/base/core/res/res/values/config.xml
<!-- Allow the gesture to double tap the power button twice to start the camera while the device
is non-interactive. -->
<bool name="config_cameraDoubleTapPowerGestureEnabled">false</bool>
8. 默认关闭USB调试
/frameworks/base/services/usb/java/com/android/server/usb/UsbDeviceManager.java
// make sure the ADB_ENABLED setting value matches the current state
try {
putGlobalSettings(mContentResolver, Settings.Global.ADB_ENABLED,
- mAdbEnabled ? 1 : 0);
+ 0);//mAdbEnabled ? 1 : 0
} catch (SecurityException e) {
// If UserManager.DISALLOW_DEBUGGING_FEATURES is on, that this setting can't