From 05b546d0af43453331e818e233b30cec78b05bbc Mon Sep 17 00:00:00 2001 From: LeeMyeongJin Date: Tue, 19 Nov 2024 21:42:58 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[Setting]=20#224=20-=20=EC=9D=BC=EB=B6=80?= =?UTF-8?q?=20Amplitude=20=EC=B6=94=EC=A0=81=20Event=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Profile/ViewController/ProfileViewController.swift | 1 + .../Search/ViewController/SearchViewController.swift | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Terning-iOS/Terning-iOS/Source/Presentation/Profile/ViewController/ProfileViewController.swift b/Terning-iOS/Terning-iOS/Source/Presentation/Profile/ViewController/ProfileViewController.swift index 38e6440d..73640359 100644 --- a/Terning-iOS/Terning-iOS/Source/Presentation/Profile/ViewController/ProfileViewController.swift +++ b/Terning-iOS/Terning-iOS/Source/Presentation/Profile/ViewController/ProfileViewController.swift @@ -95,6 +95,7 @@ extension ProfileViewController { } private func pushToWelcome() { + track(eventName: .clickStartService) let welcomeViewController = WelcomeViewController(viewType: .first) OnboardingData.shared.userName = self.userName self.navigationController?.pushViewController(welcomeViewController, animated: true) diff --git a/Terning-iOS/Terning-iOS/Source/Presentation/Search/ViewController/SearchViewController.swift b/Terning-iOS/Terning-iOS/Source/Presentation/Search/ViewController/SearchViewController.swift index 1ec8c151..d05db468 100644 --- a/Terning-iOS/Terning-iOS/Source/Presentation/Search/ViewController/SearchViewController.swift +++ b/Terning-iOS/Terning-iOS/Source/Presentation/Search/ViewController/SearchViewController.swift @@ -374,6 +374,8 @@ extension SearchViewController: UICollectionViewDelegate { if collectionView == rootView.advertisementCollectionView { let advertisement = viewModel.advertisements[indexPath.item] + + track(eventName: .clickQuestBanner, eventProperties: ["배너 위치": "\(indexPath.item + 1) 번째 배너 클릭"]) if let url = URL(string: advertisement.link) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } From d2ad8e0792dd59c0c6c228cdd576b90482e8fcda Mon Sep 17 00:00:00 2001 From: LeeMyeongJin Date: Tue, 19 Nov 2024 21:57:52 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[Setting]=20#224=20-=20v1.0.4=20=EB=B0=B0?= =?UTF-8?q?=ED=8F=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj | 8 ++++---- Terning-iOS/Terning-iOS/Info.plist | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj b/Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj index 00b89923..10299230 100644 --- a/Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj +++ b/Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj @@ -1736,7 +1736,7 @@ CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2024.1028.0142; + CURRENT_PROJECT_VERSION = 2024.1119.2145; DEVELOPMENT_TEAM = 8Q4H7X3Q58; ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = YES; @@ -1751,7 +1751,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.3; + MARKETING_VERSION = 1.0.4; OTHER_LDFLAGS = ( "-Xlinker", "-interposable", @@ -1776,7 +1776,7 @@ CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2024.1028.0142; + CURRENT_PROJECT_VERSION = 2024.1119.2145; DEVELOPMENT_TEAM = 8Q4H7X3Q58; ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = YES; @@ -1791,7 +1791,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.3; + MARKETING_VERSION = 1.0.4; PRODUCT_BUNDLE_IDENTIFIER = "com.terning.Terning-iOS"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/Terning-iOS/Terning-iOS/Info.plist b/Terning-iOS/Terning-iOS/Info.plist index 34a5e8e6..8c776254 100644 --- a/Terning-iOS/Terning-iOS/Info.plist +++ b/Terning-iOS/Terning-iOS/Info.plist @@ -5,9 +5,9 @@ CFBundleDisplayName terning CFBundleShortVersionString - 1.0.3 + 1.0.4 CFBundleVersion - 2024.1028.0142 + 2024.1119.2145 ITSAppUsesNonExemptEncryption CFBundleURLTypes From 934c447ae9d2fd495c5a486f76b4354a3aa4a7a9 Mon Sep 17 00:00:00 2001 From: LeeMyeongJin Date: Tue, 19 Nov 2024 22:00:51 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[Docs]=20#224=20-=20=EC=95=B1=EC=8A=A4?= =?UTF-8?q?=ED=86=A0=EC=96=B4=20=EB=B2=84=EC=A0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 361c3a29..bb18b548 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # 👔 terning 터닝 - 대학생 인턴, 공고 관리 캘린더 -## 앱스토어 링크 : [앱스토어](https://apps.apple.com/kr/app/terning-%ED%84%B0%EB%8B%9D-%EB%8C%80%ED%95%99%EC%83%9D-%EC%9D%B8%ED%84%B4-%EA%B3%B5%EA%B3%A0-%EA%B4%80%EB%A6%AC-%EC%BA%98%EB%A6%B0%EB%8D%94/id6547866420) v1.0.3 +## 앱스토어 링크 : [앱스토어](https://apps.apple.com/kr/app/terning-%ED%84%B0%EB%8B%9D-%EB%8C%80%ED%95%99%EC%83%9D-%EC%9D%B8%ED%84%B4-%EA%B3%B5%EA%B3%A0-%EA%B4%80%EB%A6%AC-%EC%BA%98%EB%A6%B0%EB%8D%94/id6547866420) v1.0.4

**내 계획에 딱 맞는 대학생 인턴의 시작, 터닝** @@ -126,7 +126,7 @@ -## *📖 Development Environment and Using Library** +## **📖 Development Environment and Using Library** - Development Environment

@@ -150,6 +150,7 @@ KakaoSDK | 카카오 소셜 로그인 구현 | 2.22.4 | SPM Inject | SwiftUI 처럼 뷰 디버깅 | 1.5.2 | SPM Lottie | 애니메이션 구현 | 4.5.0 | SPM + Amplitude | 데이터 분석 | 1.9.4 | SPM
- 🧱 framework