Skip to content

Commit 49097f6

Browse files
authored
Merge pull request #271 from thingineeer/#270
[Setting] #270 -release v2.1.0
2 parents 5a3b2de + 410a00e commit 49097f6

File tree

6 files changed

+58
-33
lines changed

6 files changed

+58
-33
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
1010
Pods/
1111
vendor/
12+
/vendor/
1213

1314
### Swift ###
1415
# Xcode

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# 한줄 소개
44
러닝과 일상을 Connect하다! 데일리 러닝앱 서비스 Runnect 🏃
55

6-
### 앱스토어 링크: [Appstore](https://apps.apple.com/kr/app/runnect-%EC%BD%94%EC%8A%A4%EB%A5%BC-%EA%B7%B8%EB%A6%AC%EA%B3%A0-%EA%B3%B5%EC%9C%A0%ED%95%98%EB%8A%94-%EB%8D%B0%EC%9D%BC%EB%A6%AC-%EB%9F%AC%EB%8B%9D%EC%95%B1/id1663884202)
6+
### 앱스토어 링크: [Appstore](https://apps.apple.com/kr/app/runnect-%EC%BD%94%EC%8A%A4%EB%A5%BC-%EA%B7%B8%EB%A6%AC%EA%B3%A0-%EA%B3%B5%EC%9C%A0%ED%95%98%EB%8A%94-%EB%8D%B0%EC%9D%BC%EB%A6%AC-%EB%9F%AC%EB%8B%9D%EC%95%B1/id1663884202) v2.1.0
77

88
![1](https://github.com/thingineeer/Runnect-iOS/assets/88179341/937f9e65-61e5-4298-b703-bc2cf5022bf6)
99
![2](https://github.com/thingineeer/Runnect-iOS/assets/88179341/ad913367-65f2-4839-9658-e538bccf2d6c)
@@ -33,7 +33,7 @@
3333
- Development Environment
3434
<p align="left">
3535
<img src ="https://img.shields.io/badge/Swift-5.9-orange?logo=swift">
36-
<img src ="https://img.shields.io/badge/Xcode-15.0-blue?logo=xcode">
36+
<img src ="https://img.shields.io/badge/Xcode-16.0-blue?logo=xcode">
3737
<img src ="https://img.shields.io/badge/iOS-17.0-green.svg">
3838

3939
<br>
@@ -46,10 +46,11 @@
4646
Moya | 서버 통신 | 15.0.0 | CocoaPods
4747
SnapKit | UI Layout | 5.6.0 | CocoaPods
4848
Then | UI 선언 | 3.0.0 | CocoaPods
49-
Kingfisher | 이미지 처리 | 7.10.1| CocoaPods
49+
Kingfisher | 이미지 처리 | 7.12.0| CocoaPods
5050
NMapsMap | 네이버 지도 SDK | 3.17.0| CocoaPods
51-
Firebase | Dynamic Link(공유), Google Analytics | 10.19.0 | CocoaPods
51+
Firebase | Dynamic Link(공유), Google Analytics | 11.5.0 | CocoaPods
5252
DropDown | 드롭 다운 메뉴 | 2.3.13 | CocoaPods
53+
KakaoSDK | 소셜 로그인 | 2.22.7 | CocoaPods
5354

5455
<br>
5556

Runnect-iOS/Podfile

Lines changed: 45 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,27 @@ target 'Runnect-iOS' do
99
# Comment the next line if you don't want to use dynamic frameworks
1010
use_frameworks!
1111

12-
pod 'NMapsMap-Legacy'
13-
pod 'Kingfisher', '~> 7.0'
14-
pod 'SnapKit', '~> 5.6.0'
15-
pod 'Moya', '~> 15.0'
16-
pod 'Then'
17-
pod 'KakaoSDKCommon'
18-
pod 'KakaoSDKAuth'
19-
pod 'KakaoSDKUser'
20-
pod 'KakaoSDKShare'
21-
pod 'KakaoSDKTemplate'
22-
pod 'FirebaseDynamicLinks'
23-
pod 'KakaoSDKTalk'
24-
pod 'DropDown', :git => 'https://github.com/thingineeer/DropDown.git', :commit => '95ee36f7bd925d466033c2c169979f1c574bf3b9'
25-
pod 'CombineCocoa'
26-
pod 'FirebaseAnalytics'
27-
pod 'FirebaseAuth'
28-
pod 'FirebaseFirestore'
29-
pod 'Firebase/RemoteConfig'
30-
31-
12+
pod 'NMapsMap-Legacy'
13+
pod 'Kingfisher', '~> 7.0'
14+
pod 'SnapKit', '~> 5.6.0'
15+
pod 'Moya', '~> 15.0'
16+
pod 'Then'
17+
pod 'KakaoSDKCommon'
18+
pod 'KakaoSDKAuth'
19+
pod 'KakaoSDKUser'
20+
pod 'KakaoSDKShare'
21+
pod 'KakaoSDKTemplate'
22+
pod 'FirebaseDynamicLinks'
23+
pod 'KakaoSDKTalk'
24+
pod 'DropDown', :git => 'https://github.com/thingineeer/DropDown.git', :commit => '95ee36f7bd925d466033c2c169979f1c574bf3b9'
25+
pod 'CombineCocoa'
26+
pod 'FirebaseAnalytics'
27+
pod 'FirebaseAuth'
28+
pod 'FirebaseFirestore'
29+
pod 'Firebase/RemoteConfig'
3230
end
33-
# Pods for Runnect-iOS
31+
32+
# Pods for Runnect-iOS
3433

3534
post_install do |installer|
3635
# IPHONEOS_DEPLOYMENT_TARGET 설정
@@ -54,4 +53,28 @@ post_install do |installer|
5453
end
5554
end
5655
end
57-
end
56+
57+
# Bitcode 제거 스크립트 추가
58+
bitcode_strip_path = `xcrun --find bitcode_strip`.chop!
59+
def strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
60+
framework_path = File.join(Dir.pwd, framework_relative_path)
61+
command = "#{bitcode_strip_path} #{framework_path} -r -o #{framework_path}"
62+
puts "Stripping bitcode: #{command}"
63+
system(command)
64+
end
65+
66+
# 정확한 경로 반영
67+
framework_paths = [
68+
# NMapsMap 경로
69+
"Pods/NMapsMap-Legacy/framework/NMapsMap.xcframework/ios-arm64/NMapsMap.framework/NMapsMap",
70+
"Pods/NMapsMap-Legacy/framework/NMapsMap.xcframework/ios-arm64_x86_64-simulator/NMapsMap.framework/NMapsMap",
71+
72+
# NMapsGeometry 경로
73+
"Pods/NMapsGeometry/framework/NMapsGeometry.xcframework/ios-arm64/NMapsGeometry.framework/NMapsGeometry",
74+
"Pods/NMapsGeometry/framework/NMapsGeometry.xcframework/ios-arm64_x86_64-simulator/NMapsGeometry.framework/NMapsGeometry"
75+
]
76+
77+
framework_paths.each do |framework_relative_path|
78+
strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
79+
end
80+
end

Runnect-iOS/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1530,6 +1530,6 @@ SPEC CHECKSUMS:
15301530
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25
15311531
Then: 844265ae87834bbe1147d91d5d41a404da2ec27d
15321532

1533-
PODFILE CHECKSUM: 21b932758a1b75c9599a5f3ac14058aa0e7b7492
1533+
PODFILE CHECKSUM: c665182796e576cc5809d905a90f88a0e5ed9d67
15341534

15351535
COCOAPODS: 1.15.0

Runnect-iOS/Runnect-iOS.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1700,7 +1700,7 @@
17001700
CODE_SIGN_ENTITLEMENTS = "Runnect-iOS/Runnect-iOSDebug.entitlements";
17011701
CODE_SIGN_IDENTITY = "Apple Development";
17021702
CODE_SIGN_STYLE = Automatic;
1703-
CURRENT_PROJECT_VERSION = 2024.0402.1647;
1703+
CURRENT_PROJECT_VERSION = 2024.1128.0304;
17041704
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
17051705
GENERATE_INFOPLIST_FILE = NO;
17061706
INFOPLIST_FILE = "Runnect-iOS/Info.plist";
@@ -1718,7 +1718,7 @@
17181718
"$(inherited)",
17191719
"@executable_path/Frameworks",
17201720
);
1721-
MARKETING_VERSION = 1.0.5;
1721+
MARKETING_VERSION = 2.1.0;
17221722
PRODUCT_BUNDLE_IDENTIFIER = "com.runnect.Runnect-iOS";
17231723
PRODUCT_NAME = "$(TARGET_NAME)";
17241724
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1741,7 +1741,7 @@
17411741
CODE_SIGN_ENTITLEMENTS = "Runnect-iOS/Runnect-iOS.entitlements";
17421742
CODE_SIGN_IDENTITY = "Apple Development";
17431743
CODE_SIGN_STYLE = Automatic;
1744-
CURRENT_PROJECT_VERSION = 2024.0402.1647;
1744+
CURRENT_PROJECT_VERSION = 2024.1128.0304;
17451745
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
17461746
GENERATE_INFOPLIST_FILE = NO;
17471747
INFOPLIST_FILE = "Runnect-iOS/Info.plist";
@@ -1759,7 +1759,7 @@
17591759
"$(inherited)",
17601760
"@executable_path/Frameworks",
17611761
);
1762-
MARKETING_VERSION = 1.0.5;
1762+
MARKETING_VERSION = 2.1.0;
17631763
PRODUCT_BUNDLE_IDENTIFIER = "com.runnect.Runnect-iOS";
17641764
PRODUCT_NAME = "$(TARGET_NAME)";
17651765
PROVISIONING_PROFILE_SPECIFIER = "";

Runnect-iOS/Runnect-iOS/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundlePackageType</key>
2222
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>2.0.3</string>
24+
<string>2.1.0</string>
2525
<key>CFBundleURLTypes</key>
2626
<array>
2727
<dict>
@@ -46,7 +46,7 @@
4646
</dict>
4747
</array>
4848
<key>CFBundleVersion</key>
49-
<string>2024.0402.1647</string>
49+
<string>2024.1128.0304</string>
5050
<key>LSApplicationQueriesSchemes</key>
5151
<array>
5252
<string>kakaokompassauth</string>

0 commit comments

Comments
 (0)