android 5.1 usb调试默认关闭设置方法

packages/apps/Provision/src/com/android/provision/DefaultActivity.java
在该文件中加入下面的代码:

    //added by inet_weitf 20160304,set def adb_enabled
       if (!android.os.SystemProperties.getBoolean("ro.inet.adb_enabled",true)) {
           Settings.Secure.putInt(getContentResolver(), Settings.Secure.ADB_ENABLED, 0);
       }

同时在system.prop中添加:

    ro.inet.adb_enabled=false

你可能感兴趣的:(Android,默认设置)