I'm encountering an issue while trying to build my Flutter project that integrates Tencent Cloud Chat Push. The error occurs during the CocoaPods installation phase, and I'm unsure how to resolve it. Here's the detailed error message:
<internal:/Users/xiaohui/.rvm/rubies/ruby-3.2.1/lib/ruby/site_ruby/3.2.0/rubygems/core_ext/kernel_require.rb>:136:in 'require':
cannot load such file -- plist (LoadError)
from <internal:/Users/xiaohui/.rvm/rubies/ruby-3.2.1/lib/ruby/site_ruby/3.2.0/rubygems/core_ext/kernel_require.rb>:136:in 'require'
from /Users/xiaohui/.pub-cache/hosted/pub.flutter-io/fluwx-4.6.3/ios/wechat_setup.rb:8:in <main>'
Additionally, there's a version conflict with the TXIMSDK_Plus_iOS_XCFramework pod, which is required by the tencent_cloud_chat_push plugin.
I want to successfully build my Flutter project without encountering the LoadError or version conflict issues. Specifically, I need to ensure that the TXIMSDK_Plus_iOS_XCFramework
pod is properly installed and compatible with my project.
Code (Current ios/Podfile):
platform :ios, '11.0'
use_frameworks!
target 'Runner' do
# Pods for Runner
pod 'TXIMSDK_Plus_iOS_XCFramework'
end
How can I fix the LoadError
related to the plist
file?
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744322583a4568492.html
评论列表(0条)