博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
I.MX6 默认打开 USB adb
阅读量:6849 次
发布时间:2019-06-26

本文共 1909 字,大约阅读时间需要 6 分钟。

/***************************************************************************** *                        I.MX6 默认打开 USB adb * 声明: *     在调试android的时候,尤其是前期,可能我们没有Touch,这样使用adb显得 * 力不从心,因为它会弹个对话框来,可你有按不了,于是默认打开adb就成了需求。 * *                                          2016-1-20 深圳 南山平山村 曾剑锋 ****************************************************************************/一、参考文章:    飞思卡尔 imx6 android 调试环境搭建        http://www.wjxfpf.com/2015/10/590190.html    Android 4.2.2 开机默认开启USB调试        http://blog.csdn.net/zhujm320/article/details/37914487    默认打开USB调试功能        http://blog.csdn.net/pfgmylove/article/details/16985159二、解决方案:    1. cat frameworks/base/services/java/com/android/server/usb/UsbDeviceManager.java        ......        public void systemReady() {            if (DEBUG) Slog.d(TAG, "systemReady");            mNotificationManager = (NotificationManager)                mContext.getSystemService(Context.NOTIFICATION_SERVICE);            // We do not show the USB notification if the primary volume supports mass storage.            // The legacy mass storage UI will be used instead.            boolean massStorageSupported = false;            final StorageManager storageManager = StorageManager.from(mContext);            final StorageVolume primary = storageManager.getPrimaryVolume();            massStorageSupported = primary != null && primary.allowMassStorage();            mUseUsbNotification = !massStorageSupported;            // make sure the ADB_ENABLED setting value matches the current state            //Settings.Global.putInt(mContentResolver, Settings.Global.ADB_ENABLED, mAdbEnabled ? 1 : 0);            Settings.Global.putInt(mContentResolver, Settings.Global.ADB_ENABLED, 1);             mHandler.sendEmptyMessage(MSG_SYSTEM_READY);        }        ......    2. cat /init.rc        ......        #  Enable adb security for JB4.2.2            setprop ro.adb.secure 0        ......

 

你可能感兴趣的文章
kvm命令学习记录
查看>>
小菜鸡进阶之路-First week
查看>>
ORACLE 10g SYSAUX表空间快速增长之WRH$_ACTIVE_SESSION_HISTORY篇
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
子数组的和的最大值(包括升级版的首尾相连数组)
查看>>
LeetCode - Nth Highest Salary
查看>>
9.ORM数据访问
查看>>
href=“javascript:”vs href=“javascript:void(0)”
查看>>
win10文件夹无法打开,双击闪屏
查看>>
【学习笔记14】全局类型转换器
查看>>
Spring Boot学习记录手册<1>
查看>>
在Word2007和Word2010中插入视频文件,并自动在word中播放
查看>>
javascript设置http请求的头信息
查看>>
C++调用java开启远程调试
查看>>
struts2与ajax交互
查看>>
Linux Shell脚本中点号和source命令
查看>>
Unix常用基本数据类型
查看>>
索尼竟用人工智能写了两首流行歌
查看>>
私有云portal
查看>>