Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 540bf88

Browse files
authored
enhancement/new-webrtc (#532)
* update * new * make * update
1 parent d72f1c6 commit 540bf88

File tree

6 files changed

+10
-1705
lines changed

6 files changed

+10
-1705
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#
33
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
44

5+
*.xcframework
6+
57
# xcode noise
68
build/*
79
*.pbxuser

Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ ifeq ($(shell uname),Darwin)
1313
endif
1414
endif
1515

16-
setup:
17-
tuist generate -P
18-
1916
install_deps:
20-
pod install
21-
ifneq ($(XCPRETTY_STATUS),0)
22-
@echo "xcpretty not found: Run \`gem install xcpretty\` for nicer xcodebuild output.\n"
23-
endif
17+
rm -rf WebRTC.xcframework
18+
curl https://github.com/stasel/WebRTC/releases/download/90.0.0/WebRTC-M90.xcframework.zip -O -J -L
19+
unzip WebRTC-M90.xcframework.zip
20+
21+
setup: install_deps
22+
tuist generate -P
2423

2524
clean:
2625
rm -rf .build $(APP).xcodeproj $(APP).xcworkspace Package.pins Pods Podfile.lock

Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ target 'Soapbox' do
66
use_frameworks!
77

88
# Pods for trollbox
9-
pod 'GoogleWebRTC'
109
pod 'Alamofire'
1110
pod 'SwiftProtobuf'
1211
pod 'DrawerView', git: '[email protected]:SoapboxSocial/DrawerView.git', commit: 'b0f4ad7ac60e0a5cfe089e55995115ccb7893d01'

Podfile.lock

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ PODS:
66
- BetterSegmentedControl (2.0.1)
77
- DrawerView (1.3.3)
88
- EasyTipView (2.1.0)
9-
- GoogleWebRTC (1.1.31999)
109
- GSImageViewerController (1.6.3)
1110
- KDCircularProgress (1.5.4)
1211
- KeychainAccess (4.2.2)
@@ -28,7 +27,6 @@ DEPENDENCIES:
2827
- BetterSegmentedControl (~> 2.0)
2928
- "DrawerView (from `[email protected]:SoapboxSocial/DrawerView.git`, commit `b0f4ad7ac60e0a5cfe089e55995115ccb7893d01`)"
3029
- EasyTipView
31-
- GoogleWebRTC
3230
- GSImageViewerController
3331
- KDCircularProgress
3432
- KeychainAccess
@@ -46,7 +44,6 @@ SPEC REPOS:
4644
- AlamofireImage
4745
- BetterSegmentedControl
4846
- EasyTipView
49-
- GoogleWebRTC
5047
- GSImageViewerController
5148
- KDCircularProgress
5249
- KeychainAccess
@@ -80,7 +77,6 @@ SPEC CHECKSUMS:
8077
BetterSegmentedControl: 09607b27861d49cbce48b7673b74f9150a3d371a
8178
DrawerView: 41c5e5d6593d86335ee2cf9b18d738835593dbc1
8279
EasyTipView: a92b6edc377b81c5ac18e9fd35d5ee78e9409488
83-
GoogleWebRTC: b39a78c4f5cc6b0323415b9233db03a2faa7b0f0
8480
GSImageViewerController: 20a257d7e3dd9ee171c2dfea659992eba2761839
8581
KDCircularProgress: 98200c6b8e85d22bc04eb644721d3b1e12b0686b
8682
KeychainAccess: c0c4f7f38f6fc7bbe58f5702e25f7bd2f65abf51
@@ -93,6 +89,6 @@ SPEC CHECKSUMS:
9389
SwiftProtobuf: 4e16842b83c6fda06b10fac50d73b3f1fce8ab7b
9490
UIWindowTransitions: 2237083382e11f100db7de934041bba0c4669c86
9591

96-
PODFILE CHECKSUM: ec516e32bc7f02b2b6c4e23d0708fd86c4453e26
92+
PODFILE CHECKSUM: a3326625314027ca9400b4e1af13d652f700ef54
9793

9894
COCOAPODS: 1.10.1

Project.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ let project = Project(
3434
resources: ["Resources/**", "Configurations/*", "Entitlements/*", "Assets.xcassets", "Localization/**/*.strings"],
3535
dependencies: [
3636
.cocoapods(path: "."),
37+
.xcFramework(path: "./WebRTC.xcframework")
3738
],
3839
settings: settings
3940
),

0 commit comments

Comments
 (0)