3288 8.1默认打开开发者选项 ,不用点击版本号

在packages/apps/Settings/src/com/android/settings/SettingsActivity.java下面

final boolean showDev = mDevelopmentPreferences.getBoolean(
            DevelopmentSettings.PREF_SHOW, android.os.Build.TYPE.equals("eng"))
            && !um.hasUserRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES);       



+ //final boolean showDev = mDevelopmentPreferences.getBoolean(
   + //       DevelopmentSettings.PREF_SHOW, android.os.Build.TYPE.equals("eng"))
   + //        && !um.hasUserRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES);
+	final boolean showDev = true ;

主要将showDev 设置为true

技术交流群
在这里插入图片描述


版权声明:本文为DFH0623原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。