Skip to content

Commit e036a12

Browse files
authored
Merge pull request #1 from thingineeer/feature/v2.3.0-release
fix: 코스 발견 배너 이미지 미표시 수정
2 parents 1e99f23 + d36e18a commit e036a12

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3025
-452
lines changed

.gitignore

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Claude Code
2+
.claude/
3+
CLAUDE.md
4+
15
# Created by https://www.toptal.com/developers/gitignore/api/xcode,swift,cocoapods
26
# Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift,cocoapods
37

@@ -130,4 +134,13 @@ Info.plist
130134
### dynamicLink ###
131135
Runnect-iOS/Runnect-iOS/GoogleService-Info.plist
132136
Runnect-iOS/GoogleService-Info.plist
133-
GoogleService-Info.plist
137+
GoogleService-Info.plist
138+
139+
### Firebase Hosting ###
140+
.firebase/
141+
firebase-debug.log
142+
143+
### Cursor ###
144+
.cursor/
145+
.cursorignore
146+
.cursorindexingignore

Runnect-iOS/.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "runnect-ios"
4+
}
5+
}

Runnect-iOS/Podfile

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
# Uncomment the next line to define a global platform for your project
22
platform :ios, '14.0'
33

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

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

12-
pod 'NMapsMap-Legacy'
1310
pod 'Kingfisher', '~> 7.0'
1411
pod 'SnapKit', '~> 5.6.0'
1512
pod 'Moya', '~> 15.0'
@@ -19,14 +16,14 @@ target 'Runnect-iOS' do
1916
pod 'KakaoSDKUser'
2017
pod 'KakaoSDKShare'
2118
pod 'KakaoSDKTemplate'
22-
pod 'FirebaseDynamicLinks'
2319
pod 'KakaoSDKTalk'
2420
pod 'DropDown', :git => 'https://github.com/thingineeer/DropDown.git', :commit => '95ee36f7bd925d466033c2c169979f1c574bf3b9'
2521
pod 'CombineCocoa'
2622
pod 'FirebaseAnalytics'
2723
pod 'FirebaseAuth'
2824
pod 'FirebaseFirestore'
29-
pod 'Firebase/RemoteConfig'
25+
pod 'Firebase/RemoteConfig'
26+
pod 'Google-Mobile-Ads-SDK'
3027
end
3128

3229
# Pods for Runnect-iOS
@@ -54,27 +51,4 @@ post_install do |installer|
5451
end
5552
end
5653

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
8054
end

Runnect-iOS/Podfile.lock

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1235,6 +1235,8 @@ PODS:
12351235
- "GoogleUtilities/NSData+zlib (~> 8.0)"
12361236
- FirebaseRemoteConfigInterop (11.5.0)
12371237
- FirebaseSharedSwift (11.5.0)
1238+
- Google-Mobile-Ads-SDK (11.12.0):
1239+
- GoogleUserMessagingPlatform (>= 1.1)
12381240
- GoogleAppMeasurement (11.5.0):
12391241
- GoogleAppMeasurement/AdIdSupport (= 11.5.0)
12401242
- GoogleUtilities/AppDelegateSwizzler (~> 8.0)
@@ -1255,6 +1257,7 @@ PODS:
12551257
- GoogleUtilities/Network (~> 8.0)
12561258
- "GoogleUtilities/NSData+zlib (~> 8.0)"
12571259
- nanopb (~> 3.30910.0)
1260+
- GoogleUserMessagingPlatform (2.7.0)
12581261
- GoogleUtilities/AppDelegateSwizzler (8.0.2):
12591262
- GoogleUtilities/Environment
12601263
- GoogleUtilities/Logger
@@ -1403,9 +1406,6 @@ PODS:
14031406
- nanopb/encode (= 3.30910.0)
14041407
- nanopb/decode (3.30910.0)
14051408
- nanopb/encode (3.30910.0)
1406-
- NMapsGeometry (1.0.2)
1407-
- NMapsMap-Legacy (3.17.0):
1408-
- NMapsGeometry
14091409
- PromisesObjC (2.4.0)
14101410
- RecaptchaInterop (100.0.0)
14111411
- SnapKit (5.6.0)
@@ -1419,6 +1419,7 @@ DEPENDENCIES:
14191419
- FirebaseAuth
14201420
- FirebaseDynamicLinks
14211421
- FirebaseFirestore
1422+
- Google-Mobile-Ads-SDK
14221423
- KakaoSDKAuth
14231424
- KakaoSDKCommon
14241425
- KakaoSDKShare
@@ -1427,7 +1428,6 @@ DEPENDENCIES:
14271428
- KakaoSDKUser
14281429
- Kingfisher (~> 7.0)
14291430
- Moya (~> 15.0)
1430-
- NMapsMap-Legacy
14311431
- SnapKit (~> 5.6.0)
14321432
- Then
14331433

@@ -1453,7 +1453,9 @@ SPEC REPOS:
14531453
- FirebaseRemoteConfig
14541454
- FirebaseRemoteConfigInterop
14551455
- FirebaseSharedSwift
1456+
- Google-Mobile-Ads-SDK
14561457
- GoogleAppMeasurement
1458+
- GoogleUserMessagingPlatform
14571459
- GoogleUtilities
14581460
- "gRPC-C++"
14591461
- gRPC-Core
@@ -1468,13 +1470,10 @@ SPEC REPOS:
14681470
- leveldb-library
14691471
- Moya
14701472
- nanopb
1471-
- NMapsGeometry
14721473
- PromisesObjC
14731474
- RecaptchaInterop
14741475
- SnapKit
14751476
- Then
1476-
https://github.com/navermaps/NMapsMapLegacySpecs.git:
1477-
- NMapsMap-Legacy
14781477

14791478
EXTERNAL SOURCES:
14801479
DropDown:
@@ -1508,7 +1507,9 @@ SPEC CHECKSUMS:
15081507
FirebaseRemoteConfig: 9c06ced90c1561c18ccfc258e2548371eb3a7137
15091508
FirebaseRemoteConfigInterop: 7a7aebb9342d53913a5c890efa88e289d9e5c1bc
15101509
FirebaseSharedSwift: 302ac5967857ad7e7388b15382d705b8c8d892aa
1510+
Google-Mobile-Ads-SDK: 3a76704456669fbed2057efc8bdb99050ad0e3fb
15111511
GoogleAppMeasurement: ee5c2d2242816773fbf79e5b0563f5355ef1c315
1512+
GoogleUserMessagingPlatform: a8b56893477f67212fbc8411c139e61d463349f5
15121513
GoogleUtilities: 26a3abef001b6533cf678d3eb38fd3f614b7872d
15131514
"gRPC-C++": 2fa52b3141e7789a28a737f251e0c45b4cb20a87
15141515
gRPC-Core: a27c294d6149e1c39a7d173527119cfbc3375ce4
@@ -1523,13 +1524,11 @@ SPEC CHECKSUMS:
15231524
leveldb-library: cc8b8f8e013647a295ad3f8cd2ddf49a6f19be19
15241525
Moya: 138f0573e53411fb3dc17016add0b748dfbd78ee
15251526
nanopb: fad817b59e0457d11a5dfbde799381cd727c1275
1526-
NMapsGeometry: 4e02554fa9880ef02ed96b075dc84355d6352479
1527-
NMapsMap-Legacy: 528860cccfa3450eee2d658b5d058ede85b01234
15281527
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
15291528
RecaptchaInterop: 7d1a4a01a6b2cb1610a47ef3f85f0c411434cb21
15301529
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25
15311530
Then: 844265ae87834bbe1147d91d5d41a404da2ec27d
15321531

1533-
PODFILE CHECKSUM: c665182796e576cc5809d905a90f88a0e5ed9d67
1532+
PODFILE CHECKSUM: 26bfd41a8069c7b123fa093a3210e1b1ca878377
15341533

1535-
COCOAPODS: 1.15.0
1534+
COCOAPODS: 1.16.2
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"color-space" : "srgb",
6+
"components" : {
7+
"alpha" : "1.000",
8+
"blue" : "0.925",
9+
"green" : "0.243",
10+
"red" : "0.349"
11+
}
12+
},
13+
"idiom" : "universal"
14+
}
15+
],
16+
"info" : {
17+
"author" : "xcode",
18+
"version" : 1
19+
}
20+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"platform" : "watchos",
6+
"size" : "1024x1024"
7+
}
8+
],
9+
"info" : {
10+
"author" : "xcode",
11+
"version" : 1
12+
}
13+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
}
6+
}

0 commit comments

Comments
 (0)