Skip to content

Commit 951faf5

Browse files
author
Petter Hesselberg
committed
Update iOS to 0.60.5
1 parent 44ac41f commit 951faf5

File tree

9 files changed

+281
-703
lines changed

9 files changed

+281
-703
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ DerivedData
2323
*.ipa
2424
*.xcuserstate
2525

26+
# CocoaPods
27+
ios/Pods/
28+
2629
# Android/IntelliJ
2730
#
2831
build/
@@ -52,3 +55,6 @@ buck-out/
5255
fastlane/report.xml
5356
fastlane/Preview.html
5457
fastlane/screenshots
58+
59+
# Visual Studio Code
60+
.vscode/

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ The `TextInput` box appears only in the Android version. Since both platforms us
6363

6464
### iOS
6565

66-
* Open the xOS project in Xcode and run it. This automatically starts a bundler.
66+
* Open the iOS project in Xcode: `open Activity.xcworkspace`.
67+
* Run the Activity application.
6768

6869
<!-- markdownlint-enable MD031 -->
6970

ios.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ steps:
2727
configuration: 'Debug'
2828
scheme: 'Activity'
2929
sdk: 'iphoneos'
30-
xcWorkspacePath: '**/Activity.xcodeproj/project.xcworkspace'
30+
xcWorkspacePath: '**/Activity.xcworkspace'
3131
xcodeVersion: 'default' # Options: 8, 9, 10, default, specifyPath

ios/Activity.xcodeproj/project.pbxproj

Lines changed: 45 additions & 700 deletions
Large diffs are not rendered by default.

ios/Activity.xcodeproj/xcshareddata/xcschemes/Activity.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1030"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "NO"

ios/Activity.xcworkspace/contents.xcworkspacedata

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

ios/Podfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
platform :ios, '9.1'
2+
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3+
target 'Activity' do
4+
# Pods for Activity
5+
pod 'React', :path => '../node_modules/react-native/'
6+
pod 'React-Core', :path => '../node_modules/react-native/React'
7+
pod 'React-DevSupport', :path => '../node_modules/react-native/React'
8+
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
9+
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
10+
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
11+
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
12+
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
13+
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
14+
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
15+
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
16+
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
17+
pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket'
18+
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
19+
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
20+
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
21+
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
22+
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
23+
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
24+
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
25+
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
26+
use_native_modules!
27+
end

ios/Podfile.lock

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
PODS:
2+
- boost-for-react-native (1.63.0)
3+
- DoubleConversion (1.1.6)
4+
- Folly (2018.10.22.00):
5+
- boost-for-react-native
6+
- DoubleConversion
7+
- Folly/Default (= 2018.10.22.00)
8+
- glog
9+
- Folly/Default (2018.10.22.00):
10+
- boost-for-react-native
11+
- DoubleConversion
12+
- glog
13+
- glog (0.3.5)
14+
- React (0.60.5):
15+
- React-Core (= 0.60.5)
16+
- React-DevSupport (= 0.60.5)
17+
- React-RCTActionSheet (= 0.60.5)
18+
- React-RCTAnimation (= 0.60.5)
19+
- React-RCTBlob (= 0.60.5)
20+
- React-RCTImage (= 0.60.5)
21+
- React-RCTLinking (= 0.60.5)
22+
- React-RCTNetwork (= 0.60.5)
23+
- React-RCTSettings (= 0.60.5)
24+
- React-RCTText (= 0.60.5)
25+
- React-RCTVibration (= 0.60.5)
26+
- React-RCTWebSocket (= 0.60.5)
27+
- React-Core (0.60.5):
28+
- Folly (= 2018.10.22.00)
29+
- React-cxxreact (= 0.60.5)
30+
- React-jsiexecutor (= 0.60.5)
31+
- yoga (= 0.60.5.React)
32+
- React-cxxreact (0.60.5):
33+
- boost-for-react-native (= 1.63.0)
34+
- DoubleConversion
35+
- Folly (= 2018.10.22.00)
36+
- glog
37+
- React-jsinspector (= 0.60.5)
38+
- React-DevSupport (0.60.5):
39+
- React-Core (= 0.60.5)
40+
- React-RCTWebSocket (= 0.60.5)
41+
- React-jsi (0.60.5):
42+
- boost-for-react-native (= 1.63.0)
43+
- DoubleConversion
44+
- Folly (= 2018.10.22.00)
45+
- glog
46+
- React-jsi/Default (= 0.60.5)
47+
- React-jsi/Default (0.60.5):
48+
- boost-for-react-native (= 1.63.0)
49+
- DoubleConversion
50+
- Folly (= 2018.10.22.00)
51+
- glog
52+
- React-jsiexecutor (0.60.5):
53+
- DoubleConversion
54+
- Folly (= 2018.10.22.00)
55+
- glog
56+
- React-cxxreact (= 0.60.5)
57+
- React-jsi (= 0.60.5)
58+
- React-jsinspector (0.60.5)
59+
- React-RCTActionSheet (0.60.5):
60+
- React-Core (= 0.60.5)
61+
- React-RCTAnimation (0.60.5):
62+
- React-Core (= 0.60.5)
63+
- React-RCTBlob (0.60.5):
64+
- React-Core (= 0.60.5)
65+
- React-RCTNetwork (= 0.60.5)
66+
- React-RCTWebSocket (= 0.60.5)
67+
- React-RCTImage (0.60.5):
68+
- React-Core (= 0.60.5)
69+
- React-RCTNetwork (= 0.60.5)
70+
- React-RCTLinking (0.60.5):
71+
- React-Core (= 0.60.5)
72+
- React-RCTNetwork (0.60.5):
73+
- React-Core (= 0.60.5)
74+
- React-RCTSettings (0.60.5):
75+
- React-Core (= 0.60.5)
76+
- React-RCTText (0.60.5):
77+
- React-Core (= 0.60.5)
78+
- React-RCTVibration (0.60.5):
79+
- React-Core (= 0.60.5)
80+
- React-RCTWebSocket (0.60.5):
81+
- React-Core (= 0.60.5)
82+
- yoga (0.60.5.React)
83+
84+
DEPENDENCIES:
85+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
86+
- Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
87+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
88+
- React (from `../node_modules/react-native/`)
89+
- React-Core (from `../node_modules/react-native/React`)
90+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
91+
- React-DevSupport (from `../node_modules/react-native/React`)
92+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
93+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
94+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
95+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
96+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
97+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
98+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
99+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
100+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
101+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
102+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
103+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
104+
- React-RCTWebSocket (from `../node_modules/react-native/Libraries/WebSocket`)
105+
- yoga (from `../node_modules/react-native/ReactCommon/yoga`)
106+
107+
SPEC REPOS:
108+
https://github.com/cocoapods/specs.git:
109+
- boost-for-react-native
110+
111+
EXTERNAL SOURCES:
112+
DoubleConversion:
113+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
114+
Folly:
115+
:podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
116+
glog:
117+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
118+
React:
119+
:path: "../node_modules/react-native/"
120+
React-Core:
121+
:path: "../node_modules/react-native/React"
122+
React-cxxreact:
123+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
124+
React-DevSupport:
125+
:path: "../node_modules/react-native/React"
126+
React-jsi:
127+
:path: "../node_modules/react-native/ReactCommon/jsi"
128+
React-jsiexecutor:
129+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
130+
React-jsinspector:
131+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
132+
React-RCTActionSheet:
133+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
134+
React-RCTAnimation:
135+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
136+
React-RCTBlob:
137+
:path: "../node_modules/react-native/Libraries/Blob"
138+
React-RCTImage:
139+
:path: "../node_modules/react-native/Libraries/Image"
140+
React-RCTLinking:
141+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
142+
React-RCTNetwork:
143+
:path: "../node_modules/react-native/Libraries/Network"
144+
React-RCTSettings:
145+
:path: "../node_modules/react-native/Libraries/Settings"
146+
React-RCTText:
147+
:path: "../node_modules/react-native/Libraries/Text"
148+
React-RCTVibration:
149+
:path: "../node_modules/react-native/Libraries/Vibration"
150+
React-RCTWebSocket:
151+
:path: "../node_modules/react-native/Libraries/WebSocket"
152+
yoga:
153+
:path: "../node_modules/react-native/ReactCommon/yoga"
154+
155+
SPEC CHECKSUMS:
156+
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
157+
DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
158+
Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51
159+
glog: 1f3da668190260b06b429bb211bfbee5cd790c28
160+
React: 53c53c4d99097af47cf60594b8706b4e3321e722
161+
React-Core: ba421f6b4f4cbe2fb17c0b6fc675f87622e78a64
162+
React-cxxreact: 8384287780c4999351ad9b6e7a149d9ed10a2395
163+
React-DevSupport: 197fb409737cff2c4f9986e77c220d7452cb9f9f
164+
React-jsi: 4d8c9efb6312a9725b18d6fc818ffc103f60fec2
165+
React-jsiexecutor: 90ad2f9db09513fc763bc757fdc3c4ff8bde2a30
166+
React-jsinspector: e08662d1bf5b129a3d556eb9ea343a3f40353ae4
167+
React-RCTActionSheet: b0f1ea83f4bf75fb966eae9bfc47b78c8d3efd90
168+
React-RCTAnimation: 359ba1b5690b1e87cc173558a78e82d35919333e
169+
React-RCTBlob: 5e2b55f76e9a1c7ae52b826923502ddc3238df24
170+
React-RCTImage: f5f1c50922164e89bdda67bcd0153952a5cfe719
171+
React-RCTLinking: d0ecbd791e9ddddc41fa1f66b0255de90e8ee1e9
172+
React-RCTNetwork: e26946300b0ab7bb6c4a6348090e93fa21f33a9d
173+
React-RCTSettings: d0d37cb521b7470c998595a44f05847777cc3f42
174+
React-RCTText: b074d89033583d4f2eb5faf7ea2db3a13c7553a2
175+
React-RCTVibration: 2105b2e0e2b66a6408fc69a46c8a7fb5b2fdade0
176+
React-RCTWebSocket: cd932a16b7214898b6b7f788c8bddb3637246ac4
177+
yoga: 312528f5bbbba37b4dcea5ef00e8b4033fdd9411
178+
179+
PODFILE CHECKSUM: d7ad5fbc71c9d1ffe43145aac502756d17700744
180+
181+
COCOAPODS: 1.6.1

0 commit comments

Comments
 (0)