I'm integrating tencent_cloud_chat_push in a Flutter app, but when running the app on iOS, I encounter this error:
Error: The pod "TXIMSDK_Plus_iOS_XCFramework," required by the plugin "tencent_cloud_chat_push"
requires a higher minimum iOS deployment version than the plugin's reported minimum version.
To build, remove the plugin "tencent_cloud_chat_push", or contact the plugin's developers for assistance.
Error running pod install
Error launching application on iPhone 16 Pro.
How can I resolve this problem?
I'm integrating tencent_cloud_chat_push in a Flutter app, but when running the app on iOS, I encounter this error:
Error: The pod "TXIMSDK_Plus_iOS_XCFramework," required by the plugin "tencent_cloud_chat_push"
requires a higher minimum iOS deployment version than the plugin's reported minimum version.
To build, remove the plugin "tencent_cloud_chat_push", or contact the plugin's developers for assistance.
Error running pod install
Error launching application on iPhone 16 Pro.
How can I resolve this problem?
Share Improve this question asked Apr 1 at 11:12 ivory xuivory xu 1 New contributor ivory xu is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.1 Answer
Reset to default 0The local cocoapods cache cannot detect the download of a certain plug-in version that Flutter depends on, and needs to be updated.Follow these steps to fix it: Step 1: Delete Podfile.lock & Pods (Clean Reset)
cd ios
rm -rf Podfile.lock Pods/
Step 2: Run Pod Install with Updates
pod repo update
pod install --repo-update