Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
InvestCustomer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
InvestCustomer
Commits
543c27d9
Commit
543c27d9
authored
May 31, 2021
by
Nguyễn Thị Thúy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config xcode 12.5
parent
7f381439
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
Podfile
ios/Podfile
+17
-2
Podfile.lock
ios/Podfile.lock
+1
-1
No files found.
ios/Podfile
View file @
543c27d9
...
...
@@ -101,8 +101,23 @@ target 'Invest' do
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
add_flipper_pods!
post_install
do
|
installer
|
flipper_post_install
(
installer
)
post_install
do
|
installer
|
flipper_post_install
(
installer
)
## Fix for XCode 12.5
find_and_replace
(
"../node_modules/react-native/React/CxxBridge/RCTCxxBridge.mm"
,
"_initializeModules:(NSArray<id<RCTBridgeModule>> *)modules"
,
"_initializeModules:(NSArray<Class> *)modules"
)
find_and_replace
(
"../node_modules/react-native/ReactCommon/turbomodule/core/platform/ios/RCTTurboModuleManager.mm"
,
"RCTBridgeModuleNameForClass(strongModule))"
,
"RCTBridgeModuleNameForClass(Class(strongModule)))"
)
end
def
find_and_replace
(
dir
,
findstr
,
replacestr
)
Dir
[
dir
].
each
do
|
name
|
text
=
File
.
read
(
name
)
replace
=
text
.
gsub
(
findstr
,
replacestr
)
if
text
!=
replace
puts
"Fix: "
+
name
File
.
open
(
name
,
"w"
)
{
|
file
|
file
.
puts
replace
}
STDOUT
.
flush
end
end
end
...
...
ios/Podfile.lock
View file @
543c27d9
...
...
@@ -697,6 +697,6 @@ SPEC CHECKSUMS:
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
YoutubePlayer-in-WKWebView: cfbf46da51d7370662a695a8f351e5fa1d3e1008
PODFILE CHECKSUM: d
813a7a529c04f4ed02dcce2852a84914d3c82d8
PODFILE CHECKSUM: d
729113150c3f9b38b178f7959c22d123a7fff1e
COCOAPODS: 1.10.1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment