caner 2 months ago
parent
commit
6a37549a6f
1 changed files with 9 additions and 3 deletions
  1. 9 3
      README.md

+ 9 - 3
README.md

@@ -1,3 +1,9 @@
-# test
-
-1
+# mac 上通过修改签名解决微信多开
+```
+// 复制微信应用到微信2
+sudo cp -R /Applications/WeChat.app /Applications/WeChat2.app
+// 修改微信2的包名
+sudo /usr/libexec/PlistBuddy -c "Set :CFBundleIdentifier com.tencent.xinWeChat2" /Applications/WeChat2.app/Contents/Info.plist
+// 重新签名微信2
+sudo codesign --force --deep --sign - /Applications/WeChat2.app
+```