Skip to content

Commit f1c65bd

Browse files
Allow parallelizeBuildables on iOS builds to improve build time (#1724)
### Description The purpose of this PR is to enable us to use "dependency order" for the "build order". This is the default setting for xcode 13 and also since RN 0.62. The benefits include better build performance through more parallelisation and reduced dependency cycle errors. <img width="1119" alt="Screenshot 2022-01-06 at 15 26 55" src="https://user-images.githubusercontent.com/20150449/148398069-443a0ef7-37b1-430a-aba0-d9813eb3cd3f.png"> To build in this way, dependencies need to require the `React-Core` pod instead of `React` . For this reason, many dependencies needed to be updated. Where possible I have updated to the latest versions, some libs were deprecated so I have updated to the new recommended option. Of note: - react-native-camera has been deprecated in favour of [react-native-vision-camera](https://github.com/mrousavy/react-native-vision-camera), however react-native-vision-camera seems to serve a different purpose and doesn't have the QR barcode scanning functionalities we are needing. I opted to upgrade to the latest version of react-native-camera even though it is deprecated, as we were one major version behind and the latest version did have the podspec change we need for this piece of work. - react-native-exit-app also seems a little abandoned, i used a commit hash because wumke/react-native-exit-app#45 (comment) New patches: - react-native-keep-awake is deprecated in favour of [expo-keep-awake](https://www.npmjs.com/package/expo-keep-awake), i opted to patch react-native-keep-awake since we don't have/want expo - react-native-sms/react-native-fast-crypto seem abandoned, i opted to patch instead of waiting for a new release with these 14 month old PRs [here](tkporter/react-native-sms#90) and [here](EdgeApp/react-native-fast-crypto#32) - clevertap-react-native doesn't have the podspec change we need in the latest release, so i have patched the existing version for now - react-native-securerandom seems abandoned, we are on the latest version. - react-native-svg we are on the latest version, there is a new pre-release that contains the fix we need but it has been on pre-release since 08/2021. there is an open [issue](software-mansion/react-native-svg#1683) to publish the pre-release so for now i have patched. - react-native-netinfo - after upgrading to the latest, the android CI started failing due to not correctly detecting the network connection status. rather than holding up the rest of this work, patch for now and investigate later. more context [here](https://valora-app.slack.com/archives/CL7BVQPHB/p1642086517037100) ### Other changes Unlink react-native-geth and react-native-securerandom to resolve the below build warning. This was actually pretty straightforward, didn't cause any problems. <img width="1292" alt="Screenshot 2022-01-07 at 14 23 48" src="https://user-images.githubusercontent.com/20150449/148552630-7fc1357e-fbd0-47fe-8367-54e98f0766bb.png"> ### Tested Manually ### How others should test A regression to see that app functionality hasn't been affected. e.g. QR scanning, app data persistence when force closing/opening the app. ### Backwards compatibility Yes
1 parent bc6172d commit f1c65bd

37 files changed

+285
-214
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"web3-eth-contract": "1.3.0",
101101
"ua-parser-js": "^0.7.24",
102102
"underscore": "^1.12.1",
103-
"react-native-flipper": "^0.70.0",
103+
"react-native-flipper": "^0.127.0",
104104
"y18n": "5.0.5",
105105
"css-what": "5.0.1",
106106
"normalize-url": "6.0.1",

packages/mobile/Gemfile.lock

+1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ PLATFORMS
272272
ruby
273273
universal-darwin-19
274274
universal-darwin-20
275+
universal-darwin-21
275276

276277
DEPENDENCIES
277278
cocoapods
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import mock from '@react-native-async-storage/async-storage/jest/async-storage-mock'
2+
3+
export default mock

packages/mobile/__mocks__/@react-native-community/async-storage.js

-3
This file was deleted.

packages/mobile/android/app/src/main/java/org/celo/mobile/MainActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected void onCreate(Bundle savedInstanceState) {
4141
);
4242

4343
appStartedMillis = System.currentTimeMillis();
44-
SplashScreen.show(this, R.style.SplashTheme);
44+
SplashScreen.show(this, R.style.SplashTheme, false);
4545
super.onCreate(null);
4646
CleverTapModule.setInitialUri(getIntent().getData());
4747
}

packages/mobile/e2e/src/usecases/WalletConnectV1.js

+1
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ export default WalletConnect = () => {
323323
await element(by.text('Connected Apps')).tap()
324324
await element(by.text('Tap to Disconnect')).tap()
325325
await element(by.text('Disconnect')).tap()
326+
await element(by.id('BackChevron')).tap()
326327
await expect(element(by.id('ConnectedApplications/value'))).toHaveText('0')
327328
})
328329
}

packages/mobile/ios/Podfile

-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,13 @@ platform :ios, '12.4'
2727
use_frameworks!
2828

2929
target "celo" do
30-
pod "react-native-geth", :path => "../../../node_modules/react-native-geth"
3130
pod "CeloBlockchain", :path => "../../../node_modules/@celo/client/CeloBlockchain.podspec", :modular_headers => true
3231

3332
# RNPermissions
3433
permissions_path = '../../../node_modules/react-native-permissions/ios'
3534
pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
3635
pod 'Permission-AppTrackingTransparency', :path => "#{permissions_path}/AppTrackingTransparency"
3736

38-
pod 'RNSecureRandom', :path => '../../../node_modules/react-native-securerandom'
3937

4038
pod 'Plaid', '~> 2.1.3'
4139

packages/mobile/ios/Podfile.lock

+76-75
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PODS:
99
- SDWebImage (~> 5.1)
1010
- clevertap-react-native (0.5.2):
1111
- CleverTap-iOS-SDK (= 3.9.3)
12-
- React
12+
- React-Core
1313
- CocoaAsyncSocket (7.6.5)
1414
- CTNotificationService (0.1.3)
1515
- DoubleConversion (1.1.6)
@@ -215,10 +215,10 @@ PODS:
215215
- GTMSessionFetcher/Core (1.7.0)
216216
- leveldb-library (1.22.1)
217217
- libevent (2.1.12)
218-
- lottie-ios (3.1.8)
219-
- lottie-react-native (3.3.2):
220-
- lottie-ios (~> 3.1.3)
221-
- React
218+
- lottie-ios (3.2.3)
219+
- lottie-react-native (5.0.1):
220+
- lottie-ios (~> 3.2.3)
221+
- React-Core
222222
- nanopb (2.30908.0):
223223
- nanopb/decode (= 2.30908.0)
224224
- nanopb/encode (= 2.30908.0)
@@ -431,35 +431,35 @@ PODS:
431431
- React-logger (0.66.4):
432432
- glog
433433
- react-native-blind-threshold-bls (1.0.0):
434-
- React
435-
- react-native-camera (3.23.1):
436-
- React
437-
- react-native-camera/RCT (= 3.23.1)
438-
- react-native-camera/RN (= 3.23.1)
439-
- react-native-camera/RCT (3.23.1):
440-
- React
441-
- react-native-camera/RN (3.23.1):
442-
- React
434+
- React-Core
435+
- react-native-camera (4.2.1):
436+
- React-Core
437+
- react-native-camera/RCT (= 4.2.1)
438+
- react-native-camera/RN (= 4.2.1)
439+
- react-native-camera/RCT (4.2.1):
440+
- React-Core
441+
- react-native-camera/RN (4.2.1):
442+
- React-Core
443443
- react-native-config (1.3.3):
444444
- react-native-config/App (= 1.3.3)
445445
- react-native-config/App (1.3.3):
446446
- React-Core
447447
- react-native-contacts (5.0.0):
448-
- React
448+
- React-Core
449449
- react-native-fast-crypto (2.0.0):
450450
- OpenSSL-Universal
451-
- React
452-
- react-native-flipper (0.70.0):
453-
- React
451+
- React-Core
452+
- react-native-flipper (0.127.0):
453+
- React-Core
454454
- react-native-geth (1.0.0):
455455
- CeloBlockchain
456-
- React
456+
- React-Core
457457
- react-native-keep-awake (4.0.0):
458-
- React
458+
- React-Core
459459
- react-native-mail (6.0.0):
460460
- React-Core
461461
- react-native-netinfo (5.8.0):
462-
- React
462+
- React-Core
463463
- react-native-plaid-link-sdk (7.0.7):
464464
- Plaid (~> 2.1.3)
465465
- React-Core
@@ -469,17 +469,17 @@ PODS:
469469
- React-Core
470470
- react-native-shake (3.5.0):
471471
- React-Core
472-
- react-native-simple-toast (1.1.2):
473-
- React
472+
- react-native-simple-toast (1.1.3):
473+
- React-Core
474474
- Toast (~> 4.0.0)
475475
- react-native-sms (1.11.0):
476-
- React
477-
- react-native-splash-screen (3.2.0):
478-
- React
476+
- React-Core
477+
- react-native-splash-screen (3.3.0):
478+
- React-Core
479479
- react-native-tcp (3.3.0):
480-
- React
480+
- React-Core
481481
- react-native-udp (2.6.1):
482-
- React
482+
- React-Core
483483
- react-native-webview (11.6.5):
484484
- React-Core
485485
- React-perflogger (0.66.4)
@@ -565,16 +565,16 @@ PODS:
565565
- React-Core
566566
- RNAnalytics
567567
- Segment-Firebase (~> 2.7.7)
568-
- RNCAsyncStorage (1.9.0):
569-
- React
568+
- RNCAsyncStorage (1.15.14):
569+
- React-Core
570570
- RNCClipboard (1.2.3):
571571
- React-Core
572-
- RNCMaskedView (0.1.10):
573-
- React
572+
- RNCMaskedView (0.2.6):
573+
- React-Core
574574
- RNDeviceInfo (8.3.1):
575575
- React-Core
576576
- RNExitApp (1.1.0):
577-
- React
577+
- React-Core
578578
- RNFBApp (11.5.0):
579579
- Firebase/CoreOnly (= 7.11.0)
580580
- React-Core
@@ -604,7 +604,7 @@ PODS:
604604
- React-Core
605605
- RNFBApp
606606
- RNFS (2.16.6):
607-
- React
607+
- React-Core
608608
- RNGestureHandler (1.9.0):
609609
- React-Core
610610
- RNImageCropPicker (0.35.2):
@@ -618,10 +618,10 @@ PODS:
618618
- TOCropViewController
619619
- RNInAppBrowser (3.5.1):
620620
- React-Core
621-
- RNKeychain (6.0.0):
622-
- React
623-
- RNLocalize (1.4.0):
624-
- React
621+
- RNKeychain (8.0.0):
622+
- React-Core
623+
- RNLocalize (2.1.7):
624+
- React-Core
625625
- RNPermissions (3.0.3):
626626
- React-Core
627627
- RNPersonaInquiry (1.2.0):
@@ -655,17 +655,18 @@ PODS:
655655
- React-RCTText
656656
- ReactCommon/turbomodule/core
657657
- Yoga
658-
- RNScreens (2.7.0):
659-
- React
658+
- RNScreens (3.10.1):
659+
- React-Core
660+
- React-RCTImage
660661
- RNSecureRandom (1.0.0):
661-
- React
662+
- React-Core
662663
- RNSentry (3.2.8):
663664
- React-Core
664665
- Sentry (= 7.5.4)
665-
- RNShare (3.3.0):
666-
- React
666+
- RNShare (7.3.2):
667+
- React-Core
667668
- RNSVG (12.1.1):
668-
- React
669+
- React-Core
669670
- SDWebImage (5.11.1):
670671
- SDWebImage/Core (= 5.11.1)
671672
- SDWebImage/Core (5.11.1)
@@ -780,9 +781,9 @@ DEPENDENCIES:
780781
- "RNAnalyticsIntegration-Adjust (from `../../../node_modules/@segment/analytics-react-native-adjust`)"
781782
- "RNAnalyticsIntegration-CleverTap (from `../../../node_modules/@segment/analytics-react-native-clevertap`)"
782783
- "RNAnalyticsIntegration-Firebase (from `../../../node_modules/@segment/analytics-react-native-firebase`)"
783-
- "RNCAsyncStorage (from `../../../node_modules/@react-native-community/async-storage`)"
784+
- "RNCAsyncStorage (from `../../../node_modules/@react-native-async-storage/async-storage`)"
784785
- "RNCClipboard (from `../../../node_modules/@react-native-community/clipboard`)"
785-
- "RNCMaskedView (from `../../../node_modules/@react-native-community/masked-view`)"
786+
- "RNCMaskedView (from `../../../node_modules/@react-native-masked-view/masked-view`)"
786787
- RNDeviceInfo (from `../../../node_modules/react-native-device-info`)
787788
- RNExitApp (from `../../../node_modules/react-native-exit-app`)
788789
- "RNFBApp (from `../../../node_modules/@react-native-firebase/app`)"
@@ -978,11 +979,11 @@ EXTERNAL SOURCES:
978979
RNAnalyticsIntegration-Firebase:
979980
:path: "../../../node_modules/@segment/analytics-react-native-firebase"
980981
RNCAsyncStorage:
981-
:path: "../../../node_modules/@react-native-community/async-storage"
982+
:path: "../../../node_modules/@react-native-async-storage/async-storage"
982983
RNCClipboard:
983984
:path: "../../../node_modules/@react-native-community/clipboard"
984985
RNCMaskedView:
985-
:path: "../../../node_modules/@react-native-community/masked-view"
986+
:path: "../../../node_modules/@react-native-masked-view/masked-view"
986987
RNDeviceInfo:
987988
:path: "../../../node_modules/react-native-device-info"
988989
RNExitApp:
@@ -1038,7 +1039,7 @@ SPEC CHECKSUMS:
10381039
boost: a7c83b31436843459a1961bfd74b96033dc77234
10391040
CeloBlockchain: 0bb44b288f8fc19528d2be951e2844575d4408d4
10401041
CleverTap-iOS-SDK: 38f386d9aed648de7ef3ca0e7e2c8531b4cf58e9
1041-
clevertap-react-native: efbeea50527a7998603be8b249eab81ca0678072
1042+
clevertap-react-native: f28f984e24a77559d82bb05786a8c1a7f58c2ce8
10421043
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
10431044
CTNotificationService: 910b253821ef6c08158bf8c7dedc421a4df4cd4c
10441045
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
@@ -1074,8 +1075,8 @@ SPEC CHECKSUMS:
10741075
GTMSessionFetcher: 43748f93435c2aa068b1cbe39655aaf600652e91
10751076
leveldb-library: 50c7b45cbd7bf543c81a468fe557a16ae3db8729
10761077
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
1077-
lottie-ios: 48fac6be217c76937e36e340e2d09cf7b10b7f5f
1078-
lottie-react-native: 2a1a82bb326ae51331a5520de0cf706733c6db69
1078+
lottie-ios: c058aeafa76daa4cf64d773554bccc8385d0150e
1079+
lottie-react-native: a029a86e1689c86a07169c520ae770e84348cd20
10791080
nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
10801081
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
10811082
Permission-AppTrackingTransparency: 7e4612104f43441744dc472d5b258daee5b71f7b
@@ -1095,25 +1096,25 @@ SPEC CHECKSUMS:
10951096
React-jsiexecutor: 94ce921e1d8ce7023366873ec371f3441383b396
10961097
React-jsinspector: d0374f7509d407d2264168b6d0fad0b54e300b85
10971098
React-logger: 933f80c97c633ee8965d609876848148e3fef438
1098-
react-native-blind-threshold-bls: 86068a0a8890b04b5492a4a8787b53dbde1aea8d
1099-
react-native-camera: 1b52abea404d04e040edb3e74b7c5523c01a3089
1099+
react-native-blind-threshold-bls: 96b94b001aca9386ab033b26741614046044e80d
1100+
react-native-camera: 3eae183c1d111103963f3dd913b65d01aef8110f
11001101
react-native-config: e8c71f602c92ddd2f5c24b0b7a90d239ecab8d9f
1101-
react-native-contacts: d1a60e38dadb67dbbe481480338988e00966a30d
1102-
react-native-fast-crypto: b6dea8324fb1b095dd4f29a80356b43acb3ee2e9
1103-
react-native-flipper: da8e630768f0a35153837df953d9781fa7f860ba
1104-
react-native-geth: 51d17abd8bac4b80c4e12adb446242ba1407a0c3
1105-
react-native-keep-awake: afad8a51dfef9fe9655a6344771be32c8596d774
1102+
react-native-contacts: fd1614c74777089ebb6b0a0e3847dd78130ef9f4
1103+
react-native-fast-crypto: db61bcb2d1224a180449b886f27426a67d7628c0
1104+
react-native-flipper: b9e2e817604af8da0d5a9ba20a8516e780e30f3c
1105+
react-native-geth: b64bf7962e345c3c2cc437756ae01d854f508230
1106+
react-native-keep-awake: 6c078705f3fb2586963b13588d31148adc6bd128
11061107
react-native-mail: 88305252f4c3fb0157015ff8a7ac9c41b321a0dd
1107-
react-native-netinfo: b9650ab1b8b4362b3c455b1274e4bc48223cc957
1108+
react-native-netinfo: f3f52e6d92372003b78d5cafa3557797c7beee47
11081109
react-native-plaid-link-sdk: b2aa9109ba80872525bebf152a8efe70709966d6
11091110
react-native-randombytes: b6677f7d495c27e9ee0dbd77ebc97b3c59173729
11101111
react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79
11111112
react-native-shake: 41a1ea8ec541fccf3f01566edef8d3cb722b00e3
1112-
react-native-simple-toast: 58b71ef003f01d2c0bf5dcd2fdccc75861dabade
1113-
react-native-sms: 31fbb9d6ebb565ad32e409eaf9dc70329936a129
1114-
react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865
1115-
react-native-tcp: e1a8c3ac010774cd71811989805ff3eaebb62f17
1116-
react-native-udp: 54a1aa9bf5c0824f930b1ba6dbfb3fd3e733bba9
1113+
react-native-simple-toast: bf002828cf816775a6809f7a9ec3907509bce11f
1114+
react-native-sms: 9e317eb8712d2f73a0da36953f15239fa535b0c0
1115+
react-native-splash-screen: 4312f786b13a81b5169ef346d76d33bc0c6dc457
1116+
react-native-tcp: 97bb57dd886806263ab6a734a208e29de040e5d5
1117+
react-native-udp: f2c3b982aaef764b3c9bb333938f78136906a515
11171118
react-native-webview: 2e8fe70dc32b50d3231c23043f8e8b5a5525d346
11181119
React-perflogger: 93075d8931c32cd1fce8a98c15d2d5ccc4d891bd
11191120
React-RCTActionSheet: 7d3041e6761b4f3044a37079ddcb156575fb6d89
@@ -1131,32 +1132,32 @@ SPEC CHECKSUMS:
11311132
RNAnalyticsIntegration-Adjust: fcd3a1e9e653ea81528cfd21d947d8fa2d865d2a
11321133
RNAnalyticsIntegration-CleverTap: abd41dd03f6ee6d7b13c555d6bcde60965fb7366
11331134
RNAnalyticsIntegration-Firebase: 3d3d80be74a53031fc9524d5c5adef2907c28d8f
1134-
RNCAsyncStorage: 453cd7c335ec9ba3b877e27d02238956b76f3268
1135+
RNCAsyncStorage: ea6b5c280997b2b32a587793163b1f10e580c4f7
11351136
RNCClipboard: 546484405eaa1c8a3eccce77b8c8871242e73b20
1136-
RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f
1137+
RNCMaskedView: c298b644a10c0c142055b3ae24d83879ecb13ccd
11371138
RNDeviceInfo: 7b82d1467b87f7e74d1c7ba9439a9a57d0c68ee9
1138-
RNExitApp: c4e052df2568b43bec8a37c7cd61194d4cfee2c3
1139+
RNExitApp: 3ae738c65a8494df166dee74575f2504d0737a28
11391140
RNFBApp: b8704b700f062ed0aa7bbca459b22dd47507a232
11401141
RNFBAuth: 3236f64982a98f4b6cd33405261a7b2d4892f8b1
11411142
RNFBDatabase: 90e7e25aaf38d8b9e8bc5cf79302fdf6b2c077ef
11421143
RNFBDynamicLinks: 706e684b3c6a4a2e17069d6a558c83078776c6ba
11431144
RNFBMessaging: b05aa2a76ed2b9fd50f05f036c96b26189a1fce2
11441145
RNFBRemoteConfig: e8d462f46e1759a5921d0e4b76d0ab89aef9baee
11451146
RNFBStorage: 48f869205eb5537749cdd4f53689a526728421f8
1146-
RNFS: 2bd9eb49dc82fa9676382f0585b992c424cd59df
1147+
RNFS: 7161a36db9bbdaab96d91fff660820f94e29ca58
11471148
RNGestureHandler: 9b7e605a741412e20e13c512738a31bd1611759b
11481149
RNImageCropPicker: 9e0bf18cf4184a846fed55747c8e622208b39947
11491150
RNInAppBrowser: 48b95ba7a4eaff5cc223bca338d3e319561dbd1b
1150-
RNKeychain: bf2d7e9a0ae7a073c07770dd2aa6d11c67581733
1151-
RNLocalize: b6df30cc25ae736d37874f9bce13351db2f56796
1151+
RNKeychain: 4f63aada75ebafd26f4bc2c670199461eab85d94
1152+
RNLocalize: f567ea0e35116a641cdffe6683b0d212d568f32a
11521153
RNPermissions: 034db8a73d562766f990c89abbdeaa5d6e204c67
11531154
RNPersonaInquiry: e8d8f3fe4807f6a826ff96e7fb64f482ef6c4e97
11541155
RNReanimated: da3860204e5660c0dd66739936732197d359d753
1155-
RNScreens: cf198f915f8a2bf163de94ca9f5bfc8d326c3706
1156-
RNSecureRandom: 0dcee021fdb3d50cd5cee5db0ebf583c42f5af0e
1156+
RNScreens: 522705f2e5c9d27efb17f24aceb2bf8335bc7b8e
1157+
RNSecureRandom: b0b479d7b934a3e6deea9cb986a9c40cb5f1b360
11571158
RNSentry: fe878ca3982d7871e502ccbb90072fe764c8d07d
1158-
RNShare: fea1801315aa8875d6db73a4010b14afcd568765
1159-
RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
1159+
RNShare: d76b8c9c6e6ffb38fc18f40b4338c9d867592ed3
1160+
RNSVG: 0ff39850623301a540e69b0ccd9aabb2061812e3
11601161
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
11611162
Segment-Adjust: 7646c502b087a153d89a42059dd53e6d1d143737
11621163
Segment-CleverTap: a0e74aee844bcf859cbbf30dfe3d2ae25d67d9cc
@@ -1167,6 +1168,6 @@ SPEC CHECKSUMS:
11671168
Yoga: e7dc4e71caba6472ff48ad7d234389b91dadc280
11681169
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
11691170

1170-
PODFILE CHECKSUM: 08046332a2f461bd72a336468c9bf6893f84f386
1171+
PODFILE CHECKSUM: 09b32ac0c4263c2c67c50c1cd77d120b3c6e2fad
11711172

11721173
COCOAPODS: 1.10.1

packages/mobile/ios/celo.xcodeproj/xcshareddata/xcschemes/celo-alfajores.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
LastUpgradeVersion = "0620"
44
version = "1.7">
55
<BuildAction
6-
parallelizeBuildables = "NO"
6+
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
88
<PreActions>
99
<ExecutionAction

packages/mobile/ios/celo.xcodeproj/xcshareddata/xcschemes/celo-alfajoresdev.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
LastUpgradeVersion = "0620"
44
version = "1.7">
55
<BuildAction
6-
parallelizeBuildables = "NO"
6+
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
88
<PreActions>
99
<ExecutionAction

packages/mobile/ios/celo.xcodeproj/xcshareddata/xcschemes/celo-alfajoresnightly.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
LastUpgradeVersion = "0620"
44
version = "1.7">
55
<BuildAction
6-
parallelizeBuildables = "NO"
6+
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
88
<PreActions>
99
<ExecutionAction

0 commit comments

Comments
 (0)