I had an Intel macbook and I used that to build and release my app to app store but I didn't release for 2 years. Recently a bug was reported that I needed to update the a code and make a new release with my apple silicon macbook. But I get this issue when I go to Product -> Archive.
I tried updating pods, as well as adding following line to the Podfile but no change.
platform :ios, "12.0"
target "myApp" do
use_frameworks!
pod "AFNetworking"
pod "KVNProgress"
pod "GCDWebServer"
pod "CocoaLumberjack"
pod "Intercom"
pod "GoogleWebRTC"
pod "SAMKeychain"
pod "googleapis", :path => '.'
pod 'gRPC', '1.0.0'
pod 'gRPC-Core', '1.0.0'
pod 'gRPC-ProtoRPC', '1.0.0'
pod 'gRPC-RxLibrary', '1.0.0'
pod 'BoringSSL-GRPC', '0.0.7'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'BoringSSL-GRPC'
target.source_build_phase.files.each do |file|
if file.settings && file.settings['COMPILER_FLAGS']
flags = file.settings['COMPILER_FLAGS'].split
flags.reject! { |flag| flag == '-GCC_WARN_INHIBIT_ALL_WARNINGS' }
file.settings['COMPILER_FLAGS'] = flags.join(' ')
end
end
end
end
end
Nothing worked for me. What do I do now? I appreciate any help
Topic:
Developer Tools & Services
SubTopic:
Xcode