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
2 changes: 2 additions & 0 deletions Runnect-iOS/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ target 'Runnect-iOS' do
pod 'KakaoSDKShare'
pod 'KakaoSDKTemplate'
pod 'FirebaseDynamicLinks'
pod 'KakaoSDKTalk'
pod 'DropDown', :git => 'https://github.com/thingineeer/DropDown.git', :commit => '95ee36f7bd925d466033c2c169979f1c574bf3b9'


# Pods for Runnect-iOS
Expand Down
21 changes: 20 additions & 1 deletion Runnect-iOS/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
PODS:
- Alamofire (5.7.1)
- DropDown (2.3.13)
- FirebaseCore (10.14.0):
- FirebaseCoreInternal (~> 10.0)
- GoogleUtilities/Environment (~> 7.8)
Expand All @@ -25,6 +26,9 @@ PODS:
- KakaoSDKShare (2.16.0):
- KakaoSDKCommon (= 2.16.0)
- KakaoSDKTemplate (= 2.16.0)
- KakaoSDKTalk (2.16.0):
- KakaoSDKTemplate (= 2.16.0)
- KakaoSDKUser (= 2.16.0)
- KakaoSDKTemplate (2.16.0):
- KakaoSDKCommon/Common (= 2.16.0)
- KakaoSDKUser (2.16.0):
Expand All @@ -42,10 +46,12 @@ PODS:
- Then (3.0.0)

DEPENDENCIES:
- DropDown (from `https://github.com/thingineeer/DropDown.git`, commit `95ee36f7bd925d466033c2c169979f1c574bf3b9`)
- FirebaseDynamicLinks
- KakaoSDKAuth
- KakaoSDKCommon
- KakaoSDKShare
- KakaoSDKTalk
- KakaoSDKTemplate
- KakaoSDKUser
- Kingfisher (~> 7.0)
Expand All @@ -64,6 +70,7 @@ SPEC REPOS:
- KakaoSDKAuth
- KakaoSDKCommon
- KakaoSDKShare
- KakaoSDKTalk
- KakaoSDKTemplate
- KakaoSDKUser
- Kingfisher
Expand All @@ -74,15 +81,27 @@ SPEC REPOS:
- SnapKit
- Then

EXTERNAL SOURCES:
DropDown:
:commit: 95ee36f7bd925d466033c2c169979f1c574bf3b9
:git: https://github.com/thingineeer/DropDown.git

CHECKOUT OPTIONS:
DropDown:
:commit: 95ee36f7bd925d466033c2c169979f1c574bf3b9
:git: https://github.com/thingineeer/DropDown.git

SPEC CHECKSUMS:
Alamofire: 0123a34370cb170936ae79a8df46cc62b2edeb88
DropDown: bf260fd688978138019ad7d94f63a2362dad85ba
FirebaseCore: 6fc17ac9f03509d51c131298aacb3ee5698b4f02
FirebaseCoreInternal: d558159ee6cc4b823c2296ecc193de9f6d9a5bb3
FirebaseDynamicLinks: 0eaabff2d0e5d0e576c0227227b00771aa2f3aaf
GoogleUtilities: 13e2c67ede716b8741c7989e26893d151b2b2084
KakaoSDKAuth: 1b85ed7c41b0517bfd1fc9dc46c292c75b8cb610
KakaoSDKCommon: d6579aa2e9d963d74e13d741cbf1cce48b8b0c17
KakaoSDKShare: efc0415c4f33274232604eeaf96fb03641facdca
KakaoSDKTalk: 44545bd9a1ebc144795eb6e927960b10cf8252f5
KakaoSDKTemplate: 7e478a3cda6f5879b475546bfcd667b464fbb6d0
KakaoSDKUser: 427e5b3884abd19ee6d9a7bd6e3f3029eb2968b8
Kingfisher: 59f908b6d2f403b0a3e539debb0eec05cb27002c
Expand All @@ -93,6 +112,6 @@ SPEC CHECKSUMS:
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25
Then: 844265ae87834bbe1147d91d5d41a404da2ec27d

PODFILE CHECKSUM: 43e89e9e217761b44c0c7e93fb4abfab29a82ece
PODFILE CHECKSUM: 5bd73b39108f7bc1302e8303d79fefc7783805a5

COCOAPODS: 1.12.1
1 change: 1 addition & 0 deletions Runnect-iOS/Runnect-iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<array>
<string>kakaokompassauth</string>
<string>kakaolink</string>
<string>kakaoplus</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import UIKit
import SnapKit
import Then
import Moya
import KakaoSDKTalk
import KakaoSDKUser

final class MyPageVC: UIViewController {

Expand Down Expand Up @@ -254,7 +256,8 @@ extension MyPageVC {

@objc
private func touchUpkakaoChannelAsk() {
if let url = URL(string: "https://pf.kakao.com/_hXduG") {

if let url = TalkApi.shared.makeUrlForChannelChat(channelPublicId: "_hXduG") {
UIApplication.shared.open(url)
}
}
Expand Down