Android8.1 系统修改默认的wifi直连名字

关于修改默认wifi直连的名字其实很简单,打开frameworks\opt\net\wifi\service\java\com\android\server\wifi\p2p\WifiP2pServiceImpl.java这个文件,修改如下:

 				 // default that has low likelihood of collision with a peer
                 String id = Settings.Secure.getString(mContext.getContentResolver(),
                         Settings.Secure.ANDROID_ID);
-                return "Android_" + id.substring(0, 4);
+                return "默认的wifi直连名字"

你可能感兴趣的:(Android,android)