Flutter project archive issue using Xcode: agora_rtc_engine "Module 'agora_rtc_engine' not found"

Viewed 1825

enter image description here

I am using Agora in my flutter application, everything works fine when I test it with simulators/emulators and my android/ios phones.

When I archive the project on Xcode and upload to App store, it throws one error as below, I have searched online for a couple of hours but didn't get any progress. I don't even have any idea what is the issue and what causes the issue

My understanding is agora_rtc_engine is installed by Flutter, I am not supposed to do anything when archiving an IOS package.

If anyone knows what happened and what needs to be done, please share your thoughts, Thanks!

3 Answers

From xcode change the ios deployment target to 11.0

I also had this problem because I was trying to open and archive runner.xcodeproj using xcode. When I selected runner.xcworkspace I was able to successfully archive.

Related