Skip to content

Commit

Permalink
Set APPLICATION_EXTENSION_API_ONLY to NO for ORLib
Browse files Browse the repository at this point in the history
  • Loading branch information
Miggets7 committed Aug 28, 2024
1 parent 5643006 commit 9d2cfde
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions GenericApp/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ post_install do |installer|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
if target.name == 'ORLib'
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
end
end
end
end
end

0 comments on commit 9d2cfde

Please sign in to comment.