This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require_relative '../node_modules/react-native/scripts/react_native_pods' | |
| require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | |
| min_ios_version_supported = 12.4 | |
| platform :ios, min_ios_version_supported.to_s | |
| install! 'cocoapods', :deterministic_uuids => false | |
| def __apply_flipper_post_install_workaround(installer) | |
| # https://github.com/facebook/react-native/issues/43335#issuecomment-1982794252 | |
| installer.pods_project.targets.each do |target| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # clang-format | |
| # Made by: Ingmar Delsink | |
| # idelsink.com | |
| # See http://clang.llvm.org/docs/ClangFormatStyleOptions.html | |
| # Tested with: clang-format version 3.7.1 | |
| # General | |
| ######### | |
| # The style used for all options not specifically set in the configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |