16.7 C
New York
Friday, April 4, 2025

Duplicate interface definition for sophistication ‘gtmsessionfetcherservice’


I am at present making an attempt to add a brand new model of my ionic app to the apple retailer. For that I do that command: "npm run construct:prod && npx cap sync && npx cap copy && npx cap open ios". It really works appropriately and opens xcode in my mac. There I do "Product->Archive", it begins constructing but it surely throws this errors:
enter image description here

enter image description here

enter image description here

enter image description here

I have been going at it for days and its not working. The principle downside is with GTMSessionFetcherService, I attempted deleting it from the pods file and straight from the packages in xcode however each find yourself inflicting extra errors. I additionally cleaned xcode and tried to rebuild once more and uninstalled and reinstalled the pods. Different posts associated to this error that I discovered talked about altering some construct configurations for xcode but it surely did not have this choices chosen both. The present model is identical however the minimal ios model requirement is 15.0 as an alternative of 13.0 because it was earlier than. He’s my podfile if it helps:

require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'

platform :ios, '15.0'
use_frameworks!

# workaround to keep away from Xcode caching of Pods that requires
# Product -> Clear Construct Folder after new Cordova plugins put in
# Requires CocoaPods 1.6 or newer
set up! 'cocoapods', :disable_input_output_paths => true

def capacitor_pods
  pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
  pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
  pod 'CapacitorFirebaseAuthentication', :path => '../../node_modules/@capacitor-firebase/authentication'
  pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
  pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/digital camera'
  pod 'CapacitorGeolocation', :path => '../../node_modules/@capacitor/geolocation'
  pod 'CapacitorGoogleMaps', :path => '../../node_modules/@capacitor/google-maps'
  pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics'
  pod 'CapacitorKeyboard', :path => '../../node_modules/@capacitor/keyboard'
  pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications'
  pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
  pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
finish

goal 'App' do
  capacitor_pods
  # Add your Pods right here
  pod 'CapacitorFirebaseAuthentication/Google', :path => '../../node_modules/@capacitor-firebase/authentication'
  pod 'CapacitorFirebaseAuthentication/Fb', :path => '../../node_modules/@capacitor-firebase/authentication'
finish

post_install do |installer|
  assertDeploymentTarget(installer)
  installer.pods_project.targets.every do |goal|
    goal.build_configurations.every do |config|
      config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
    finish
    if goal.respond_to?(:product_type) and goal.product_type == "com.apple.product-type.bundle"
      goal.build_configurations.every do |config|
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      finish
    finish
  finish
finish

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles