Hector-Chong / native-wechat

A React Native library for supporting Wechat APIs on Android and iOS
https://native-wechat.hector.im
MIT License
133 stars 11 forks source link

WeChatSDK不支持模拟器arm64架构 #51

Closed Yi-debug closed 20 hours ago

Yi-debug commented 2 days ago

"react": "18.2.0", "react-native": "0.73.6", "native-wechat": "^1.0.19"

MacBook Pro M1芯片 Xcode Version 15.4

下载了这个插件后项目跑不起来了 没有真机只能用模拟器测试

然后在Podfile中加上以下代码就可以了

installer.pods_project.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" end

加上这个代码的话,可以跑起来, 但是滚动的时候就非常的卡顿,没有流畅度 是不是WeChatSDK 不支持模拟器arm64架构 所以不加这个代码就跑不起来,加上这个代码就非常的卡顿

Yi-debug commented 2 days ago

我想知道这个是不是用真机测试的话就不会有问题了