Edon Freiner
Edon Freiner

Reputation: 556

CocoaPods Error: Unable to find compatibility version string for object version '70' after adding Share Extension

I'm getting this error when trying to run pod install after adding a Share Extension to my Flutter iOS project:

CopyArgumentError - [Xcodeproj] Unable to find compatibility version string for object version `70`.

Environment:

My Podfile:

rubyCopyENV['COCOAPODS_DISABLE_STATS'] = 'true'

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

platform :ios, '13.0'

flutter_ios_podfile_setup

target 'Runner' do
  use_frameworks!
  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end

target 'Share Extension' do
  use_frameworks!
  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end

Steps to reproduce:

Things tried:

The project works fine without Share Extension, I've removed it and added it multiple tiles. Any ideas how to resolve this?

Upvotes: 10

Views: 6384

Answers (5)

Sajid Hasan
Sajid Hasan

Reputation: 31

Found the problem. Something had updated the "objectVersion" value in the project.pbxproj to "70" which I think is not recognized by the xcodeproj yet. I set it to "60" and the error went away.

from https://github.com/CocoaPods/CocoaPods/issues/12671

Upvotes: 1

Bhushan Gawande
Bhushan Gawande

Reputation: 9

Change the Xcode version to current version minus 2 by selecting the PROJECT(above TARGETS)

if your current Xcode version is 16 then choose Xcode 14

enter image description here

Upvotes: -1

Daniel Pitts
Daniel Pitts

Reputation: 51

Anytime you add an Xcode 16-only feature to your project, the format will automatically be updated.

For those who ended up on this thread because of a similar issue with the Project Navigator, explanation below:

When you right-click on the Project Navigator in Xcode, you have the options "New Folder" (Xcode 16 only) or "New Group" (any Xcode version). When you create a New Folder, your objectVersion will automatically be bumped to 70.

  • Right-click on any Folders you've created and select "Convert to Group".
  • When you've finished converting all folders to groups, Xcode won't automatically set the objectVersion to 70.
  • Verify that your project settings are still set to Xcode xx (9.3 or 12.0 or whatever you wanted).

Upvotes: 5

quynhbkhn
quynhbkhn

Reputation: 752

enter image description here change it and fixed for my issue: https://github.com/CocoaPods/CocoaPods/issues/12671#issuecomment-2467142931

Upvotes: 37

Edon Freiner
Edon Freiner

Reputation: 556

I found an answer here: https://github.com/CocoaPods/CocoaPods/issues/12671#issuecomment-2445304215

When adding an extension it changes your objectVersion to 70, so I needed to change it back

Upvotes: 2

Related Questions