Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# - Also handy if you have a large number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
Pods/
vendor/

### Swift ###
# Xcode
Expand Down
2 changes: 2 additions & 0 deletions Runnect-iOS/.bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
BUNDLE_PATH: "vendor/bundle"
2 changes: 2 additions & 0 deletions Runnect-iOS/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
source "https://rubygems.org"

gem "fastlane"
gem 'cocoapods', '1.15.0'
gem 'rexml', '~> 3.2.4'
33 changes: 25 additions & 8 deletions Runnect-iOS/Podfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'

# 네이버 지도 Legacy 소스 추가
source 'https://github.com/navermaps/NMapsMapLegacySpecs.git'
source 'https://github.com/CocoaPods/Specs.git'

target 'Runnect-iOS' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

pod 'NMapsMap'
pod 'NMapsMap-Legacy'
pod 'Kingfisher', '~> 7.0'
pod 'SnapKit', '~> 5.6.0'
pod 'Moya', '~> 15.0'
Expand All @@ -29,12 +33,25 @@ end
# Pods for Runnect-iOS

post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
# IPHONEOS_DEPLOYMENT_TARGET 설정
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end

# BoringSSL-GRPC 경고 제거
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
Loading