Skip to content

Commit

Permalink
fix podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hughkli committed Oct 30, 2023
1 parent d5297f5 commit 60ed564
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,12 @@ target 'LookinClient' do
pod 'LookinShared', :git=>'https://github.com/QMUI/LookinServer.git', :branch => 'develop'
# pod 'LookinShared', :path=>'../LookinServer/'
end

# ReactiveObjc 之类的 SDK 的 deployment target 太低了导致无法编译,所以这里改成以项目为准
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ SPEC CHECKSUMS:
ReactiveObjC: 2a38ea15335de4119d8b17caf1db1484f61db902
Sparkle: 23f98b268284c8c03e6228230fc8f1807ef041d5

PODFILE CHECKSUM: e01f489f51a982e8a808efa0c0b2946d71844b94
PODFILE CHECKSUM: 0fd3721c4f55b73a89a303c576f735154d564644

COCOAPODS: 1.11.3

0 comments on commit 60ed564

Please sign in to comment.