Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit d5b8b03

Browse files
author
Liubov Danilina
committed
iOS to compile
1 parent cccade0 commit d5b8b03

File tree

8 files changed

+42
-785
lines changed

8 files changed

+42
-785
lines changed

examples/mobile/ios/.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1.2

examples/mobile/ios/.xcode.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export NODE_BINARY=$(command -v node)

examples/mobile/ios/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
source "https://rubygems.org"
22

3-
ruby '3.1.2'
3+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
44

55
gem "fastlane"
66
gem "xcode-install"
7-
gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git'
7+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'
88
gem 'cocoapods-core', :git => 'https://github.com/CocoaPods/Core.git'
99

1010
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')

examples/mobile/ios/Gemfile.lock

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
1-
GIT
2-
remote: https://github.com/CocoaPods/CocoaPods.git
3-
revision: f5ea2cf05f562428830d7d9288020c01f46628bc
4-
specs:
5-
cocoapods (1.11.3)
6-
addressable (~> 2.8)
7-
claide (>= 1.0.2, < 2.0)
8-
cocoapods-core (= 1.11.3)
9-
cocoapods-deintegrate (>= 1.0.3, < 2.0)
10-
cocoapods-downloader (>= 1.6.0, < 2.0)
11-
cocoapods-plugins (>= 1.0.0, < 2.0)
12-
cocoapods-search (>= 1.0.0, < 2.0)
13-
cocoapods-trunk (>= 1.6.0, < 2.0)
14-
cocoapods-try (>= 1.1.0, < 2.0)
15-
colored2 (~> 3.1)
16-
escape (~> 0.0.4)
17-
fourflusher (>= 2.3.0, < 3.0)
18-
gh_inspector (~> 1.0)
19-
molinillo (~> 0.8.0)
20-
nap (~> 1.0)
21-
ruby-macho (>= 2.3.0, < 3.0)
22-
xcodeproj (>= 1.21.0, < 2.0)
23-
241
GIT
252
remote: https://github.com/CocoaPods/Core.git
263
revision: c6ac388ee43f0782fdb8e32386f41f96dbe29082
@@ -72,6 +49,24 @@ GEM
7249
aws-eventstream (~> 1, >= 1.0.2)
7350
babosa (1.0.4)
7451
claide (1.1.0)
52+
cocoapods (1.11.3)
53+
addressable (~> 2.8)
54+
claide (>= 1.0.2, < 2.0)
55+
cocoapods-core (= 1.11.3)
56+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
57+
cocoapods-downloader (>= 1.4.0, < 2.0)
58+
cocoapods-plugins (>= 1.0.0, < 2.0)
59+
cocoapods-search (>= 1.0.0, < 2.0)
60+
cocoapods-trunk (>= 1.4.0, < 2.0)
61+
cocoapods-try (>= 1.1.0, < 2.0)
62+
colored2 (~> 3.1)
63+
escape (~> 0.0.4)
64+
fourflusher (>= 2.3.0, < 3.0)
65+
gh_inspector (~> 1.0)
66+
molinillo (~> 0.8.0)
67+
nap (~> 1.0)
68+
ruby-macho (>= 1.0, < 3.0)
69+
xcodeproj (>= 1.21.0, < 2.0)
7570
cocoapods-deintegrate (1.0.5)
7671
cocoapods-downloader (1.6.3)
7772
cocoapods-plugins (1.0.0)
@@ -289,9 +284,10 @@ GEM
289284

290285
PLATFORMS
291286
universal-darwin-21
287+
x86_64-darwin-22
292288

293289
DEPENDENCIES
294-
cocoapods!
290+
cocoapods (~> 1.11, >= 1.11.3)
295291
cocoapods-core!
296292
fastlane
297293
fastlane-plugin-firebase_app_distribution

examples/mobile/ios/Podfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
require_relative '../node_modules/react-native/scripts/react_native_pods'
22
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
33

4-
platform :ios, min_ios_version_supported
4+
platform :ios, '12.4'
55
prepare_react_native_project!
66

77
# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
@@ -43,6 +43,11 @@ target 'DolbyIOVideoCall' do
4343
:app_path => "#{Pod::Config.instance.installation_root}/.."
4444
)
4545

46+
permissions_path = '../node_modules/react-native-permissions/ios'
47+
pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
48+
49+
# pod 'FirebaseAppDistribution'
50+
4651
target 'DolbyIOVideoCallTests' do
4752
inherit! :complete
4853
# Pods for testing

0 commit comments

Comments
 (0)