You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will this library be updated so that it's compatible with CocoaPods projects that rely on use_frameworks!? Currently, it fails to pass the pod install step due to the following error:
[!] The 'Pods-Project' target has transitive dependencies that include statically linked binaries:
(/SRCROOT/ios/Pods/AgoraRtm_iOS/AgoraRtmKit.framework)
In comparison, the react-native-agora library which exposes the RTC SDK works fine. Currently, the Agora developer blog recommends using the RTM SDK alongside the RTC SDK because the former supports methods to track chat room membership. However, this implementation is unfeasible on React Native for projects that rely on use_frameworks!. Since both projects seem to share maintainers, I figured I'd ask. Thanks for all your hard work!
The text was updated successfully, but these errors were encountered:
I think the issue is that AgoraRtmKit.framework is a transitive dependency for agora-react-native-rtm and not react-native-agora. However, feel free to close this issue — I ended up changing my project to avoid using use_frameworks! and thus am able to include statically linked binaries now with no problems.
Will this library be updated so that it's compatible with CocoaPods projects that rely on
use_frameworks!
? Currently, it fails to pass thepod install
step due to the following error:In comparison, the
react-native-agora
library which exposes the RTC SDK works fine. Currently, the Agora developer blog recommends using the RTM SDK alongside the RTC SDK because the former supports methods to track chat room membership. However, this implementation is unfeasible on React Native for projects that rely onuse_frameworks!
. Since both projects seem to share maintainers, I figured I'd ask. Thanks for all your hard work!The text was updated successfully, but these errors were encountered: