├── .gitignore ├── App.js ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── rnprojectstructure │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-Medium.ttf │ │ │ └── Montserrat-Regular.ttf │ │ ├── java │ │ └── com │ │ │ └── rnprojectstructure │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── link-assets-manifest.json └── settings.gradle ├── android_run.sh ├── app.json ├── babel.config.js ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── Podfile.lock ├── RNProjectStructure.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── RNProjectStructure.xcscheme ├── RNProjectStructure.xcworkspace │ └── contents.xcworkspacedata ├── RNProjectStructure │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── RNProjectStructureTests │ ├── Info.plist │ └── RNProjectStructureTests.m └── link-assets-manifest.json ├── iphone_run.sh ├── metro.config.js ├── package-lock.json ├── package.json ├── podinstall.sh ├── react-native.config.js ├── src ├── assets │ ├── Images │ │ └── logo.png │ └── fonts │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ └── Montserrat-Regular.ttf ├── components │ ├── Buttons │ │ ├── Button.js │ │ ├── index.js │ │ └── styles.js │ └── Modal │ │ └── Center │ │ ├── HoldOnPopUp.js │ │ └── styles.js ├── constants │ └── index.js ├── helpers │ └── api.js ├── redux │ ├── actionTypes │ │ └── login.js │ ├── actions │ │ └── login.js │ ├── reducer │ │ ├── index.js │ │ └── login.js │ └── store │ │ └── store.js ├── routes │ ├── AppStack.js │ ├── AuthStack.js │ └── index.js ├── screens │ ├── AuthScreen │ │ └── index.js │ ├── HomeScreen │ │ ├── index.js │ │ └── styles.js │ ├── LoginScreen │ │ ├── index.js │ │ └── styles.js │ └── index.js └── utils │ └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | ios/.xcode.env.local 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | *.hprof 33 | .cxx/ 34 | 35 | # node.js 36 | # 37 | node_modules/ 38 | npm-debug.log 39 | yarn-error.log 40 | 41 | # BUCK 42 | buck-out/ 43 | \.buckd/ 44 | *.keystore 45 | !debug.keystore 46 | 47 | # fastlane 48 | # 49 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 50 | # screenshots whenever they are needed. 51 | # For more information about the recommended setup visit: 52 | # https://docs.fastlane.tools/best-practices/source-control/ 53 | 54 | **/fastlane/report.xml 55 | **/fastlane/Preview.html 56 | **/fastlane/screenshots 57 | **/fastlane/test_output 58 | 59 | # Bundle artifact 60 | *.jsbundle 61 | 62 | # Ruby / CocoaPods 63 | /ios/Pods/ 64 | /vendor/bundle/ 65 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import { 3 | SafeAreaView, 4 | StatusBar, 5 | BackHandler, 6 | Platform, 7 | Text, 8 | TextInput, 9 | } from 'react-native'; 10 | import Routes from './src/routes'; 11 | import {Provider} from 'react-redux'; 12 | import {PersistGate} from 'redux-persist/es/integration/react'; 13 | import {store, persistor} from './src/redux/store/store'; 14 | import {Colors} from './src/constants'; 15 | import HoldOnPopUp from './src/components/Modal/Center/HoldOnPopUp'; 16 | import FlashMessage from 'react-native-flash-message'; 17 | 18 | class App extends Component { 19 | constructor(props) { 20 | console.log = () => null; 21 | Text.defaultProps = Text.defaultProps || {}; 22 | Text.defaultProps.allowFontScaling = false; 23 | TextInput.defaultProps = TextInput.defaultProps || {}; 24 | TextInput.defaultProps.allowFontScaling = false; 25 | super(props); 26 | this.state = { 27 | isConnected: null, 28 | showHoldPopUp: false, 29 | }; 30 | } 31 | 32 | componentDidMount = async () => { 33 | BackHandler.addEventListener('hardwareBackPress', this.backAction); 34 | }; 35 | 36 | componentWillUnmount() { 37 | BackHandler.removeEventListener('hardwareBackPress', this.backAction); 38 | } 39 | 40 | backAction = async () => { 41 | if (store.getState().login.isLoggedIn == false) { 42 | this.setState({ 43 | showHoldPopUp: true, 44 | }); 45 | } else { 46 | BackHandler.exitApp(); 47 | } 48 | }; 49 | 50 | render() { 51 | const {showHoldPopUp} = this.state; 52 | return ( 53 | 54 | 55 | 56 | 64 | 65 | 66 | 67 | { 70 | this.setState({ 71 | showHoldPopUp: false, 72 | }); 73 | }} 74 | onRequestClear={() => { 75 | this.setState({ 76 | showHoldPopUp: false, 77 | }); 78 | BackHandler.exitApp(); 79 | }} 80 | /> 81 | 82 | 83 | ); 84 | } 85 | } 86 | 87 | export default App; 88 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby '2.7.5' 5 | 6 | gem 'cocoapods', '~> 1.11', '>= 1.11.2' 7 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | CFPropertyList (3.0.6) 5 | rexml 6 | activesupport (7.0.4.3) 7 | concurrent-ruby (~> 1.0, >= 1.0.2) 8 | i18n (>= 1.6, < 2) 9 | minitest (>= 5.1) 10 | tzinfo (~> 2.0) 11 | addressable (2.8.4) 12 | public_suffix (>= 2.0.2, < 6.0) 13 | algoliasearch (1.27.5) 14 | httpclient (~> 2.8, >= 2.8.3) 15 | json (>= 1.5.1) 16 | atomos (0.1.3) 17 | claide (1.1.0) 18 | cocoapods (1.12.0) 19 | addressable (~> 2.8) 20 | claide (>= 1.0.2, < 2.0) 21 | cocoapods-core (= 1.12.0) 22 | cocoapods-deintegrate (>= 1.0.3, < 2.0) 23 | cocoapods-downloader (>= 1.6.0, < 2.0) 24 | cocoapods-plugins (>= 1.0.0, < 2.0) 25 | cocoapods-search (>= 1.0.0, < 2.0) 26 | cocoapods-trunk (>= 1.6.0, < 2.0) 27 | cocoapods-try (>= 1.1.0, < 2.0) 28 | colored2 (~> 3.1) 29 | escape (~> 0.0.4) 30 | fourflusher (>= 2.3.0, < 3.0) 31 | gh_inspector (~> 1.0) 32 | molinillo (~> 0.8.0) 33 | nap (~> 1.0) 34 | ruby-macho (>= 2.3.0, < 3.0) 35 | xcodeproj (>= 1.21.0, < 2.0) 36 | cocoapods-core (1.12.0) 37 | activesupport (>= 5.0, < 8) 38 | addressable (~> 2.8) 39 | algoliasearch (~> 1.0) 40 | concurrent-ruby (~> 1.1) 41 | fuzzy_match (~> 2.0.4) 42 | nap (~> 1.0) 43 | netrc (~> 0.11) 44 | public_suffix (~> 4.0) 45 | typhoeus (~> 1.0) 46 | cocoapods-deintegrate (1.0.5) 47 | cocoapods-downloader (1.6.3) 48 | cocoapods-plugins (1.0.0) 49 | nap 50 | cocoapods-search (1.0.1) 51 | cocoapods-trunk (1.6.0) 52 | nap (>= 0.8, < 2.0) 53 | netrc (~> 0.11) 54 | cocoapods-try (1.2.0) 55 | colored2 (3.1.2) 56 | concurrent-ruby (1.2.2) 57 | escape (0.0.4) 58 | ethon (0.16.0) 59 | ffi (>= 1.15.0) 60 | ffi (1.15.5) 61 | fourflusher (2.3.1) 62 | fuzzy_match (2.0.4) 63 | gh_inspector (1.1.3) 64 | httpclient (2.8.3) 65 | i18n (1.12.0) 66 | concurrent-ruby (~> 1.0) 67 | json (2.6.3) 68 | minitest (5.18.0) 69 | molinillo (0.8.0) 70 | nanaimo (0.3.0) 71 | nap (1.1.0) 72 | netrc (0.11.0) 73 | public_suffix (4.0.7) 74 | rexml (3.2.5) 75 | ruby-macho (2.5.1) 76 | typhoeus (1.4.0) 77 | ethon (>= 0.9.0) 78 | tzinfo (2.0.6) 79 | concurrent-ruby (~> 1.0) 80 | xcodeproj (1.22.0) 81 | CFPropertyList (>= 2.3.3, < 4.0) 82 | atomos (~> 0.1.3) 83 | claide (>= 1.0.2, < 2.0) 84 | colored2 (~> 3.1) 85 | nanaimo (~> 0.3.0) 86 | rexml (~> 3.2.4) 87 | 88 | PLATFORMS 89 | ruby 90 | 91 | DEPENDENCIES 92 | cocoapods (~> 1.11, >= 1.11.2) 93 | 94 | RUBY VERSION 95 | ruby 2.7.5p203 96 | 97 | BUNDLED WITH 98 | 2.1.4 99 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Imgur](https://cdn-images-1.medium.com/v2/resize:fit:800/1*OTDdy74t4m4g9lzyYjdDLw.png) 2 | 3 | # React Native Project Structure 4 | 5 | This project aims to be a strong foundation for react-native applications. It provides a clear and organized structure 6 | 7 | ## Base dependencies 8 | 9 | - [axios](https://github.com/axios/axios) - For network calling. 10 | - [react-navigation](https://reactnavigation.org/) - Application navigation. 11 | - [redux](https://redux.js.org/) - Application state management. 12 | - [redux-persist](https://github.com/rt2zz/redux-persist) - Persist redux state. 13 | - [redux-thunk](https://github.com/gaearon/redux-thunk) - Enabling asynchronous dispatching of actions. 14 | 15 | ## Usage 16 | 17 | ### Option 1: Using React-Native-Rename 18 | 19 | You can start by cloning this repository and using [react-native-rename](https://github.com/junedomingo/react-native-rename). In the current state of this project, it should give you no issues at all, just run the script, delete your node modules and reinstall them and you should be good to go. 20 | 21 | Keep in mind that this library can cause trouble if you are renaming a project that uses `Pods` on the iOS side. 22 | 23 | After that you should proceed as with any javascript project: 24 | 25 | - Go to your project's root folder and run `npm install`. 26 | - If you are using Xcode 12.5 or higher got to /ios and execute `pod install --`repo-update` 27 | - Run `npm run ios` or `npm run android` to start your application! 28 | 29 | (Using yarn: `yarn ios` or `yarn android`) 30 | 31 | ### Option 2: Copy the structure to your project 32 | 33 | If you want to roll on your own and don't want to use this as a template, you can create your project and then copy the `/src` folder (which has all the code of your application) and update your `index.js`. 34 | 35 | Keep in mind that if you do this, you'll have to **install and link** all dependencies (as well as adding all the necessary native code for each library that requires it). 36 | 37 | ## Folder structure 38 | 39 | This template follows a very simple project structure: 40 | 41 | - `assets`: Asset folder to store all images, vectors, fonts, etc. 42 | - `src`: This folder is the main container of all the code inside your application. 43 | - `components`: Folder to store any common component that you use through your app 44 | - `constants`: Folder to store any kind of constant that you have. 45 | - `routes`: Folder to store the navigators. 46 | - `redux`: This folder should have all your reducers and store 47 | - `screens`: Folder that contains all your application screens/features. 48 | - `helper`: Define helper functions in this folder. 49 | - `utils`: Folder to store any common function such as Analytics, Logger, DateTime, and etc. 50 | - `App.js`: Main component that starts your whole app. 51 | - `index.js`: Entry point of your application as per React-Native standards. 52 | 53 | Modify the environment variables files in root folder (`.env`) 54 | 55 | # How to use it 56 | 57 | The idea of this section is to explain how the template composition is the best and easiest to use when you try to use well-formed, architectures, especially using redux flow. 58 | 59 | The template follows a simple and convenient exporting pattern. The folder index exposes the resources, allowing to import all from the same path. 60 | 61 | --- 62 | 63 | ## Give a Star ⭐ 64 | 65 | If you like this project then give it a **Github** star by pressing the **Star** button ⭐ 66 | 67 | --- 68 | 69 | #### Note: 70 | I'm currently looking for good **Freelance** and **Contract-based** work **remotely (worldwide)**. So, if you have a good opportunity that matches my skills experience then you can contact me on my **[Linkedin](https://www.linkedin.com/in/rushitjivani)** or my email id **rushitjivani1999@gmail.com** 🙌 71 | 72 | --- 73 | 74 | ## Author 👨‍💻 75 | 76 | - **Rushit Jivani** - **[Linkedin](https://www.linkedin.com/in/rushitjivani)**, **[Medium](https://medium.com/@rushitjivani)**, **[Github](https://github.com/Rushit013)**, **[Portfolio](https://rushitjivani.netlify.app/)** 77 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.rnprojectstructure", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.rnprojectstructure", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | import org.apache.tools.ant.taskdefs.condition.Os 5 | 6 | /** 7 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 8 | * and bundleReleaseJsAndAssets). 9 | * These basically call `react-native bundle` with the correct arguments during the Android build 10 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 11 | * bundle directly from the development server. Below you can see all the possible configurations 12 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 13 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 14 | * 15 | * project.ext.react = [ 16 | * // the name of the generated asset file containing your JS bundle 17 | * bundleAssetName: "index.android.bundle", 18 | * 19 | * // the entry file for bundle generation. If none specified and 20 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is 21 | * // default. Can be overridden with ENTRY_FILE environment variable. 22 | * entryFile: "index.android.js", 23 | * 24 | * // https://reactnative.dev/docs/performance#enable-the-ram-format 25 | * bundleCommand: "ram-bundle", 26 | * 27 | * // whether to bundle JS and assets in debug mode 28 | * bundleInDebug: false, 29 | * 30 | * // whether to bundle JS and assets in release mode 31 | * bundleInRelease: true, 32 | * 33 | * // whether to bundle JS and assets in another build variant (if configured). 34 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 35 | * // The configuration property can be in the following formats 36 | * // 'bundleIn${productFlavor}${buildType}' 37 | * // 'bundleIn${buildType}' 38 | * // bundleInFreeDebug: true, 39 | * // bundleInPaidRelease: true, 40 | * // bundleInBeta: true, 41 | * 42 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 43 | * // for example: to disable dev mode in the staging build type (if configured) 44 | * devDisabledInStaging: true, 45 | * // The configuration property can be in the following formats 46 | * // 'devDisabledIn${productFlavor}${buildType}' 47 | * // 'devDisabledIn${buildType}' 48 | * 49 | * // the root of your project, i.e. where "package.json" lives 50 | * root: "../../", 51 | * 52 | * // where to put the JS bundle asset in debug mode 53 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 54 | * 55 | * // where to put the JS bundle asset in release mode 56 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 57 | * 58 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 59 | * // require('./image.png')), in debug mode 60 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 61 | * 62 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 63 | * // require('./image.png')), in release mode 64 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 65 | * 66 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 67 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 68 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 69 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 70 | * // for example, you might want to remove it from here. 71 | * inputExcludes: ["android/**", "ios/**"], 72 | * 73 | * // override which node gets called and with what additional arguments 74 | * nodeExecutableAndArgs: ["node"], 75 | * 76 | * // supply additional arguments to the packager 77 | * extraPackagerArgs: [] 78 | * ] 79 | */ 80 | 81 | project.ext.react = [ 82 | enableHermes: true, // clean and rebuild if changing 83 | ] 84 | 85 | apply from: "../../node_modules/react-native/react.gradle" 86 | 87 | /** 88 | * Set this to true to create two separate APKs instead of one: 89 | * - An APK that only works on ARM devices 90 | * - An APK that only works on x86 devices 91 | * The advantage is the size of the APK is reduced by about 4MB. 92 | * Upload all the APKs to the Play Store and people will download 93 | * the correct one based on the CPU architecture of their device. 94 | */ 95 | def enableSeparateBuildPerCPUArchitecture = false 96 | 97 | /** 98 | * Run Proguard to shrink the Java bytecode in release builds. 99 | */ 100 | def enableProguardInReleaseBuilds = false 101 | 102 | /** 103 | * The preferred build flavor of JavaScriptCore. 104 | * 105 | * For example, to use the international variant, you can use: 106 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 107 | * 108 | * The international variant includes ICU i18n library and necessary data 109 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 110 | * give correct results when using with locales other than en-US. Note that 111 | * this variant is about 6MiB larger per architecture than default. 112 | */ 113 | def jscFlavor = 'org.webkit:android-jsc:+' 114 | 115 | /** 116 | * Whether to enable the Hermes VM. 117 | * 118 | * This should be set on project.ext.react and that value will be read here. If it is not set 119 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 120 | * and the benefits of using Hermes will therefore be sharply reduced. 121 | */ 122 | def enableHermes = project.ext.react.get("enableHermes", false); 123 | 124 | /** 125 | * Architectures to build native code for. 126 | */ 127 | def reactNativeArchitectures() { 128 | def value = project.getProperties().get("reactNativeArchitectures") 129 | return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] 130 | } 131 | 132 | android { 133 | ndkVersion rootProject.ext.ndkVersion 134 | 135 | compileSdkVersion rootProject.ext.compileSdkVersion 136 | 137 | defaultConfig { 138 | applicationId "com.rnprojectstructure" 139 | minSdkVersion rootProject.ext.minSdkVersion 140 | targetSdkVersion rootProject.ext.targetSdkVersion 141 | versionCode 1 142 | versionName "1.0" 143 | buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() 144 | 145 | if (isNewArchitectureEnabled()) { 146 | // We configure the CMake build only if you decide to opt-in for the New Architecture. 147 | externalNativeBuild { 148 | cmake { 149 | arguments "-DPROJECT_BUILD_DIR=$buildDir", 150 | "-DREACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid", 151 | "-DREACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build", 152 | "-DNODE_MODULES_DIR=$rootDir/../node_modules", 153 | "-DANDROID_STL=c++_shared" 154 | } 155 | } 156 | if (!enableSeparateBuildPerCPUArchitecture) { 157 | ndk { 158 | abiFilters (*reactNativeArchitectures()) 159 | } 160 | } 161 | } 162 | } 163 | 164 | if (isNewArchitectureEnabled()) { 165 | // We configure the NDK build only if you decide to opt-in for the New Architecture. 166 | externalNativeBuild { 167 | cmake { 168 | path "$projectDir/src/main/jni/CMakeLists.txt" 169 | } 170 | } 171 | def reactAndroidProjectDir = project(':ReactAndroid').projectDir 172 | def packageReactNdkDebugLibs = tasks.register("packageReactNdkDebugLibs", Copy) { 173 | dependsOn(":ReactAndroid:packageReactNdkDebugLibsForBuck") 174 | from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib") 175 | into("$buildDir/react-ndk/exported") 176 | } 177 | def packageReactNdkReleaseLibs = tasks.register("packageReactNdkReleaseLibs", Copy) { 178 | dependsOn(":ReactAndroid:packageReactNdkReleaseLibsForBuck") 179 | from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib") 180 | into("$buildDir/react-ndk/exported") 181 | } 182 | afterEvaluate { 183 | // If you wish to add a custom TurboModule or component locally, 184 | // you should uncomment this line. 185 | // preBuild.dependsOn("generateCodegenArtifactsFromSchema") 186 | preDebugBuild.dependsOn(packageReactNdkDebugLibs) 187 | preReleaseBuild.dependsOn(packageReactNdkReleaseLibs) 188 | 189 | // Due to a bug inside AGP, we have to explicitly set a dependency 190 | // between configureCMakeDebug* tasks and the preBuild tasks. 191 | // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732 192 | configureCMakeRelWithDebInfo.dependsOn(preReleaseBuild) 193 | configureCMakeDebug.dependsOn(preDebugBuild) 194 | reactNativeArchitectures().each { architecture -> 195 | tasks.findByName("configureCMakeDebug[${architecture}]")?.configure { 196 | dependsOn("preDebugBuild") 197 | } 198 | tasks.findByName("configureCMakeRelWithDebInfo[${architecture}]")?.configure { 199 | dependsOn("preReleaseBuild") 200 | } 201 | } 202 | } 203 | } 204 | 205 | splits { 206 | abi { 207 | reset() 208 | enable enableSeparateBuildPerCPUArchitecture 209 | universalApk false // If true, also generate a universal APK 210 | include (*reactNativeArchitectures()) 211 | } 212 | } 213 | signingConfigs { 214 | debug { 215 | storeFile file('debug.keystore') 216 | storePassword 'android' 217 | keyAlias 'androiddebugkey' 218 | keyPassword 'android' 219 | } 220 | } 221 | buildTypes { 222 | debug { 223 | signingConfig signingConfigs.debug 224 | } 225 | release { 226 | // Caution! In production, you need to generate your own keystore file. 227 | // see https://reactnative.dev/docs/signed-apk-android. 228 | signingConfig signingConfigs.debug 229 | minifyEnabled enableProguardInReleaseBuilds 230 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 231 | } 232 | } 233 | 234 | // applicationVariants are e.g. debug, release 235 | applicationVariants.all { variant -> 236 | variant.outputs.each { output -> 237 | // For each separate APK per architecture, set a unique version code as described here: 238 | // https://developer.android.com/studio/build/configure-apk-splits.html 239 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. 240 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 241 | def abi = output.getFilter(OutputFile.ABI) 242 | if (abi != null) { // null for the universal-debug, universal-release variants 243 | output.versionCodeOverride = 244 | defaultConfig.versionCode * 1000 + versionCodes.get(abi) 245 | } 246 | 247 | } 248 | } 249 | } 250 | 251 | dependencies { 252 | implementation fileTree(dir: "libs", include: ["*.jar"]) 253 | 254 | //noinspection GradleDynamicVersion 255 | implementation "com.facebook.react:react-native:+" // From node_modules 256 | 257 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 258 | 259 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 260 | exclude group:'com.facebook.fbjni' 261 | } 262 | 263 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { 264 | exclude group:'com.facebook.flipper' 265 | exclude group:'com.squareup.okhttp3', module:'okhttp' 266 | } 267 | 268 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { 269 | exclude group:'com.facebook.flipper' 270 | } 271 | 272 | if (enableHermes) { 273 | //noinspection GradleDynamicVersion 274 | implementation("com.facebook.react:hermes-engine:+") { // From node_modules 275 | exclude group:'com.facebook.fbjni' 276 | } 277 | } else { 278 | implementation jscFlavor 279 | } 280 | } 281 | 282 | if (isNewArchitectureEnabled()) { 283 | // If new architecture is enabled, we let you build RN from source 284 | // Otherwise we fallback to a prebuilt .aar bundled in the NPM package. 285 | // This will be applied to all the imported transtitive dependency. 286 | configurations.all { 287 | resolutionStrategy.dependencySubstitution { 288 | substitute(module("com.facebook.react:react-native")) 289 | .using(project(":ReactAndroid")) 290 | .because("On New Architecture we're building React Native from source") 291 | substitute(module("com.facebook.react:hermes-engine")) 292 | .using(project(":ReactAndroid:hermes-engine")) 293 | .because("On New Architecture we're building Hermes from source") 294 | } 295 | } 296 | } 297 | 298 | // Run this once to be able to run the application with BUCK 299 | // puts all compile dependencies into folder libs for BUCK to use 300 | task copyDownloadableDepsToLibs(type: Copy) { 301 | from configurations.implementation 302 | into 'libs' 303 | } 304 | 305 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 306 | 307 | def isNewArchitectureEnabled() { 308 | // To opt-in for the New Architecture, you can either: 309 | // - Set `newArchEnabled` to true inside the `gradle.properties` file 310 | // - Invoke gradle with `-newArchEnabled=true` 311 | // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true` 312 | return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true" 313 | } 314 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /android/app/src/debug/java/com/rnprojectstructure/ReactNativeFlipper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | *

This source code is licensed under the MIT license found in the LICENSE file in the root 5 | * directory of this source tree. 6 | */ 7 | package com.rnprojectstructure; 8 | 9 | import android.content.Context; 10 | import com.facebook.flipper.android.AndroidFlipperClient; 11 | import com.facebook.flipper.android.utils.FlipperUtils; 12 | import com.facebook.flipper.core.FlipperClient; 13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; 14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; 15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; 16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping; 17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; 18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; 19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; 20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin; 21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; 22 | import com.facebook.react.ReactInstanceEventListener; 23 | import com.facebook.react.ReactInstanceManager; 24 | import com.facebook.react.bridge.ReactContext; 25 | import com.facebook.react.modules.network.NetworkingModule; 26 | import okhttp3.OkHttpClient; 27 | 28 | public class ReactNativeFlipper { 29 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { 30 | if (FlipperUtils.shouldEnableFlipper(context)) { 31 | final FlipperClient client = AndroidFlipperClient.getInstance(context); 32 | 33 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); 34 | client.addPlugin(new ReactFlipperPlugin()); 35 | client.addPlugin(new DatabasesFlipperPlugin(context)); 36 | client.addPlugin(new SharedPreferencesFlipperPlugin(context)); 37 | client.addPlugin(CrashReporterPlugin.getInstance()); 38 | 39 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); 40 | NetworkingModule.setCustomClientBuilder( 41 | new NetworkingModule.CustomClientBuilder() { 42 | @Override 43 | public void apply(OkHttpClient.Builder builder) { 44 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); 45 | } 46 | }); 47 | client.addPlugin(networkFlipperPlugin); 48 | client.start(); 49 | 50 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized 51 | // Hence we run if after all native modules have been initialized 52 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); 53 | if (reactContext == null) { 54 | reactInstanceManager.addReactInstanceEventListener( 55 | new ReactInstanceEventListener() { 56 | @Override 57 | public void onReactContextInitialized(ReactContext reactContext) { 58 | reactInstanceManager.removeReactInstanceEventListener(this); 59 | reactContext.runOnNativeModulesQueueThread( 60 | new Runnable() { 61 | @Override 62 | public void run() { 63 | client.addPlugin(new FrescoFlipperPlugin()); 64 | } 65 | }); 66 | } 67 | }); 68 | } else { 69 | client.addPlugin(new FrescoFlipperPlugin()); 70 | } 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/assets/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnprojectstructure/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.rnprojectstructure; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import com.facebook.react.ReactActivityDelegate; 5 | import com.facebook.react.ReactRootView; 6 | 7 | public class MainActivity extends ReactActivity { 8 | 9 | /** 10 | * Returns the name of the main component registered from JavaScript. This is used to schedule 11 | * rendering of the component. 12 | */ 13 | @Override 14 | protected String getMainComponentName() { 15 | return "RNProjectStructure"; 16 | } 17 | 18 | /** 19 | * Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and 20 | * you can specify the renderer you wish to use - the new renderer (Fabric) or the old renderer 21 | * (Paper). 22 | */ 23 | @Override 24 | protected ReactActivityDelegate createReactActivityDelegate() { 25 | return new MainActivityDelegate(this, getMainComponentName()); 26 | } 27 | 28 | public static class MainActivityDelegate extends ReactActivityDelegate { 29 | public MainActivityDelegate(ReactActivity activity, String mainComponentName) { 30 | super(activity, mainComponentName); 31 | } 32 | 33 | @Override 34 | protected ReactRootView createRootView() { 35 | ReactRootView reactRootView = new ReactRootView(getContext()); 36 | // If you opted-in for the New Architecture, we enable the Fabric Renderer. 37 | reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED); 38 | return reactRootView; 39 | } 40 | 41 | @Override 42 | protected boolean isConcurrentRootEnabled() { 43 | // If you opted-in for the New Architecture, we enable Concurrent Root (i.e. React 18). 44 | // More on this on https://reactjs.org/blog/2022/03/29/react-v18.html 45 | return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnprojectstructure/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.rnprojectstructure; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import com.facebook.react.PackageList; 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.config.ReactFeatureFlags; 11 | import com.facebook.soloader.SoLoader; 12 | import com.rnprojectstructure.newarchitecture.MainApplicationReactNativeHost; 13 | import java.lang.reflect.InvocationTargetException; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = 19 | new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | @SuppressWarnings("UnnecessaryLocalVariable") 28 | List packages = new PackageList(this).getPackages(); 29 | // Packages that cannot be autolinked yet can be added manually here, for example: 30 | // packages.add(new MyReactNativePackage()); 31 | return packages; 32 | } 33 | 34 | @Override 35 | protected String getJSMainModuleName() { 36 | return "index"; 37 | } 38 | }; 39 | 40 | private final ReactNativeHost mNewArchitectureNativeHost = 41 | new MainApplicationReactNativeHost(this); 42 | 43 | @Override 44 | public ReactNativeHost getReactNativeHost() { 45 | if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { 46 | return mNewArchitectureNativeHost; 47 | } else { 48 | return mReactNativeHost; 49 | } 50 | } 51 | 52 | @Override 53 | public void onCreate() { 54 | super.onCreate(); 55 | // If you opted-in for the New Architecture, we enable the TurboModule system 56 | ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; 57 | SoLoader.init(this, /* native exopackage */ false); 58 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 59 | } 60 | 61 | /** 62 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like 63 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 64 | * 65 | * @param context 66 | * @param reactInstanceManager 67 | */ 68 | private static void initializeFlipper( 69 | Context context, ReactInstanceManager reactInstanceManager) { 70 | if (BuildConfig.DEBUG) { 71 | try { 72 | /* 73 | We use reflection here to pick up the class that initializes Flipper, 74 | since Flipper library is not available in release mode 75 | */ 76 | Class aClass = Class.forName("com.rnprojectstructure.ReactNativeFlipper"); 77 | aClass 78 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) 79 | .invoke(null, context, reactInstanceManager); 80 | } catch (ClassNotFoundException e) { 81 | e.printStackTrace(); 82 | } catch (NoSuchMethodException e) { 83 | e.printStackTrace(); 84 | } catch (IllegalAccessException e) { 85 | e.printStackTrace(); 86 | } catch (InvocationTargetException e) { 87 | e.printStackTrace(); 88 | } 89 | } 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnprojectstructure/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- 1 | package com.rnprojectstructure.newarchitecture; 2 | 3 | import android.app.Application; 4 | import androidx.annotation.NonNull; 5 | import com.facebook.react.PackageList; 6 | import com.facebook.react.ReactInstanceManager; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.ReactPackageTurboModuleManagerDelegate; 10 | import com.facebook.react.bridge.JSIModulePackage; 11 | import com.facebook.react.bridge.JSIModuleProvider; 12 | import com.facebook.react.bridge.JSIModuleSpec; 13 | import com.facebook.react.bridge.JSIModuleType; 14 | import com.facebook.react.bridge.JavaScriptContextHolder; 15 | import com.facebook.react.bridge.ReactApplicationContext; 16 | import com.facebook.react.bridge.UIManager; 17 | import com.facebook.react.fabric.ComponentFactory; 18 | import com.facebook.react.fabric.CoreComponentsRegistry; 19 | import com.facebook.react.fabric.FabricJSIModuleProvider; 20 | import com.facebook.react.fabric.ReactNativeConfig; 21 | import com.facebook.react.uimanager.ViewManagerRegistry; 22 | import com.rnprojectstructure.BuildConfig; 23 | import com.rnprojectstructure.newarchitecture.components.MainComponentsRegistry; 24 | import com.rnprojectstructure.newarchitecture.modules.MainApplicationTurboModuleManagerDelegate; 25 | import java.util.ArrayList; 26 | import java.util.List; 27 | 28 | /** 29 | * A {@link ReactNativeHost} that helps you load everything needed for the New Architecture, both 30 | * TurboModule delegates and the Fabric Renderer. 31 | * 32 | *

Please note that this class is used ONLY if you opt-in for the New Architecture (see the 33 | * `newArchEnabled` property). Is ignored otherwise. 34 | */ 35 | public class MainApplicationReactNativeHost extends ReactNativeHost { 36 | public MainApplicationReactNativeHost(Application application) { 37 | super(application); 38 | } 39 | 40 | @Override 41 | public boolean getUseDeveloperSupport() { 42 | return BuildConfig.DEBUG; 43 | } 44 | 45 | @Override 46 | protected List getPackages() { 47 | List packages = new PackageList(this).getPackages(); 48 | // Packages that cannot be autolinked yet can be added manually here, for example: 49 | // packages.add(new MyReactNativePackage()); 50 | // TurboModules must also be loaded here providing a valid TurboReactPackage implementation: 51 | // packages.add(new TurboReactPackage() { ... }); 52 | // If you have custom Fabric Components, their ViewManagers should also be loaded here 53 | // inside a ReactPackage. 54 | return packages; 55 | } 56 | 57 | @Override 58 | protected String getJSMainModuleName() { 59 | return "index"; 60 | } 61 | 62 | @NonNull 63 | @Override 64 | protected ReactPackageTurboModuleManagerDelegate.Builder 65 | getReactPackageTurboModuleManagerDelegateBuilder() { 66 | // Here we provide the ReactPackageTurboModuleManagerDelegate Builder. This is necessary 67 | // for the new architecture and to use TurboModules correctly. 68 | return new MainApplicationTurboModuleManagerDelegate.Builder(); 69 | } 70 | 71 | @Override 72 | protected JSIModulePackage getJSIModulePackage() { 73 | return new JSIModulePackage() { 74 | @Override 75 | public List getJSIModules( 76 | final ReactApplicationContext reactApplicationContext, 77 | final JavaScriptContextHolder jsContext) { 78 | final List specs = new ArrayList<>(); 79 | 80 | // Here we provide a new JSIModuleSpec that will be responsible of providing the 81 | // custom Fabric Components. 82 | specs.add( 83 | new JSIModuleSpec() { 84 | @Override 85 | public JSIModuleType getJSIModuleType() { 86 | return JSIModuleType.UIManager; 87 | } 88 | 89 | @Override 90 | public JSIModuleProvider getJSIModuleProvider() { 91 | final ComponentFactory componentFactory = new ComponentFactory(); 92 | CoreComponentsRegistry.register(componentFactory); 93 | 94 | // Here we register a Components Registry. 95 | // The one that is generated with the template contains no components 96 | // and just provides you the one from React Native core. 97 | MainComponentsRegistry.register(componentFactory); 98 | 99 | final ReactInstanceManager reactInstanceManager = getReactInstanceManager(); 100 | 101 | ViewManagerRegistry viewManagerRegistry = 102 | new ViewManagerRegistry( 103 | reactInstanceManager.getOrCreateViewManagers(reactApplicationContext)); 104 | 105 | return new FabricJSIModuleProvider( 106 | reactApplicationContext, 107 | componentFactory, 108 | ReactNativeConfig.DEFAULT_CONFIG, 109 | viewManagerRegistry); 110 | } 111 | }); 112 | return specs; 113 | } 114 | }; 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnprojectstructure/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- 1 | package com.rnprojectstructure.newarchitecture.components; 2 | 3 | import com.facebook.jni.HybridData; 4 | import com.facebook.proguard.annotations.DoNotStrip; 5 | import com.facebook.react.fabric.ComponentFactory; 6 | import com.facebook.soloader.SoLoader; 7 | 8 | /** 9 | * Class responsible to load the custom Fabric Components. This class has native methods and needs a 10 | * corresponding C++ implementation/header file to work correctly (already placed inside the jni/ 11 | * folder for you). 12 | * 13 | *

Please note that this class is used ONLY if you opt-in for the New Architecture (see the 14 | * `newArchEnabled` property). Is ignored otherwise. 15 | */ 16 | @DoNotStrip 17 | public class MainComponentsRegistry { 18 | static { 19 | SoLoader.loadLibrary("fabricjni"); 20 | } 21 | 22 | @DoNotStrip private final HybridData mHybridData; 23 | 24 | @DoNotStrip 25 | private native HybridData initHybrid(ComponentFactory componentFactory); 26 | 27 | @DoNotStrip 28 | private MainComponentsRegistry(ComponentFactory componentFactory) { 29 | mHybridData = initHybrid(componentFactory); 30 | } 31 | 32 | @DoNotStrip 33 | public static MainComponentsRegistry register(ComponentFactory componentFactory) { 34 | return new MainComponentsRegistry(componentFactory); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnprojectstructure/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- 1 | package com.rnprojectstructure.newarchitecture.modules; 2 | 3 | import com.facebook.jni.HybridData; 4 | import com.facebook.react.ReactPackage; 5 | import com.facebook.react.ReactPackageTurboModuleManagerDelegate; 6 | import com.facebook.react.bridge.ReactApplicationContext; 7 | import com.facebook.soloader.SoLoader; 8 | import java.util.List; 9 | 10 | /** 11 | * Class responsible to load the TurboModules. This class has native methods and needs a 12 | * corresponding C++ implementation/header file to work correctly (already placed inside the jni/ 13 | * folder for you). 14 | * 15 | *

Please note that this class is used ONLY if you opt-in for the New Architecture (see the 16 | * `newArchEnabled` property). Is ignored otherwise. 17 | */ 18 | public class MainApplicationTurboModuleManagerDelegate 19 | extends ReactPackageTurboModuleManagerDelegate { 20 | 21 | private static volatile boolean sIsSoLibraryLoaded; 22 | 23 | protected MainApplicationTurboModuleManagerDelegate( 24 | ReactApplicationContext reactApplicationContext, List packages) { 25 | super(reactApplicationContext, packages); 26 | } 27 | 28 | protected native HybridData initHybrid(); 29 | 30 | native boolean canCreateTurboModule(String moduleName); 31 | 32 | public static class Builder extends ReactPackageTurboModuleManagerDelegate.Builder { 33 | protected MainApplicationTurboModuleManagerDelegate build( 34 | ReactApplicationContext context, List packages) { 35 | return new MainApplicationTurboModuleManagerDelegate(context, packages); 36 | } 37 | } 38 | 39 | @Override 40 | protected synchronized void maybeLoadOtherSoLibraries() { 41 | if (!sIsSoLibraryLoaded) { 42 | // If you change the name of your application .so file in the Android.mk file, 43 | // make sure you update the name here as well. 44 | SoLoader.loadLibrary("rnprojectstructure_appmodules"); 45 | sIsSoLibraryLoaded = true; 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.13) 2 | 3 | # Define the library name here. 4 | project(rnprojectstructure_appmodules) 5 | 6 | # This file includes all the necessary to let you build your application with the New Architecture. 7 | include(${REACT_ANDROID_DIR}/cmake-utils/ReactNative-application.cmake) 8 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- 1 | #include "MainApplicationModuleProvider.h" 2 | 3 | #include 4 | #include 5 | 6 | namespace facebook { 7 | namespace react { 8 | 9 | std::shared_ptr MainApplicationModuleProvider( 10 | const std::string &moduleName, 11 | const JavaTurboModule::InitParams ¶ms) { 12 | // Here you can provide your own module provider for TurboModules coming from 13 | // either your application or from external libraries. The approach to follow 14 | // is similar to the following (for a library called `samplelibrary`: 15 | // 16 | // auto module = samplelibrary_ModuleProvider(moduleName, params); 17 | // if (module != nullptr) { 18 | // return module; 19 | // } 20 | // return rncore_ModuleProvider(moduleName, params); 21 | 22 | // Module providers autolinked by RN CLI 23 | auto rncli_module = rncli_ModuleProvider(moduleName, params); 24 | if (rncli_module != nullptr) { 25 | return rncli_module; 26 | } 27 | 28 | return rncore_ModuleProvider(moduleName, params); 29 | } 30 | 31 | } // namespace react 32 | } // namespace facebook 33 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | #include 7 | 8 | namespace facebook { 9 | namespace react { 10 | 11 | std::shared_ptr MainApplicationModuleProvider( 12 | const std::string &moduleName, 13 | const JavaTurboModule::InitParams ¶ms); 14 | 15 | } // namespace react 16 | } // namespace facebook 17 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- 1 | #include "MainApplicationTurboModuleManagerDelegate.h" 2 | #include "MainApplicationModuleProvider.h" 3 | 4 | namespace facebook { 5 | namespace react { 6 | 7 | jni::local_ref 8 | MainApplicationTurboModuleManagerDelegate::initHybrid( 9 | jni::alias_ref) { 10 | return makeCxxInstance(); 11 | } 12 | 13 | void MainApplicationTurboModuleManagerDelegate::registerNatives() { 14 | registerHybrid({ 15 | makeNativeMethod( 16 | "initHybrid", MainApplicationTurboModuleManagerDelegate::initHybrid), 17 | makeNativeMethod( 18 | "canCreateTurboModule", 19 | MainApplicationTurboModuleManagerDelegate::canCreateTurboModule), 20 | }); 21 | } 22 | 23 | std::shared_ptr 24 | MainApplicationTurboModuleManagerDelegate::getTurboModule( 25 | const std::string &name, 26 | const std::shared_ptr &jsInvoker) { 27 | // Not implemented yet: provide pure-C++ NativeModules here. 28 | return nullptr; 29 | } 30 | 31 | std::shared_ptr 32 | MainApplicationTurboModuleManagerDelegate::getTurboModule( 33 | const std::string &name, 34 | const JavaTurboModule::InitParams ¶ms) { 35 | return MainApplicationModuleProvider(name, params); 36 | } 37 | 38 | bool MainApplicationTurboModuleManagerDelegate::canCreateTurboModule( 39 | const std::string &name) { 40 | return getTurboModule(name, nullptr) != nullptr || 41 | getTurboModule(name, {.moduleName = name}) != nullptr; 42 | } 43 | 44 | } // namespace react 45 | } // namespace facebook 46 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #include 5 | #include 6 | 7 | namespace facebook { 8 | namespace react { 9 | 10 | class MainApplicationTurboModuleManagerDelegate 11 | : public jni::HybridClass< 12 | MainApplicationTurboModuleManagerDelegate, 13 | TurboModuleManagerDelegate> { 14 | public: 15 | // Adapt it to the package you used for your Java class. 16 | static constexpr auto kJavaDescriptor = 17 | "Lcom/rnprojectstructure/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate;"; 18 | 19 | static jni::local_ref initHybrid(jni::alias_ref); 20 | 21 | static void registerNatives(); 22 | 23 | std::shared_ptr getTurboModule( 24 | const std::string &name, 25 | const std::shared_ptr &jsInvoker) override; 26 | std::shared_ptr getTurboModule( 27 | const std::string &name, 28 | const JavaTurboModule::InitParams ¶ms) override; 29 | 30 | /** 31 | * Test-only method. Allows user to verify whether a TurboModule can be 32 | * created by instances of this class. 33 | */ 34 | bool canCreateTurboModule(const std::string &name); 35 | }; 36 | 37 | } // namespace react 38 | } // namespace facebook 39 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- 1 | #include "MainComponentsRegistry.h" 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | namespace facebook { 10 | namespace react { 11 | 12 | MainComponentsRegistry::MainComponentsRegistry(ComponentFactory *delegate) {} 13 | 14 | std::shared_ptr 15 | MainComponentsRegistry::sharedProviderRegistry() { 16 | auto providerRegistry = CoreComponentsRegistry::sharedProviderRegistry(); 17 | 18 | // Autolinked providers registered by RN CLI 19 | rncli_registerProviders(providerRegistry); 20 | 21 | // Custom Fabric Components go here. You can register custom 22 | // components coming from your App or from 3rd party libraries here. 23 | // 24 | // providerRegistry->add(concreteComponentDescriptorProvider< 25 | // AocViewerComponentDescriptor>()); 26 | return providerRegistry; 27 | } 28 | 29 | jni::local_ref 30 | MainComponentsRegistry::initHybrid( 31 | jni::alias_ref, 32 | ComponentFactory *delegate) { 33 | auto instance = makeCxxInstance(delegate); 34 | 35 | auto buildRegistryFunction = 36 | [](EventDispatcher::Weak const &eventDispatcher, 37 | ContextContainer::Shared const &contextContainer) 38 | -> ComponentDescriptorRegistry::Shared { 39 | auto registry = MainComponentsRegistry::sharedProviderRegistry() 40 | ->createComponentDescriptorRegistry( 41 | {eventDispatcher, contextContainer}); 42 | 43 | auto mutableRegistry = 44 | std::const_pointer_cast(registry); 45 | 46 | mutableRegistry->setFallbackComponentDescriptor( 47 | std::make_shared( 48 | ComponentDescriptorParameters{ 49 | eventDispatcher, contextContainer, nullptr})); 50 | 51 | return registry; 52 | }; 53 | 54 | delegate->buildRegistryFunction = buildRegistryFunction; 55 | return instance; 56 | } 57 | 58 | void MainComponentsRegistry::registerNatives() { 59 | registerHybrid({ 60 | makeNativeMethod("initHybrid", MainComponentsRegistry::initHybrid), 61 | }); 62 | } 63 | 64 | } // namespace react 65 | } // namespace facebook 66 | -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | namespace facebook { 9 | namespace react { 10 | 11 | class MainComponentsRegistry 12 | : public facebook::jni::HybridClass { 13 | public: 14 | // Adapt it to the package you used for your Java class. 15 | constexpr static auto kJavaDescriptor = 16 | "Lcom/rnprojectstructure/newarchitecture/components/MainComponentsRegistry;"; 17 | 18 | static void registerNatives(); 19 | 20 | MainComponentsRegistry(ComponentFactory *delegate); 21 | 22 | private: 23 | static std::shared_ptr 24 | sharedProviderRegistry(); 25 | 26 | static jni::local_ref initHybrid( 27 | jni::alias_ref, 28 | ComponentFactory *delegate); 29 | }; 30 | 31 | } // namespace react 32 | } // namespace facebook 33 | -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "MainApplicationTurboModuleManagerDelegate.h" 3 | #include "MainComponentsRegistry.h" 4 | 5 | JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *) { 6 | return facebook::jni::initialize(vm, [] { 7 | facebook::react::MainApplicationTurboModuleManagerDelegate:: 8 | registerNatives(); 9 | facebook::react::MainComponentsRegistry::registerNatives(); 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 21 | 22 | 23 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RNProjectStructure 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "31.0.0" 6 | minSdkVersion = 21 7 | compileSdkVersion = 31 8 | targetSdkVersion = 31 9 | 10 | if (System.properties['os.arch'] == "aarch64") { 11 | // For M1 Users we need to use the NDK 24 which added support for aarch64 12 | ndkVersion = "24.0.8215888" 13 | } else { 14 | // Otherwise we default to the side-by-side NDK version from AGP. 15 | ndkVersion = "21.4.7075529" 16 | } 17 | } 18 | repositories { 19 | google() 20 | mavenCentral() 21 | } 22 | dependencies { 23 | classpath("com.android.tools.build:gradle:7.2.1") 24 | classpath("com.facebook.react:react-native-gradle-plugin") 25 | classpath("de.undercouch:gradle-download-task:5.0.1") 26 | // NOTE: Do not place your application dependencies here; they belong 27 | // in the individual module build.gradle files 28 | } 29 | } 30 | 31 | allprojects { 32 | repositories { 33 | maven { 34 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 35 | url("$rootDir/../node_modules/react-native/android") 36 | } 37 | maven { 38 | // Android JSC is installed from npm 39 | url("$rootDir/../node_modules/jsc-android/dist") 40 | } 41 | mavenCentral { 42 | // We don't want to fetch react-native from Maven Central as there are 43 | // older versions over there. 44 | content { 45 | excludeGroup "com.facebook.react" 46 | } 47 | } 48 | google() 49 | maven { url 'https://www.jitpack.io' } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m 13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | # AndroidX package structure to make it clearer which packages are bundled with the 21 | # Android operating system, and which are packaged with your app's APK 22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 | android.useAndroidX=true 24 | # Automatically convert third-party libraries to use AndroidX 25 | android.enableJetifier=true 26 | 27 | # Version of flipper SDK to use with React Native 28 | FLIPPER_VERSION=0.125.0 29 | 30 | # Use this property to specify which architecture you want to build. 31 | # You can also override it from the CLI using 32 | # ./gradlew -PreactNativeArchitectures=x86_64 33 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 34 | 35 | # Use this property to enable support to the new architecture. 36 | # This will allow you to use TurboModules and the Fabric render in 37 | # your application. You should enable this flag either if you want 38 | # to write custom TurboModules/Fabric components OR use libraries that 39 | # are providing them. 40 | newArchEnabled=false 41 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright © 2015-2021 the original authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | # 21 | # Gradle start up script for POSIX generated by Gradle. 22 | # 23 | # Important for running: 24 | # 25 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 26 | # noncompliant, but you have some other compliant shell such as ksh or 27 | # bash, then to run this script, type that shell name before the whole 28 | # command line, like: 29 | # 30 | # ksh Gradle 31 | # 32 | # Busybox and similar reduced shells will NOT work, because this script 33 | # requires all of these POSIX shell features: 34 | # * functions; 35 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 36 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 37 | # * compound commands having a testable exit status, especially «case»; 38 | # * various built-in commands including «command», «set», and «ulimit». 39 | # 40 | # Important for patching: 41 | # 42 | # (2) This script targets any POSIX shell, so it avoids extensions provided 43 | # by Bash, Ksh, etc; in particular arrays are avoided. 44 | # 45 | # The "traditional" practice of packing multiple parameters into a 46 | # space-separated string is a well documented source of bugs and security 47 | # problems, so this is (mostly) avoided, by progressively accumulating 48 | # options in "$@", and eventually passing that to Java. 49 | # 50 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 51 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 52 | # see the in-line comments for details. 53 | # 54 | # There are tweaks for specific operating systems such as AIX, CygWin, 55 | # Darwin, MinGW, and NonStop. 56 | # 57 | # (3) This script is generated from the Groovy template 58 | # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 59 | # within the Gradle project. 60 | # 61 | # You can find Gradle at https://github.com/gradle/gradle/. 62 | # 63 | ############################################################################## 64 | 65 | # Attempt to set APP_HOME 66 | 67 | # Resolve links: $0 may be a link 68 | app_path=$0 69 | 70 | # Need this for daisy-chained symlinks. 71 | while 72 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 73 | [ -h "$app_path" ] 74 | do 75 | ls=$( ls -ld "$app_path" ) 76 | link=${ls#*' -> '} 77 | case $link in #( 78 | /*) app_path=$link ;; #( 79 | *) app_path=$APP_HOME$link ;; 80 | esac 81 | done 82 | 83 | APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit 84 | 85 | APP_NAME="Gradle" 86 | APP_BASE_NAME=${0##*/} 87 | 88 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 89 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 90 | 91 | # Use the maximum available, or set MAX_FD != -1 to use that value. 92 | MAX_FD=maximum 93 | 94 | warn () { 95 | echo "$*" 96 | } >&2 97 | 98 | die () { 99 | echo 100 | echo "$*" 101 | echo 102 | exit 1 103 | } >&2 104 | 105 | # OS specific support (must be 'true' or 'false'). 106 | cygwin=false 107 | msys=false 108 | darwin=false 109 | nonstop=false 110 | case "$( uname )" in #( 111 | CYGWIN* ) cygwin=true ;; #( 112 | Darwin* ) darwin=true ;; #( 113 | MSYS* | MINGW* ) msys=true ;; #( 114 | NONSTOP* ) nonstop=true ;; 115 | esac 116 | 117 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 118 | 119 | 120 | # Determine the Java command to use to start the JVM. 121 | if [ -n "$JAVA_HOME" ] ; then 122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 | # IBM's JDK on AIX uses strange locations for the executables 124 | JAVACMD=$JAVA_HOME/jre/sh/java 125 | else 126 | JAVACMD=$JAVA_HOME/bin/java 127 | fi 128 | if [ ! -x "$JAVACMD" ] ; then 129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 | 131 | Please set the JAVA_HOME variable in your environment to match the 132 | location of your Java installation." 133 | fi 134 | else 135 | JAVACMD=java 136 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 137 | 138 | Please set the JAVA_HOME variable in your environment to match the 139 | location of your Java installation." 140 | fi 141 | 142 | # Increase the maximum file descriptors if we can. 143 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 144 | case $MAX_FD in #( 145 | max*) 146 | MAX_FD=$( ulimit -H -n ) || 147 | warn "Could not query maximum file descriptor limit" 148 | esac 149 | case $MAX_FD in #( 150 | '' | soft) :;; #( 151 | *) 152 | ulimit -n "$MAX_FD" || 153 | warn "Could not set maximum file descriptor limit to $MAX_FD" 154 | esac 155 | fi 156 | 157 | # Collect all arguments for the java command, stacking in reverse order: 158 | # * args from the command line 159 | # * the main class name 160 | # * -classpath 161 | # * -D...appname settings 162 | # * --module-path (only if needed) 163 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 164 | 165 | # For Cygwin or MSYS, switch paths to Windows format before running java 166 | if "$cygwin" || "$msys" ; then 167 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 168 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 169 | 170 | JAVACMD=$( cygpath --unix "$JAVACMD" ) 171 | 172 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 173 | for arg do 174 | if 175 | case $arg in #( 176 | -*) false ;; # don't mess with options #( 177 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 178 | [ -e "$t" ] ;; #( 179 | *) false ;; 180 | esac 181 | then 182 | arg=$( cygpath --path --ignore --mixed "$arg" ) 183 | fi 184 | # Roll the args list around exactly as many times as the number of 185 | # args, so each arg winds up back in the position where it started, but 186 | # possibly modified. 187 | # 188 | # NB: a `for` loop captures its iteration list before it begins, so 189 | # changing the positional parameters here affects neither the number of 190 | # iterations, nor the values presented in `arg`. 191 | shift # remove old arg 192 | set -- "$@" "$arg" # push replacement arg 193 | done 194 | fi 195 | 196 | # Collect all arguments for the java command; 197 | # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of 198 | # shell script including quotes and variable substitutions, so put them in 199 | # double quotes to make sure that they get re-expanded; and 200 | # * put everything else in single quotes, so that it's not re-expanded. 201 | 202 | set -- \ 203 | "-Dorg.gradle.appname=$APP_BASE_NAME" \ 204 | -classpath "$CLASSPATH" \ 205 | org.gradle.wrapper.GradleWrapperMain \ 206 | "$@" 207 | 208 | # Use "xargs" to parse quoted args. 209 | # 210 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 211 | # 212 | # In Bash we could simply go: 213 | # 214 | # readarray ARGS < <( xargs -n1 <<<"$var" ) && 215 | # set -- "${ARGS[@]}" "$@" 216 | # 217 | # but POSIX shell has neither arrays nor command substitution, so instead we 218 | # post-process each arg (as a line of input to sed) to backslash-escape any 219 | # character that might be a shell metacharacter, then use eval to reverse 220 | # that process (while maintaining the separation between arguments), and wrap 221 | # the whole thing up as a single "set" statement. 222 | # 223 | # This will of course break if any of these variables contains a newline or 224 | # an unmatched quote. 225 | # 226 | 227 | eval "set -- $( 228 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 229 | xargs -n1 | 230 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 231 | tr '\n' ' ' 232 | )" '"$@"' 233 | 234 | exec "$JAVACMD" "$@" 235 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /android/link-assets-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "migIndex": 1, 3 | "data": [ 4 | { 5 | "path": "src/assets/fonts/Montserrat-Bold.ttf", 6 | "sha1": "04052dc3b846609216de1e0cbcec337c6b6e74f6" 7 | }, 8 | { 9 | "path": "src/assets/fonts/Montserrat-Light.ttf", 10 | "sha1": "6f21894a80049259ef71fcba135218695b41b67a" 11 | }, 12 | { 13 | "path": "src/assets/fonts/Montserrat-Medium.ttf", 14 | "sha1": "6b57d12e018c64352e202f8ef3bf7f431f76d935" 15 | }, 16 | { 17 | "path": "src/assets/fonts/Montserrat-Regular.ttf", 18 | "sha1": "de57aa03e4821fdbe6c34ec2c895e8b5c914e837" 19 | } 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNProjectStructure' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/react-native-gradle-plugin') 5 | 6 | if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { 7 | include(":ReactAndroid") 8 | project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid') 9 | include(":ReactAndroid:hermes-engine") 10 | project(":ReactAndroid:hermes-engine").projectDir = file('../node_modules/react-native/ReactAndroid/hermes-engine') 11 | } 12 | -------------------------------------------------------------------------------- /android_run.sh: -------------------------------------------------------------------------------- 1 | reset 2 | export ANDROID_HOME=/Users/mac/Library/Android/sdk 3 | export PATH=$PATH:$ANDROID_HOME/emulator 4 | export PATH=$PATH:$ANDROID_HOME/tools 5 | export PATH=$PATH:$ANDROID_HOME/tools/bin 6 | export PATH=$PATH:$ANDROID_HOME/platform-tools 7 | adb devices 8 | npx react-native run-android -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNProjectStructure", 3 | "displayName": "RNProjectStructure" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | plugins: [ 4 | [ 5 | 'module:react-native-dotenv', 6 | { 7 | moduleName: '@env', 8 | path: '.env', 9 | blacklist: null, 10 | whitelist: null, 11 | safe: true, 12 | allowUndefined: true, 13 | }, 14 | ], 15 | ], 16 | }; 17 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | # This `.xcode.env` file is versioned and is used to source the environment 2 | # used when running script phases inside Xcode. 3 | # To customize your local environment, you can create an `.xcode.env.local` 4 | # file that is not versioned. 5 | 6 | # NODE_BINARY variable contains the PATH to the node executable. 7 | # 8 | # Customize the NODE_BINARY variable here. 9 | # For example, to use nvm with brew, add the following line 10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use 11 | export NODE_BINARY=$(command -v node) 12 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | require_relative '../node_modules/react-native/scripts/react_native_pods' 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 | 4 | platform :ios, '12.4' 5 | install! 'cocoapods', :deterministic_uuids => false 6 | 7 | target 'RNProjectStructure' do 8 | config = use_native_modules! 9 | 10 | # Flags change depending on the env values. 11 | flags = get_default_flags() 12 | 13 | use_react_native!( 14 | :path => config[:reactNativePath], 15 | # Hermes is now enabled by default. Disable by setting this flag to false. 16 | # Upcoming versions of React Native may rely on get_default_flags(), but 17 | # we make it explicit here to aid in the React Native upgrade process. 18 | :hermes_enabled => true, 19 | :fabric_enabled => flags[:fabric_enabled], 20 | # Enables Flipper. 21 | # 22 | # Note that if you have use_frameworks! enabled, Flipper will not work and 23 | # you should disable the next line. 24 | :flipper_configuration => FlipperConfiguration.enabled, 25 | # An absolute path to your application root. 26 | :app_path => "#{Pod::Config.instance.installation_root}/.." 27 | ) 28 | 29 | target 'RNProjectStructureTests' do 30 | inherit! :complete 31 | # Pods for testing 32 | end 33 | 34 | post_install do |installer| 35 | react_native_post_install( 36 | installer, 37 | # Set `mac_catalyst_enabled` to `true` in order to apply patches 38 | # necessary for Mac Catalyst builds 39 | :mac_catalyst_enabled => false 40 | ) 41 | __apply_Xcode_12_5_M1_post_install_workaround(installer) 42 | end 43 | end 44 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost (1.76.0) 3 | - CocoaAsyncSocket (7.6.5) 4 | - DoubleConversion (1.1.6) 5 | - FBLazyVector (0.70.6) 6 | - FBReactNativeSpec (0.70.6): 7 | - RCT-Folly (= 2021.07.22.00) 8 | - RCTRequired (= 0.70.6) 9 | - RCTTypeSafety (= 0.70.6) 10 | - React-Core (= 0.70.6) 11 | - React-jsi (= 0.70.6) 12 | - ReactCommon/turbomodule/core (= 0.70.6) 13 | - Flipper (0.125.0): 14 | - Flipper-Folly (~> 2.6) 15 | - Flipper-RSocket (~> 1.4) 16 | - Flipper-Boost-iOSX (1.76.0.1.11) 17 | - Flipper-DoubleConversion (3.2.0.1) 18 | - Flipper-Fmt (7.1.7) 19 | - Flipper-Folly (2.6.10): 20 | - Flipper-Boost-iOSX 21 | - Flipper-DoubleConversion 22 | - Flipper-Fmt (= 7.1.7) 23 | - Flipper-Glog 24 | - libevent (~> 2.1.12) 25 | - OpenSSL-Universal (= 1.1.1100) 26 | - Flipper-Glog (0.5.0.5) 27 | - Flipper-PeerTalk (0.0.4) 28 | - Flipper-RSocket (1.4.3): 29 | - Flipper-Folly (~> 2.6) 30 | - FlipperKit (0.125.0): 31 | - FlipperKit/Core (= 0.125.0) 32 | - FlipperKit/Core (0.125.0): 33 | - Flipper (~> 0.125.0) 34 | - FlipperKit/CppBridge 35 | - FlipperKit/FBCxxFollyDynamicConvert 36 | - FlipperKit/FBDefines 37 | - FlipperKit/FKPortForwarding 38 | - SocketRocket (~> 0.6.0) 39 | - FlipperKit/CppBridge (0.125.0): 40 | - Flipper (~> 0.125.0) 41 | - FlipperKit/FBCxxFollyDynamicConvert (0.125.0): 42 | - Flipper-Folly (~> 2.6) 43 | - FlipperKit/FBDefines (0.125.0) 44 | - FlipperKit/FKPortForwarding (0.125.0): 45 | - CocoaAsyncSocket (~> 7.6) 46 | - Flipper-PeerTalk (~> 0.0.4) 47 | - FlipperKit/FlipperKitHighlightOverlay (0.125.0) 48 | - FlipperKit/FlipperKitLayoutHelpers (0.125.0): 49 | - FlipperKit/Core 50 | - FlipperKit/FlipperKitHighlightOverlay 51 | - FlipperKit/FlipperKitLayoutTextSearchable 52 | - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0): 53 | - FlipperKit/Core 54 | - FlipperKit/FlipperKitHighlightOverlay 55 | - FlipperKit/FlipperKitLayoutHelpers 56 | - YogaKit (~> 1.18) 57 | - FlipperKit/FlipperKitLayoutPlugin (0.125.0): 58 | - FlipperKit/Core 59 | - FlipperKit/FlipperKitHighlightOverlay 60 | - FlipperKit/FlipperKitLayoutHelpers 61 | - FlipperKit/FlipperKitLayoutIOSDescriptors 62 | - FlipperKit/FlipperKitLayoutTextSearchable 63 | - YogaKit (~> 1.18) 64 | - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0) 65 | - FlipperKit/FlipperKitNetworkPlugin (0.125.0): 66 | - FlipperKit/Core 67 | - FlipperKit/FlipperKitReactPlugin (0.125.0): 68 | - FlipperKit/Core 69 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0): 70 | - FlipperKit/Core 71 | - FlipperKit/SKIOSNetworkPlugin (0.125.0): 72 | - FlipperKit/Core 73 | - FlipperKit/FlipperKitNetworkPlugin 74 | - fmt (6.2.1) 75 | - glog (0.3.5) 76 | - hermes-engine (0.70.6) 77 | - libevent (2.1.12) 78 | - OpenSSL-Universal (1.1.1100) 79 | - RCT-Folly (2021.07.22.00): 80 | - boost 81 | - DoubleConversion 82 | - fmt (~> 6.2.1) 83 | - glog 84 | - RCT-Folly/Default (= 2021.07.22.00) 85 | - RCT-Folly/Default (2021.07.22.00): 86 | - boost 87 | - DoubleConversion 88 | - fmt (~> 6.2.1) 89 | - glog 90 | - RCT-Folly/Futures (2021.07.22.00): 91 | - boost 92 | - DoubleConversion 93 | - fmt (~> 6.2.1) 94 | - glog 95 | - libevent 96 | - RCTRequired (0.70.6) 97 | - RCTTypeSafety (0.70.6): 98 | - FBLazyVector (= 0.70.6) 99 | - RCTRequired (= 0.70.6) 100 | - React-Core (= 0.70.6) 101 | - React (0.70.6): 102 | - React-Core (= 0.70.6) 103 | - React-Core/DevSupport (= 0.70.6) 104 | - React-Core/RCTWebSocket (= 0.70.6) 105 | - React-RCTActionSheet (= 0.70.6) 106 | - React-RCTAnimation (= 0.70.6) 107 | - React-RCTBlob (= 0.70.6) 108 | - React-RCTImage (= 0.70.6) 109 | - React-RCTLinking (= 0.70.6) 110 | - React-RCTNetwork (= 0.70.6) 111 | - React-RCTSettings (= 0.70.6) 112 | - React-RCTText (= 0.70.6) 113 | - React-RCTVibration (= 0.70.6) 114 | - React-bridging (0.70.6): 115 | - RCT-Folly (= 2021.07.22.00) 116 | - React-jsi (= 0.70.6) 117 | - React-callinvoker (0.70.6) 118 | - React-Codegen (0.70.6): 119 | - FBReactNativeSpec (= 0.70.6) 120 | - RCT-Folly (= 2021.07.22.00) 121 | - RCTRequired (= 0.70.6) 122 | - RCTTypeSafety (= 0.70.6) 123 | - React-Core (= 0.70.6) 124 | - React-jsi (= 0.70.6) 125 | - React-jsiexecutor (= 0.70.6) 126 | - ReactCommon/turbomodule/core (= 0.70.6) 127 | - React-Core (0.70.6): 128 | - glog 129 | - RCT-Folly (= 2021.07.22.00) 130 | - React-Core/Default (= 0.70.6) 131 | - React-cxxreact (= 0.70.6) 132 | - React-jsi (= 0.70.6) 133 | - React-jsiexecutor (= 0.70.6) 134 | - React-perflogger (= 0.70.6) 135 | - Yoga 136 | - React-Core/CoreModulesHeaders (0.70.6): 137 | - glog 138 | - RCT-Folly (= 2021.07.22.00) 139 | - React-Core/Default 140 | - React-cxxreact (= 0.70.6) 141 | - React-jsi (= 0.70.6) 142 | - React-jsiexecutor (= 0.70.6) 143 | - React-perflogger (= 0.70.6) 144 | - Yoga 145 | - React-Core/Default (0.70.6): 146 | - glog 147 | - RCT-Folly (= 2021.07.22.00) 148 | - React-cxxreact (= 0.70.6) 149 | - React-jsi (= 0.70.6) 150 | - React-jsiexecutor (= 0.70.6) 151 | - React-perflogger (= 0.70.6) 152 | - Yoga 153 | - React-Core/DevSupport (0.70.6): 154 | - glog 155 | - RCT-Folly (= 2021.07.22.00) 156 | - React-Core/Default (= 0.70.6) 157 | - React-Core/RCTWebSocket (= 0.70.6) 158 | - React-cxxreact (= 0.70.6) 159 | - React-jsi (= 0.70.6) 160 | - React-jsiexecutor (= 0.70.6) 161 | - React-jsinspector (= 0.70.6) 162 | - React-perflogger (= 0.70.6) 163 | - Yoga 164 | - React-Core/RCTActionSheetHeaders (0.70.6): 165 | - glog 166 | - RCT-Folly (= 2021.07.22.00) 167 | - React-Core/Default 168 | - React-cxxreact (= 0.70.6) 169 | - React-jsi (= 0.70.6) 170 | - React-jsiexecutor (= 0.70.6) 171 | - React-perflogger (= 0.70.6) 172 | - Yoga 173 | - React-Core/RCTAnimationHeaders (0.70.6): 174 | - glog 175 | - RCT-Folly (= 2021.07.22.00) 176 | - React-Core/Default 177 | - React-cxxreact (= 0.70.6) 178 | - React-jsi (= 0.70.6) 179 | - React-jsiexecutor (= 0.70.6) 180 | - React-perflogger (= 0.70.6) 181 | - Yoga 182 | - React-Core/RCTBlobHeaders (0.70.6): 183 | - glog 184 | - RCT-Folly (= 2021.07.22.00) 185 | - React-Core/Default 186 | - React-cxxreact (= 0.70.6) 187 | - React-jsi (= 0.70.6) 188 | - React-jsiexecutor (= 0.70.6) 189 | - React-perflogger (= 0.70.6) 190 | - Yoga 191 | - React-Core/RCTImageHeaders (0.70.6): 192 | - glog 193 | - RCT-Folly (= 2021.07.22.00) 194 | - React-Core/Default 195 | - React-cxxreact (= 0.70.6) 196 | - React-jsi (= 0.70.6) 197 | - React-jsiexecutor (= 0.70.6) 198 | - React-perflogger (= 0.70.6) 199 | - Yoga 200 | - React-Core/RCTLinkingHeaders (0.70.6): 201 | - glog 202 | - RCT-Folly (= 2021.07.22.00) 203 | - React-Core/Default 204 | - React-cxxreact (= 0.70.6) 205 | - React-jsi (= 0.70.6) 206 | - React-jsiexecutor (= 0.70.6) 207 | - React-perflogger (= 0.70.6) 208 | - Yoga 209 | - React-Core/RCTNetworkHeaders (0.70.6): 210 | - glog 211 | - RCT-Folly (= 2021.07.22.00) 212 | - React-Core/Default 213 | - React-cxxreact (= 0.70.6) 214 | - React-jsi (= 0.70.6) 215 | - React-jsiexecutor (= 0.70.6) 216 | - React-perflogger (= 0.70.6) 217 | - Yoga 218 | - React-Core/RCTSettingsHeaders (0.70.6): 219 | - glog 220 | - RCT-Folly (= 2021.07.22.00) 221 | - React-Core/Default 222 | - React-cxxreact (= 0.70.6) 223 | - React-jsi (= 0.70.6) 224 | - React-jsiexecutor (= 0.70.6) 225 | - React-perflogger (= 0.70.6) 226 | - Yoga 227 | - React-Core/RCTTextHeaders (0.70.6): 228 | - glog 229 | - RCT-Folly (= 2021.07.22.00) 230 | - React-Core/Default 231 | - React-cxxreact (= 0.70.6) 232 | - React-jsi (= 0.70.6) 233 | - React-jsiexecutor (= 0.70.6) 234 | - React-perflogger (= 0.70.6) 235 | - Yoga 236 | - React-Core/RCTVibrationHeaders (0.70.6): 237 | - glog 238 | - RCT-Folly (= 2021.07.22.00) 239 | - React-Core/Default 240 | - React-cxxreact (= 0.70.6) 241 | - React-jsi (= 0.70.6) 242 | - React-jsiexecutor (= 0.70.6) 243 | - React-perflogger (= 0.70.6) 244 | - Yoga 245 | - React-Core/RCTWebSocket (0.70.6): 246 | - glog 247 | - RCT-Folly (= 2021.07.22.00) 248 | - React-Core/Default (= 0.70.6) 249 | - React-cxxreact (= 0.70.6) 250 | - React-jsi (= 0.70.6) 251 | - React-jsiexecutor (= 0.70.6) 252 | - React-perflogger (= 0.70.6) 253 | - Yoga 254 | - React-CoreModules (0.70.6): 255 | - RCT-Folly (= 2021.07.22.00) 256 | - RCTTypeSafety (= 0.70.6) 257 | - React-Codegen (= 0.70.6) 258 | - React-Core/CoreModulesHeaders (= 0.70.6) 259 | - React-jsi (= 0.70.6) 260 | - React-RCTImage (= 0.70.6) 261 | - ReactCommon/turbomodule/core (= 0.70.6) 262 | - React-cxxreact (0.70.6): 263 | - boost (= 1.76.0) 264 | - DoubleConversion 265 | - glog 266 | - RCT-Folly (= 2021.07.22.00) 267 | - React-callinvoker (= 0.70.6) 268 | - React-jsi (= 0.70.6) 269 | - React-jsinspector (= 0.70.6) 270 | - React-logger (= 0.70.6) 271 | - React-perflogger (= 0.70.6) 272 | - React-runtimeexecutor (= 0.70.6) 273 | - React-hermes (0.70.6): 274 | - DoubleConversion 275 | - glog 276 | - hermes-engine 277 | - RCT-Folly (= 2021.07.22.00) 278 | - RCT-Folly/Futures (= 2021.07.22.00) 279 | - React-cxxreact (= 0.70.6) 280 | - React-jsi (= 0.70.6) 281 | - React-jsiexecutor (= 0.70.6) 282 | - React-jsinspector (= 0.70.6) 283 | - React-perflogger (= 0.70.6) 284 | - React-jsi (0.70.6): 285 | - boost (= 1.76.0) 286 | - DoubleConversion 287 | - glog 288 | - RCT-Folly (= 2021.07.22.00) 289 | - React-jsi/Default (= 0.70.6) 290 | - React-jsi/Default (0.70.6): 291 | - boost (= 1.76.0) 292 | - DoubleConversion 293 | - glog 294 | - RCT-Folly (= 2021.07.22.00) 295 | - React-jsiexecutor (0.70.6): 296 | - DoubleConversion 297 | - glog 298 | - RCT-Folly (= 2021.07.22.00) 299 | - React-cxxreact (= 0.70.6) 300 | - React-jsi (= 0.70.6) 301 | - React-perflogger (= 0.70.6) 302 | - React-jsinspector (0.70.6) 303 | - React-logger (0.70.6): 304 | - glog 305 | - react-native-safe-area-context (4.5.1): 306 | - RCT-Folly 307 | - RCTRequired 308 | - RCTTypeSafety 309 | - React-Core 310 | - ReactCommon/turbomodule/core 311 | - React-perflogger (0.70.6) 312 | - React-RCTActionSheet (0.70.6): 313 | - React-Core/RCTActionSheetHeaders (= 0.70.6) 314 | - React-RCTAnimation (0.70.6): 315 | - RCT-Folly (= 2021.07.22.00) 316 | - RCTTypeSafety (= 0.70.6) 317 | - React-Codegen (= 0.70.6) 318 | - React-Core/RCTAnimationHeaders (= 0.70.6) 319 | - React-jsi (= 0.70.6) 320 | - ReactCommon/turbomodule/core (= 0.70.6) 321 | - React-RCTBlob (0.70.6): 322 | - RCT-Folly (= 2021.07.22.00) 323 | - React-Codegen (= 0.70.6) 324 | - React-Core/RCTBlobHeaders (= 0.70.6) 325 | - React-Core/RCTWebSocket (= 0.70.6) 326 | - React-jsi (= 0.70.6) 327 | - React-RCTNetwork (= 0.70.6) 328 | - ReactCommon/turbomodule/core (= 0.70.6) 329 | - React-RCTImage (0.70.6): 330 | - RCT-Folly (= 2021.07.22.00) 331 | - RCTTypeSafety (= 0.70.6) 332 | - React-Codegen (= 0.70.6) 333 | - React-Core/RCTImageHeaders (= 0.70.6) 334 | - React-jsi (= 0.70.6) 335 | - React-RCTNetwork (= 0.70.6) 336 | - ReactCommon/turbomodule/core (= 0.70.6) 337 | - React-RCTLinking (0.70.6): 338 | - React-Codegen (= 0.70.6) 339 | - React-Core/RCTLinkingHeaders (= 0.70.6) 340 | - React-jsi (= 0.70.6) 341 | - ReactCommon/turbomodule/core (= 0.70.6) 342 | - React-RCTNetwork (0.70.6): 343 | - RCT-Folly (= 2021.07.22.00) 344 | - RCTTypeSafety (= 0.70.6) 345 | - React-Codegen (= 0.70.6) 346 | - React-Core/RCTNetworkHeaders (= 0.70.6) 347 | - React-jsi (= 0.70.6) 348 | - ReactCommon/turbomodule/core (= 0.70.6) 349 | - React-RCTSettings (0.70.6): 350 | - RCT-Folly (= 2021.07.22.00) 351 | - RCTTypeSafety (= 0.70.6) 352 | - React-Codegen (= 0.70.6) 353 | - React-Core/RCTSettingsHeaders (= 0.70.6) 354 | - React-jsi (= 0.70.6) 355 | - ReactCommon/turbomodule/core (= 0.70.6) 356 | - React-RCTText (0.70.6): 357 | - React-Core/RCTTextHeaders (= 0.70.6) 358 | - React-RCTVibration (0.70.6): 359 | - RCT-Folly (= 2021.07.22.00) 360 | - React-Codegen (= 0.70.6) 361 | - React-Core/RCTVibrationHeaders (= 0.70.6) 362 | - React-jsi (= 0.70.6) 363 | - ReactCommon/turbomodule/core (= 0.70.6) 364 | - React-runtimeexecutor (0.70.6): 365 | - React-jsi (= 0.70.6) 366 | - ReactCommon/turbomodule/core (0.70.6): 367 | - DoubleConversion 368 | - glog 369 | - RCT-Folly (= 2021.07.22.00) 370 | - React-bridging (= 0.70.6) 371 | - React-callinvoker (= 0.70.6) 372 | - React-Core (= 0.70.6) 373 | - React-cxxreact (= 0.70.6) 374 | - React-jsi (= 0.70.6) 375 | - React-logger (= 0.70.6) 376 | - React-perflogger (= 0.70.6) 377 | - RNCAsyncStorage (1.12.1): 378 | - React-Core 379 | - RNCMaskedView (0.1.11): 380 | - React 381 | - RNGestureHandler (2.9.0): 382 | - React-Core 383 | - RNReanimated (3.0.2): 384 | - DoubleConversion 385 | - FBLazyVector 386 | - FBReactNativeSpec 387 | - glog 388 | - RCT-Folly 389 | - RCTRequired 390 | - RCTTypeSafety 391 | - React-callinvoker 392 | - React-Core 393 | - React-Core/DevSupport 394 | - React-Core/RCTWebSocket 395 | - React-CoreModules 396 | - React-cxxreact 397 | - React-jsi 398 | - React-jsiexecutor 399 | - React-jsinspector 400 | - React-RCTActionSheet 401 | - React-RCTAnimation 402 | - React-RCTBlob 403 | - React-RCTImage 404 | - React-RCTLinking 405 | - React-RCTNetwork 406 | - React-RCTSettings 407 | - React-RCTText 408 | - ReactCommon/turbomodule/core 409 | - Yoga 410 | - RNScreens (3.20.0): 411 | - React-Core 412 | - React-RCTImage 413 | - SocketRocket (0.6.0) 414 | - Yoga (1.14.0) 415 | - YogaKit (1.18.1): 416 | - Yoga (~> 1.14) 417 | 418 | DEPENDENCIES: 419 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) 420 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 421 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 422 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) 423 | - Flipper (= 0.125.0) 424 | - Flipper-Boost-iOSX (= 1.76.0.1.11) 425 | - Flipper-DoubleConversion (= 3.2.0.1) 426 | - Flipper-Fmt (= 7.1.7) 427 | - Flipper-Folly (= 2.6.10) 428 | - Flipper-Glog (= 0.5.0.5) 429 | - Flipper-PeerTalk (= 0.0.4) 430 | - Flipper-RSocket (= 1.4.3) 431 | - FlipperKit (= 0.125.0) 432 | - FlipperKit/Core (= 0.125.0) 433 | - FlipperKit/CppBridge (= 0.125.0) 434 | - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0) 435 | - FlipperKit/FBDefines (= 0.125.0) 436 | - FlipperKit/FKPortForwarding (= 0.125.0) 437 | - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0) 438 | - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0) 439 | - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0) 440 | - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0) 441 | - FlipperKit/FlipperKitReactPlugin (= 0.125.0) 442 | - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0) 443 | - FlipperKit/SKIOSNetworkPlugin (= 0.125.0) 444 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 445 | - hermes-engine (from `../node_modules/react-native/sdks/hermes/hermes-engine.podspec`) 446 | - libevent (~> 2.1.12) 447 | - OpenSSL-Universal (= 1.1.1100) 448 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 449 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 450 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 451 | - React (from `../node_modules/react-native/`) 452 | - React-bridging (from `../node_modules/react-native/ReactCommon`) 453 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 454 | - React-Codegen (from `build/generated/ios`) 455 | - React-Core (from `../node_modules/react-native/`) 456 | - React-Core/DevSupport (from `../node_modules/react-native/`) 457 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 458 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 459 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 460 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) 461 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 462 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 463 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 464 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`) 465 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) 466 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 467 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 468 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 469 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 470 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 471 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 472 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 473 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 474 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 475 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 476 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 477 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 478 | - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" 479 | - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" 480 | - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) 481 | - RNReanimated (from `../node_modules/react-native-reanimated`) 482 | - RNScreens (from `../node_modules/react-native-screens`) 483 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 484 | 485 | SPEC REPOS: 486 | trunk: 487 | - CocoaAsyncSocket 488 | - Flipper 489 | - Flipper-Boost-iOSX 490 | - Flipper-DoubleConversion 491 | - Flipper-Fmt 492 | - Flipper-Folly 493 | - Flipper-Glog 494 | - Flipper-PeerTalk 495 | - Flipper-RSocket 496 | - FlipperKit 497 | - fmt 498 | - libevent 499 | - OpenSSL-Universal 500 | - SocketRocket 501 | - YogaKit 502 | 503 | EXTERNAL SOURCES: 504 | boost: 505 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" 506 | DoubleConversion: 507 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 508 | FBLazyVector: 509 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 510 | FBReactNativeSpec: 511 | :path: "../node_modules/react-native/React/FBReactNativeSpec" 512 | glog: 513 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 514 | hermes-engine: 515 | :podspec: "../node_modules/react-native/sdks/hermes/hermes-engine.podspec" 516 | RCT-Folly: 517 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 518 | RCTRequired: 519 | :path: "../node_modules/react-native/Libraries/RCTRequired" 520 | RCTTypeSafety: 521 | :path: "../node_modules/react-native/Libraries/TypeSafety" 522 | React: 523 | :path: "../node_modules/react-native/" 524 | React-bridging: 525 | :path: "../node_modules/react-native/ReactCommon" 526 | React-callinvoker: 527 | :path: "../node_modules/react-native/ReactCommon/callinvoker" 528 | React-Codegen: 529 | :path: build/generated/ios 530 | React-Core: 531 | :path: "../node_modules/react-native/" 532 | React-CoreModules: 533 | :path: "../node_modules/react-native/React/CoreModules" 534 | React-cxxreact: 535 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 536 | React-hermes: 537 | :path: "../node_modules/react-native/ReactCommon/hermes" 538 | React-jsi: 539 | :path: "../node_modules/react-native/ReactCommon/jsi" 540 | React-jsiexecutor: 541 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 542 | React-jsinspector: 543 | :path: "../node_modules/react-native/ReactCommon/jsinspector" 544 | React-logger: 545 | :path: "../node_modules/react-native/ReactCommon/logger" 546 | react-native-safe-area-context: 547 | :path: "../node_modules/react-native-safe-area-context" 548 | React-perflogger: 549 | :path: "../node_modules/react-native/ReactCommon/reactperflogger" 550 | React-RCTActionSheet: 551 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 552 | React-RCTAnimation: 553 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 554 | React-RCTBlob: 555 | :path: "../node_modules/react-native/Libraries/Blob" 556 | React-RCTImage: 557 | :path: "../node_modules/react-native/Libraries/Image" 558 | React-RCTLinking: 559 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 560 | React-RCTNetwork: 561 | :path: "../node_modules/react-native/Libraries/Network" 562 | React-RCTSettings: 563 | :path: "../node_modules/react-native/Libraries/Settings" 564 | React-RCTText: 565 | :path: "../node_modules/react-native/Libraries/Text" 566 | React-RCTVibration: 567 | :path: "../node_modules/react-native/Libraries/Vibration" 568 | React-runtimeexecutor: 569 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 570 | ReactCommon: 571 | :path: "../node_modules/react-native/ReactCommon" 572 | RNCAsyncStorage: 573 | :path: "../node_modules/@react-native-community/async-storage" 574 | RNCMaskedView: 575 | :path: "../node_modules/@react-native-community/masked-view" 576 | RNGestureHandler: 577 | :path: "../node_modules/react-native-gesture-handler" 578 | RNReanimated: 579 | :path: "../node_modules/react-native-reanimated" 580 | RNScreens: 581 | :path: "../node_modules/react-native-screens" 582 | Yoga: 583 | :path: "../node_modules/react-native/ReactCommon/yoga" 584 | 585 | SPEC CHECKSUMS: 586 | boost: a7c83b31436843459a1961bfd74b96033dc77234 587 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 588 | DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 589 | FBLazyVector: 48289402952f4f7a4e235de70a9a590aa0b79ef4 590 | FBReactNativeSpec: dd1186fd05255e3457baa2f4ca65e94c2cd1e3ac 591 | Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0 592 | Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c 593 | Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30 594 | Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b 595 | Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 596 | Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446 597 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 598 | Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 599 | FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86 600 | fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 601 | glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b 602 | hermes-engine: 2af7b7a59128f250adfd86f15aa1d5a2ecd39995 603 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 604 | OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c 605 | RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda 606 | RCTRequired: e1866f61af7049eb3d8e08e8b133abd38bc1ca7a 607 | RCTTypeSafety: 27c2ac1b00609a432ced1ae701247593f07f901e 608 | React: bb3e06418d2cc48a84f9666a576c7b38e89cd7db 609 | React-bridging: 572502ec59c9de30309afdc4932e278214288913 610 | React-callinvoker: 6b708b79c69f3359d42f1abb4663f620dbd4dadf 611 | React-Codegen: 74e1cd7cee692a8b983c18df3274b5e749de07c8 612 | React-Core: b587d0a624f9611b0e032505f3d6f25e8daa2bee 613 | React-CoreModules: c6ff48b985e7aa622e82ca51c2c353c7803eb04e 614 | React-cxxreact: ade3d9e63c599afdead3c35f8a8bd12b3da6730b 615 | React-hermes: ed09ae33512bbb8d31b2411778f3af1a2eb681a1 616 | React-jsi: 5a3952e0c6d57460ad9ee2c905025b4c28f71087 617 | React-jsiexecutor: b4a65947391c658450151275aa406f2b8263178f 618 | React-jsinspector: 60769e5a0a6d4b32294a2456077f59d0266f9a8b 619 | React-logger: 1623c216abaa88974afce404dc8f479406bbc3a0 620 | react-native-safe-area-context: f5549f36508b1b7497434baa0cd97d7e470920d4 621 | React-perflogger: 8c79399b0500a30ee8152d0f9f11beae7fc36595 622 | React-RCTActionSheet: 7316773acabb374642b926c19aef1c115df5c466 623 | React-RCTAnimation: 5341e288375451297057391227f691d9b2326c3d 624 | React-RCTBlob: b0615fc2daf2b5684ade8fadcab659f16f6f0efa 625 | React-RCTImage: 6487b9600f268ecedcaa86114d97954d31ad4750 626 | React-RCTLinking: c8018ae9ebfefcec3839d690d4725f8d15e4e4b3 627 | React-RCTNetwork: 8aa63578741e0fe1205c28d7d4b40dbfdabce8a8 628 | React-RCTSettings: d00c15ad369cd62242a4dfcc6f277912b4a84ed3 629 | React-RCTText: f532e5ca52681ecaecea452b3ad7a5b630f50d75 630 | React-RCTVibration: c75ceef7aa60a33b2d5731ebe5800ddde40cefc4 631 | React-runtimeexecutor: 15437b576139df27635400de0599d9844f1ab817 632 | ReactCommon: 349be31adeecffc7986a0de875d7fb0dcf4e251c 633 | RNCAsyncStorage: b03032fdbdb725bea0bd9e5ec5a7272865ae7398 634 | RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489 635 | RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39 636 | RNReanimated: 0a5f87ec1da472cca3e835333fdebe51d983c411 637 | RNScreens: 218801c16a2782546d30bd2026bb625c0302d70f 638 | SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608 639 | Yoga: 99caf8d5ab45e9d637ee6e0174ec16fbbb01bcfc 640 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a 641 | 642 | PODFILE CHECKSUM: ad7116bb38ae903aa67927bc2f320e56173b43ac 643 | 644 | COCOAPODS: 1.11.3 645 | -------------------------------------------------------------------------------- /ios/RNProjectStructure.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00E356F31AD99517003FC87E /* RNProjectStructureTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNProjectStructureTests.m */; }; 11 | 0C80B921A6F3F58F76C31292 /* libPods-RNProjectStructure.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-RNProjectStructure.a */; }; 12 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 15 | 7699B88040F8A987B510C191 /* libPods-RNProjectStructure-RNProjectStructureTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-RNProjectStructure-RNProjectStructureTests.a */; }; 16 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; 17 | 2524551D98E348A2A16924CE /* Montserrat-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 38724C6365C347478806905F /* Montserrat-Bold.ttf */; }; 18 | FE3069AB5D46421BAC12247D /* Montserrat-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DE796DF7DA2F40E8BD169EE6 /* Montserrat-Light.ttf */; }; 19 | C83EE7BCB82C446B87DF8189 /* Montserrat-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 61C0E71087FB41D3BB2A0DD1 /* Montserrat-Medium.ttf */; }; 20 | 33E7BC3385D046E9B8303ABA /* Montserrat-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FB756921F8764CDAB04C3D3C /* Montserrat-Regular.ttf */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 29 | remoteInfo = RNProjectStructure; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 00E356EE1AD99517003FC87E /* RNProjectStructureTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNProjectStructureTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 00E356F21AD99517003FC87E /* RNProjectStructureTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNProjectStructureTests.m; sourceTree = ""; }; 37 | 13B07F961A680F5B00A75B9A /* RNProjectStructure.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNProjectStructure.app; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNProjectStructure/AppDelegate.h; sourceTree = ""; }; 39 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = RNProjectStructure/AppDelegate.mm; sourceTree = ""; }; 40 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNProjectStructure/Images.xcassets; sourceTree = ""; }; 41 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNProjectStructure/Info.plist; sourceTree = ""; }; 42 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNProjectStructure/main.m; sourceTree = ""; }; 43 | 19F6CBCC0A4E27FBF8BF4A61 /* libPods-RNProjectStructure-RNProjectStructureTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNProjectStructure-RNProjectStructureTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 3B4392A12AC88292D35C810B /* Pods-RNProjectStructure.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNProjectStructure.debug.xcconfig"; path = "Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure.debug.xcconfig"; sourceTree = ""; }; 45 | 5709B34CF0A7D63546082F79 /* Pods-RNProjectStructure.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNProjectStructure.release.xcconfig"; path = "Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure.release.xcconfig"; sourceTree = ""; }; 46 | 5B7EB9410499542E8C5724F5 /* Pods-RNProjectStructure-RNProjectStructureTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNProjectStructure-RNProjectStructureTests.debug.xcconfig"; path = "Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests.debug.xcconfig"; sourceTree = ""; }; 47 | 5DCACB8F33CDC322A6C60F78 /* libPods-RNProjectStructure.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNProjectStructure.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = RNProjectStructure/LaunchScreen.storyboard; sourceTree = ""; }; 49 | 89C6BE57DB24E9ADA2F236DE /* Pods-RNProjectStructure-RNProjectStructureTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNProjectStructure-RNProjectStructureTests.release.xcconfig"; path = "Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests.release.xcconfig"; sourceTree = ""; }; 50 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 51 | 38724C6365C347478806905F /* Montserrat-Bold.ttf */ = {isa = PBXFileReference; name = "Montserrat-Bold.ttf"; path = "../src/assets/fonts/Montserrat-Bold.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 52 | DE796DF7DA2F40E8BD169EE6 /* Montserrat-Light.ttf */ = {isa = PBXFileReference; name = "Montserrat-Light.ttf"; path = "../src/assets/fonts/Montserrat-Light.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 53 | 61C0E71087FB41D3BB2A0DD1 /* Montserrat-Medium.ttf */ = {isa = PBXFileReference; name = "Montserrat-Medium.ttf"; path = "../src/assets/fonts/Montserrat-Medium.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 54 | FB756921F8764CDAB04C3D3C /* Montserrat-Regular.ttf */ = {isa = PBXFileReference; name = "Montserrat-Regular.ttf"; path = "../src/assets/fonts/Montserrat-Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 55 | /* End PBXFileReference section */ 56 | 57 | /* Begin PBXFrameworksBuildPhase section */ 58 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 59 | isa = PBXFrameworksBuildPhase; 60 | buildActionMask = 2147483647; 61 | files = ( 62 | 7699B88040F8A987B510C191 /* libPods-RNProjectStructure-RNProjectStructureTests.a in Frameworks */, 63 | ); 64 | runOnlyForDeploymentPostprocessing = 0; 65 | }; 66 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | 0C80B921A6F3F58F76C31292 /* libPods-RNProjectStructure.a in Frameworks */, 71 | ); 72 | runOnlyForDeploymentPostprocessing = 0; 73 | }; 74 | /* End PBXFrameworksBuildPhase section */ 75 | 76 | /* Begin PBXGroup section */ 77 | 00E356EF1AD99517003FC87E /* RNProjectStructureTests */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 00E356F21AD99517003FC87E /* RNProjectStructureTests.m */, 81 | 00E356F01AD99517003FC87E /* Supporting Files */, 82 | ); 83 | path = RNProjectStructureTests; 84 | sourceTree = ""; 85 | }; 86 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 00E356F11AD99517003FC87E /* Info.plist */, 90 | ); 91 | name = "Supporting Files"; 92 | sourceTree = ""; 93 | }; 94 | 13B07FAE1A68108700A75B9A /* RNProjectStructure */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 98 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */, 99 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 100 | 13B07FB61A68108700A75B9A /* Info.plist */, 101 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 102 | 13B07FB71A68108700A75B9A /* main.m */, 103 | ); 104 | name = RNProjectStructure; 105 | sourceTree = ""; 106 | }; 107 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 111 | 5DCACB8F33CDC322A6C60F78 /* libPods-RNProjectStructure.a */, 112 | 19F6CBCC0A4E27FBF8BF4A61 /* libPods-RNProjectStructure-RNProjectStructureTests.a */, 113 | ); 114 | name = Frameworks; 115 | sourceTree = ""; 116 | }; 117 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | ); 121 | name = Libraries; 122 | sourceTree = ""; 123 | }; 124 | 83CBB9F61A601CBA00E9B192 = { 125 | isa = PBXGroup; 126 | children = ( 127 | 13B07FAE1A68108700A75B9A /* RNProjectStructure */, 128 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 129 | 00E356EF1AD99517003FC87E /* RNProjectStructureTests */, 130 | 83CBBA001A601CBA00E9B192 /* Products */, 131 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 132 | BBD78D7AC51CEA395F1C20DB /* Pods */, 133 | 6B80B9D3AA0C4FFAB048E40D /* Resources */, 134 | ); 135 | indentWidth = 2; 136 | sourceTree = ""; 137 | tabWidth = 2; 138 | usesTabs = 0; 139 | }; 140 | 83CBBA001A601CBA00E9B192 /* Products */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 13B07F961A680F5B00A75B9A /* RNProjectStructure.app */, 144 | 00E356EE1AD99517003FC87E /* RNProjectStructureTests.xctest */, 145 | ); 146 | name = Products; 147 | sourceTree = ""; 148 | }; 149 | BBD78D7AC51CEA395F1C20DB /* Pods */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 3B4392A12AC88292D35C810B /* Pods-RNProjectStructure.debug.xcconfig */, 153 | 5709B34CF0A7D63546082F79 /* Pods-RNProjectStructure.release.xcconfig */, 154 | 5B7EB9410499542E8C5724F5 /* Pods-RNProjectStructure-RNProjectStructureTests.debug.xcconfig */, 155 | 89C6BE57DB24E9ADA2F236DE /* Pods-RNProjectStructure-RNProjectStructureTests.release.xcconfig */, 156 | ); 157 | path = Pods; 158 | sourceTree = ""; 159 | }; 160 | 6B80B9D3AA0C4FFAB048E40D /* Resources */ = { 161 | isa = "PBXGroup"; 162 | children = ( 163 | 38724C6365C347478806905F /* Montserrat-Bold.ttf */, 164 | DE796DF7DA2F40E8BD169EE6 /* Montserrat-Light.ttf */, 165 | 61C0E71087FB41D3BB2A0DD1 /* Montserrat-Medium.ttf */, 166 | FB756921F8764CDAB04C3D3C /* Montserrat-Regular.ttf */, 167 | ); 168 | name = Resources; 169 | sourceTree = ""; 170 | path = ""; 171 | }; 172 | /* End PBXGroup section */ 173 | 174 | /* Begin PBXNativeTarget section */ 175 | 00E356ED1AD99517003FC87E /* RNProjectStructureTests */ = { 176 | isa = PBXNativeTarget; 177 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNProjectStructureTests" */; 178 | buildPhases = ( 179 | A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, 180 | 00E356EA1AD99517003FC87E /* Sources */, 181 | 00E356EB1AD99517003FC87E /* Frameworks */, 182 | 00E356EC1AD99517003FC87E /* Resources */, 183 | C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, 184 | F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, 185 | ); 186 | buildRules = ( 187 | ); 188 | dependencies = ( 189 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 190 | ); 191 | name = RNProjectStructureTests; 192 | productName = RNProjectStructureTests; 193 | productReference = 00E356EE1AD99517003FC87E /* RNProjectStructureTests.xctest */; 194 | productType = "com.apple.product-type.bundle.unit-test"; 195 | }; 196 | 13B07F861A680F5B00A75B9A /* RNProjectStructure */ = { 197 | isa = PBXNativeTarget; 198 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNProjectStructure" */; 199 | buildPhases = ( 200 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, 201 | FD10A7F022414F080027D42C /* Start Packager */, 202 | 13B07F871A680F5B00A75B9A /* Sources */, 203 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 204 | 13B07F8E1A680F5B00A75B9A /* Resources */, 205 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 206 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, 207 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, 208 | ); 209 | buildRules = ( 210 | ); 211 | dependencies = ( 212 | ); 213 | name = RNProjectStructure; 214 | productName = RNProjectStructure; 215 | productReference = 13B07F961A680F5B00A75B9A /* RNProjectStructure.app */; 216 | productType = "com.apple.product-type.application"; 217 | }; 218 | /* End PBXNativeTarget section */ 219 | 220 | /* Begin PBXProject section */ 221 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 222 | isa = PBXProject; 223 | attributes = { 224 | LastUpgradeCheck = 1210; 225 | TargetAttributes = { 226 | 00E356ED1AD99517003FC87E = { 227 | CreatedOnToolsVersion = 6.2; 228 | TestTargetID = 13B07F861A680F5B00A75B9A; 229 | }; 230 | 13B07F861A680F5B00A75B9A = { 231 | LastSwiftMigration = 1120; 232 | }; 233 | }; 234 | }; 235 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNProjectStructure" */; 236 | compatibilityVersion = "Xcode 12.0"; 237 | developmentRegion = en; 238 | hasScannedForEncodings = 0; 239 | knownRegions = ( 240 | en, 241 | Base, 242 | ); 243 | mainGroup = 83CBB9F61A601CBA00E9B192; 244 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 245 | projectDirPath = ""; 246 | projectRoot = ""; 247 | targets = ( 248 | 13B07F861A680F5B00A75B9A /* RNProjectStructure */, 249 | 00E356ED1AD99517003FC87E /* RNProjectStructureTests */, 250 | ); 251 | }; 252 | /* End PBXProject section */ 253 | 254 | /* Begin PBXResourcesBuildPhase section */ 255 | 00E356EC1AD99517003FC87E /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 263 | isa = PBXResourcesBuildPhase; 264 | buildActionMask = 2147483647; 265 | files = ( 266 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 267 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 268 | 2524551D98E348A2A16924CE /* Montserrat-Bold.ttf in Resources */, 269 | FE3069AB5D46421BAC12247D /* Montserrat-Light.ttf in Resources */, 270 | C83EE7BCB82C446B87DF8189 /* Montserrat-Medium.ttf in Resources */, 271 | 33E7BC3385D046E9B8303ABA /* Montserrat-Regular.ttf in Resources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | /* End PBXResourcesBuildPhase section */ 276 | 277 | /* Begin PBXShellScriptBuildPhase section */ 278 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 279 | isa = PBXShellScriptBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | ); 283 | inputPaths = ( 284 | "$(SRCROOT)/.xcode.env.local", 285 | "$(SRCROOT)/.xcode.env", 286 | ); 287 | name = "Bundle React Native code and images"; 288 | outputPaths = ( 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | shellPath = /bin/sh; 292 | shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n"; 293 | }; 294 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { 295 | isa = PBXShellScriptBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | ); 299 | inputFileListPaths = ( 300 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-frameworks-${CONFIGURATION}-input-files.xcfilelist", 301 | ); 302 | name = "[CP] Embed Pods Frameworks"; 303 | outputFileListPaths = ( 304 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-frameworks-${CONFIGURATION}-output-files.xcfilelist", 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-frameworks.sh\"\n"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputFileListPaths = ( 317 | ); 318 | inputPaths = ( 319 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 320 | "${PODS_ROOT}/Manifest.lock", 321 | ); 322 | name = "[CP] Check Pods Manifest.lock"; 323 | outputFileListPaths = ( 324 | ); 325 | outputPaths = ( 326 | "$(DERIVED_FILE_DIR)/Pods-RNProjectStructure-RNProjectStructureTests-checkManifestLockResult.txt", 327 | ); 328 | runOnlyForDeploymentPostprocessing = 0; 329 | shellPath = /bin/sh; 330 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 331 | showEnvVarsInLog = 0; 332 | }; 333 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { 334 | isa = PBXShellScriptBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | ); 338 | inputFileListPaths = ( 339 | ); 340 | inputPaths = ( 341 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 342 | "${PODS_ROOT}/Manifest.lock", 343 | ); 344 | name = "[CP] Check Pods Manifest.lock"; 345 | outputFileListPaths = ( 346 | ); 347 | outputPaths = ( 348 | "$(DERIVED_FILE_DIR)/Pods-RNProjectStructure-checkManifestLockResult.txt", 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | shellPath = /bin/sh; 352 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 353 | showEnvVarsInLog = 0; 354 | }; 355 | C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { 356 | isa = PBXShellScriptBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | ); 360 | inputFileListPaths = ( 361 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", 362 | ); 363 | name = "[CP] Embed Pods Frameworks"; 364 | outputFileListPaths = ( 365 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", 366 | ); 367 | runOnlyForDeploymentPostprocessing = 0; 368 | shellPath = /bin/sh; 369 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-frameworks.sh\"\n"; 370 | showEnvVarsInLog = 0; 371 | }; 372 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { 373 | isa = PBXShellScriptBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | ); 377 | inputFileListPaths = ( 378 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-resources-${CONFIGURATION}-input-files.xcfilelist", 379 | ); 380 | name = "[CP] Copy Pods Resources"; 381 | outputFileListPaths = ( 382 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-resources-${CONFIGURATION}-output-files.xcfilelist", 383 | ); 384 | runOnlyForDeploymentPostprocessing = 0; 385 | shellPath = /bin/sh; 386 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure/Pods-RNProjectStructure-resources.sh\"\n"; 387 | showEnvVarsInLog = 0; 388 | }; 389 | F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { 390 | isa = PBXShellScriptBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | ); 394 | inputFileListPaths = ( 395 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-resources-${CONFIGURATION}-input-files.xcfilelist", 396 | ); 397 | name = "[CP] Copy Pods Resources"; 398 | outputFileListPaths = ( 399 | "${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-resources-${CONFIGURATION}-output-files.xcfilelist", 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | shellPath = /bin/sh; 403 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNProjectStructure-RNProjectStructureTests/Pods-RNProjectStructure-RNProjectStructureTests-resources.sh\"\n"; 404 | showEnvVarsInLog = 0; 405 | }; 406 | FD10A7F022414F080027D42C /* Start Packager */ = { 407 | isa = PBXShellScriptBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | ); 411 | inputFileListPaths = ( 412 | ); 413 | inputPaths = ( 414 | ); 415 | name = "Start Packager"; 416 | outputFileListPaths = ( 417 | ); 418 | outputPaths = ( 419 | ); 420 | runOnlyForDeploymentPostprocessing = 0; 421 | shellPath = /bin/sh; 422 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 423 | showEnvVarsInLog = 0; 424 | }; 425 | /* End PBXShellScriptBuildPhase section */ 426 | 427 | /* Begin PBXSourcesBuildPhase section */ 428 | 00E356EA1AD99517003FC87E /* Sources */ = { 429 | isa = PBXSourcesBuildPhase; 430 | buildActionMask = 2147483647; 431 | files = ( 432 | 00E356F31AD99517003FC87E /* RNProjectStructureTests.m in Sources */, 433 | ); 434 | runOnlyForDeploymentPostprocessing = 0; 435 | }; 436 | 13B07F871A680F5B00A75B9A /* Sources */ = { 437 | isa = PBXSourcesBuildPhase; 438 | buildActionMask = 2147483647; 439 | files = ( 440 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */, 441 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 442 | ); 443 | runOnlyForDeploymentPostprocessing = 0; 444 | }; 445 | /* End PBXSourcesBuildPhase section */ 446 | 447 | /* Begin PBXTargetDependency section */ 448 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 449 | isa = PBXTargetDependency; 450 | target = 13B07F861A680F5B00A75B9A /* RNProjectStructure */; 451 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 452 | }; 453 | /* End PBXTargetDependency section */ 454 | 455 | /* Begin XCBuildConfiguration section */ 456 | 00E356F61AD99517003FC87E /* Debug */ = { 457 | isa = XCBuildConfiguration; 458 | baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-RNProjectStructure-RNProjectStructureTests.debug.xcconfig */; 459 | buildSettings = { 460 | BUNDLE_LOADER = "$(TEST_HOST)"; 461 | GCC_PREPROCESSOR_DEFINITIONS = ( 462 | "DEBUG=1", 463 | "$(inherited)", 464 | ); 465 | INFOPLIST_FILE = RNProjectStructureTests/Info.plist; 466 | IPHONEOS_DEPLOYMENT_TARGET = 12.4; 467 | LD_RUNPATH_SEARCH_PATHS = ( 468 | "$(inherited)", 469 | "@executable_path/Frameworks", 470 | "@loader_path/Frameworks", 471 | ); 472 | OTHER_LDFLAGS = ( 473 | "-ObjC", 474 | "-lc++", 475 | "$(inherited)", 476 | ); 477 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 478 | PRODUCT_NAME = "$(TARGET_NAME)"; 479 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNProjectStructure.app/RNProjectStructure"; 480 | }; 481 | name = Debug; 482 | }; 483 | 00E356F71AD99517003FC87E /* Release */ = { 484 | isa = XCBuildConfiguration; 485 | baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-RNProjectStructure-RNProjectStructureTests.release.xcconfig */; 486 | buildSettings = { 487 | BUNDLE_LOADER = "$(TEST_HOST)"; 488 | COPY_PHASE_STRIP = NO; 489 | INFOPLIST_FILE = RNProjectStructureTests/Info.plist; 490 | IPHONEOS_DEPLOYMENT_TARGET = 12.4; 491 | LD_RUNPATH_SEARCH_PATHS = ( 492 | "$(inherited)", 493 | "@executable_path/Frameworks", 494 | "@loader_path/Frameworks", 495 | ); 496 | OTHER_LDFLAGS = ( 497 | "-ObjC", 498 | "-lc++", 499 | "$(inherited)", 500 | ); 501 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 502 | PRODUCT_NAME = "$(TARGET_NAME)"; 503 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNProjectStructure.app/RNProjectStructure"; 504 | }; 505 | name = Release; 506 | }; 507 | 13B07F941A680F5B00A75B9A /* Debug */ = { 508 | isa = XCBuildConfiguration; 509 | baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-RNProjectStructure.debug.xcconfig */; 510 | buildSettings = { 511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 512 | CLANG_ENABLE_MODULES = YES; 513 | CURRENT_PROJECT_VERSION = 1; 514 | ENABLE_BITCODE = NO; 515 | INFOPLIST_FILE = RNProjectStructure/Info.plist; 516 | LD_RUNPATH_SEARCH_PATHS = ( 517 | "$(inherited)", 518 | "@executable_path/Frameworks", 519 | ); 520 | OTHER_LDFLAGS = ( 521 | "$(inherited)", 522 | "-ObjC", 523 | "-lc++", 524 | ); 525 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 526 | PRODUCT_NAME = RNProjectStructure; 527 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 528 | SWIFT_VERSION = 5.0; 529 | VERSIONING_SYSTEM = "apple-generic"; 530 | }; 531 | name = Debug; 532 | }; 533 | 13B07F951A680F5B00A75B9A /* Release */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-RNProjectStructure.release.xcconfig */; 536 | buildSettings = { 537 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 538 | CLANG_ENABLE_MODULES = YES; 539 | CURRENT_PROJECT_VERSION = 1; 540 | INFOPLIST_FILE = RNProjectStructure/Info.plist; 541 | LD_RUNPATH_SEARCH_PATHS = ( 542 | "$(inherited)", 543 | "@executable_path/Frameworks", 544 | ); 545 | OTHER_LDFLAGS = ( 546 | "$(inherited)", 547 | "-ObjC", 548 | "-lc++", 549 | ); 550 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 551 | PRODUCT_NAME = RNProjectStructure; 552 | SWIFT_VERSION = 5.0; 553 | VERSIONING_SYSTEM = "apple-generic"; 554 | }; 555 | name = Release; 556 | }; 557 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 558 | isa = XCBuildConfiguration; 559 | buildSettings = { 560 | ALWAYS_SEARCH_USER_PATHS = NO; 561 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 562 | CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 563 | CLANG_CXX_LIBRARY = "libc++"; 564 | CLANG_ENABLE_MODULES = YES; 565 | CLANG_ENABLE_OBJC_ARC = YES; 566 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 567 | CLANG_WARN_BOOL_CONVERSION = YES; 568 | CLANG_WARN_COMMA = YES; 569 | CLANG_WARN_CONSTANT_CONVERSION = YES; 570 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 571 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 572 | CLANG_WARN_EMPTY_BODY = YES; 573 | CLANG_WARN_ENUM_CONVERSION = YES; 574 | CLANG_WARN_INFINITE_RECURSION = YES; 575 | CLANG_WARN_INT_CONVERSION = YES; 576 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 577 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 578 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 579 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 580 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 581 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 582 | CLANG_WARN_STRICT_PROTOTYPES = YES; 583 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 584 | CLANG_WARN_UNREACHABLE_CODE = YES; 585 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 586 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 587 | COPY_PHASE_STRIP = NO; 588 | ENABLE_STRICT_OBJC_MSGSEND = YES; 589 | ENABLE_TESTABILITY = YES; 590 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; 591 | GCC_C_LANGUAGE_STANDARD = gnu99; 592 | GCC_DYNAMIC_NO_PIC = NO; 593 | GCC_NO_COMMON_BLOCKS = YES; 594 | GCC_OPTIMIZATION_LEVEL = 0; 595 | GCC_PREPROCESSOR_DEFINITIONS = ( 596 | "DEBUG=1", 597 | "$(inherited)", 598 | ); 599 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 600 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 601 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 602 | GCC_WARN_UNDECLARED_SELECTOR = YES; 603 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 604 | GCC_WARN_UNUSED_FUNCTION = YES; 605 | GCC_WARN_UNUSED_VARIABLE = YES; 606 | IPHONEOS_DEPLOYMENT_TARGET = 12.4; 607 | LD_RUNPATH_SEARCH_PATHS = ( 608 | /usr/lib/swift, 609 | "$(inherited)", 610 | ); 611 | LIBRARY_SEARCH_PATHS = ( 612 | "\"$(SDKROOT)/usr/lib/swift\"", 613 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 614 | "\"$(inherited)\"", 615 | ); 616 | MTL_ENABLE_DEBUG_INFO = YES; 617 | ONLY_ACTIVE_ARCH = YES; 618 | OTHER_CPLUSPLUSFLAGS = ( 619 | "$(OTHER_CFLAGS)", 620 | "-DFOLLY_NO_CONFIG", 621 | "-DFOLLY_MOBILE=1", 622 | "-DFOLLY_USE_LIBCPP=1", 623 | ); 624 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 625 | SDKROOT = iphoneos; 626 | }; 627 | name = Debug; 628 | }; 629 | 83CBBA211A601CBA00E9B192 /* Release */ = { 630 | isa = XCBuildConfiguration; 631 | buildSettings = { 632 | ALWAYS_SEARCH_USER_PATHS = NO; 633 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 634 | CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 635 | CLANG_CXX_LIBRARY = "libc++"; 636 | CLANG_ENABLE_MODULES = YES; 637 | CLANG_ENABLE_OBJC_ARC = YES; 638 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 639 | CLANG_WARN_BOOL_CONVERSION = YES; 640 | CLANG_WARN_COMMA = YES; 641 | CLANG_WARN_CONSTANT_CONVERSION = YES; 642 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 643 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 644 | CLANG_WARN_EMPTY_BODY = YES; 645 | CLANG_WARN_ENUM_CONVERSION = YES; 646 | CLANG_WARN_INFINITE_RECURSION = YES; 647 | CLANG_WARN_INT_CONVERSION = YES; 648 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 649 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 650 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 651 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 652 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 653 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 654 | CLANG_WARN_STRICT_PROTOTYPES = YES; 655 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 656 | CLANG_WARN_UNREACHABLE_CODE = YES; 657 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 658 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 659 | COPY_PHASE_STRIP = YES; 660 | ENABLE_NS_ASSERTIONS = NO; 661 | ENABLE_STRICT_OBJC_MSGSEND = YES; 662 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; 663 | GCC_C_LANGUAGE_STANDARD = gnu99; 664 | GCC_NO_COMMON_BLOCKS = YES; 665 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 666 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 667 | GCC_WARN_UNDECLARED_SELECTOR = YES; 668 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 669 | GCC_WARN_UNUSED_FUNCTION = YES; 670 | GCC_WARN_UNUSED_VARIABLE = YES; 671 | IPHONEOS_DEPLOYMENT_TARGET = 12.4; 672 | LD_RUNPATH_SEARCH_PATHS = ( 673 | /usr/lib/swift, 674 | "$(inherited)", 675 | ); 676 | LIBRARY_SEARCH_PATHS = ( 677 | "\"$(SDKROOT)/usr/lib/swift\"", 678 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 679 | "\"$(inherited)\"", 680 | ); 681 | MTL_ENABLE_DEBUG_INFO = NO; 682 | OTHER_CPLUSPLUSFLAGS = ( 683 | "$(OTHER_CFLAGS)", 684 | "-DFOLLY_NO_CONFIG", 685 | "-DFOLLY_MOBILE=1", 686 | "-DFOLLY_USE_LIBCPP=1", 687 | ); 688 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; 689 | SDKROOT = iphoneos; 690 | VALIDATE_PRODUCT = YES; 691 | }; 692 | name = Release; 693 | }; 694 | /* End XCBuildConfiguration section */ 695 | 696 | /* Begin XCConfigurationList section */ 697 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNProjectStructureTests" */ = { 698 | isa = XCConfigurationList; 699 | buildConfigurations = ( 700 | 00E356F61AD99517003FC87E /* Debug */, 701 | 00E356F71AD99517003FC87E /* Release */, 702 | ); 703 | defaultConfigurationIsVisible = 0; 704 | defaultConfigurationName = Release; 705 | }; 706 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNProjectStructure" */ = { 707 | isa = XCConfigurationList; 708 | buildConfigurations = ( 709 | 13B07F941A680F5B00A75B9A /* Debug */, 710 | 13B07F951A680F5B00A75B9A /* Release */, 711 | ); 712 | defaultConfigurationIsVisible = 0; 713 | defaultConfigurationName = Release; 714 | }; 715 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNProjectStructure" */ = { 716 | isa = XCConfigurationList; 717 | buildConfigurations = ( 718 | 83CBBA201A601CBA00E9B192 /* Debug */, 719 | 83CBBA211A601CBA00E9B192 /* Release */, 720 | ); 721 | defaultConfigurationIsVisible = 0; 722 | defaultConfigurationName = Release; 723 | }; 724 | /* End XCConfigurationList section */ 725 | }; 726 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 727 | } 728 | -------------------------------------------------------------------------------- /ios/RNProjectStructure.xcodeproj/xcshareddata/xcschemes/RNProjectStructure.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 53 | 55 | 61 | 62 | 63 | 64 | 70 | 72 | 78 | 79 | 80 | 81 | 83 | 84 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /ios/RNProjectStructure.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : UIResponder 5 | 6 | @property (nonatomic, strong) UIWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/AppDelegate.mm: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | #import 4 | #import 5 | #import 6 | 7 | #import 8 | 9 | #if RCT_NEW_ARCH_ENABLED 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | 17 | #import 18 | 19 | static NSString *const kRNConcurrentRoot = @"concurrentRoot"; 20 | 21 | @interface AppDelegate () { 22 | RCTTurboModuleManager *_turboModuleManager; 23 | RCTSurfacePresenterBridgeAdapter *_bridgeAdapter; 24 | std::shared_ptr _reactNativeConfig; 25 | facebook::react::ContextContainer::Shared _contextContainer; 26 | } 27 | @end 28 | #endif 29 | 30 | @implementation AppDelegate 31 | 32 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 33 | { 34 | RCTAppSetupPrepareApp(application); 35 | 36 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 37 | 38 | #if RCT_NEW_ARCH_ENABLED 39 | _contextContainer = std::make_shared(); 40 | _reactNativeConfig = std::make_shared(); 41 | _contextContainer->insert("ReactNativeConfig", _reactNativeConfig); 42 | _bridgeAdapter = [[RCTSurfacePresenterBridgeAdapter alloc] initWithBridge:bridge contextContainer:_contextContainer]; 43 | bridge.surfacePresenter = _bridgeAdapter.surfacePresenter; 44 | #endif 45 | 46 | NSDictionary *initProps = [self prepareInitialProps]; 47 | UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"RNProjectStructure", initProps); 48 | 49 | if (@available(iOS 13.0, *)) { 50 | rootView.backgroundColor = [UIColor systemBackgroundColor]; 51 | } else { 52 | rootView.backgroundColor = [UIColor whiteColor]; 53 | } 54 | 55 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 56 | UIViewController *rootViewController = [UIViewController new]; 57 | rootViewController.view = rootView; 58 | self.window.rootViewController = rootViewController; 59 | [self.window makeKeyAndVisible]; 60 | return YES; 61 | } 62 | 63 | /// This method controls whether the `concurrentRoot`feature of React18 is turned on or off. 64 | /// 65 | /// @see: https://reactjs.org/blog/2022/03/29/react-v18.html 66 | /// @note: This requires to be rendering on Fabric (i.e. on the New Architecture). 67 | /// @return: `true` if the `concurrentRoot` feture is enabled. Otherwise, it returns `false`. 68 | - (BOOL)concurrentRootEnabled 69 | { 70 | // Switch this bool to turn on and off the concurrent root 71 | return true; 72 | } 73 | 74 | - (NSDictionary *)prepareInitialProps 75 | { 76 | NSMutableDictionary *initProps = [NSMutableDictionary new]; 77 | 78 | #ifdef RCT_NEW_ARCH_ENABLED 79 | initProps[kRNConcurrentRoot] = @([self concurrentRootEnabled]); 80 | #endif 81 | 82 | return initProps; 83 | } 84 | 85 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 86 | { 87 | #if DEBUG 88 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; 89 | #else 90 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 91 | #endif 92 | } 93 | 94 | #if RCT_NEW_ARCH_ENABLED 95 | 96 | #pragma mark - RCTCxxBridgeDelegate 97 | 98 | - (std::unique_ptr)jsExecutorFactoryForBridge:(RCTBridge *)bridge 99 | { 100 | _turboModuleManager = [[RCTTurboModuleManager alloc] initWithBridge:bridge 101 | delegate:self 102 | jsInvoker:bridge.jsCallInvoker]; 103 | return RCTAppSetupDefaultJsExecutorFactory(bridge, _turboModuleManager); 104 | } 105 | 106 | #pragma mark RCTTurboModuleManagerDelegate 107 | 108 | - (Class)getModuleClassFromName:(const char *)name 109 | { 110 | return RCTCoreModulesClassProvider(name); 111 | } 112 | 113 | - (std::shared_ptr)getTurboModule:(const std::string &)name 114 | jsInvoker:(std::shared_ptr)jsInvoker 115 | { 116 | return nullptr; 117 | } 118 | 119 | - (std::shared_ptr)getTurboModule:(const std::string &)name 120 | initParams: 121 | (const facebook::react::ObjCTurboModule::InitParams &)params 122 | { 123 | return nullptr; 124 | } 125 | 126 | - (id)getModuleInstanceFromClass:(Class)moduleClass 127 | { 128 | return RCTAppSetupDefaultModuleFromClass(moduleClass); 129 | } 130 | 131 | #endif 132 | 133 | @end 134 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "scale" : "1x", 46 | "size" : "1024x1024" 47 | } 48 | ], 49 | "info" : { 50 | "author" : "xcode", 51 | "version" : 1 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | RNProjectStructure 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSLocationWhenInUseUsageDescription 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UIViewControllerBasedStatusBarAppearance 53 | 54 | UIAppFonts 55 | 56 | Montserrat-Bold.ttf 57 | Montserrat-Light.ttf 58 | Montserrat-Medium.ttf 59 | Montserrat-Regular.ttf 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 24 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /ios/RNProjectStructure/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /ios/RNProjectStructureTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/RNProjectStructureTests/RNProjectStructureTests.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | #import 5 | #import 6 | 7 | #define TIMEOUT_SECONDS 600 8 | #define TEXT_TO_LOOK_FOR @"Welcome to React" 9 | 10 | @interface RNProjectStructureTests : XCTestCase 11 | 12 | @end 13 | 14 | @implementation RNProjectStructureTests 15 | 16 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test 17 | { 18 | if (test(view)) { 19 | return YES; 20 | } 21 | for (UIView *subview in [view subviews]) { 22 | if ([self findSubviewInView:subview matching:test]) { 23 | return YES; 24 | } 25 | } 26 | return NO; 27 | } 28 | 29 | - (void)testRendersWelcomeScreen 30 | { 31 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 32 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 33 | BOOL foundElement = NO; 34 | 35 | __block NSString *redboxError = nil; 36 | #ifdef DEBUG 37 | RCTSetLogFunction( 38 | ^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 39 | if (level >= RCTLogLevelError) { 40 | redboxError = message; 41 | } 42 | }); 43 | #endif 44 | 45 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 46 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 47 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 48 | 49 | foundElement = [self findSubviewInView:vc.view 50 | matching:^BOOL(UIView *view) { 51 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 52 | return YES; 53 | } 54 | return NO; 55 | }]; 56 | } 57 | 58 | #ifdef DEBUG 59 | RCTSetLogFunction(RCTDefaultLogFunction); 60 | #endif 61 | 62 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 63 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 64 | } 65 | 66 | @end 67 | -------------------------------------------------------------------------------- /ios/link-assets-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "migIndex": 1, 3 | "data": [ 4 | { 5 | "path": "src/assets/fonts/Montserrat-Bold.ttf", 6 | "sha1": "04052dc3b846609216de1e0cbcec337c6b6e74f6" 7 | }, 8 | { 9 | "path": "src/assets/fonts/Montserrat-Light.ttf", 10 | "sha1": "6f21894a80049259ef71fcba135218695b41b67a" 11 | }, 12 | { 13 | "path": "src/assets/fonts/Montserrat-Medium.ttf", 14 | "sha1": "6b57d12e018c64352e202f8ef3bf7f431f76d935" 15 | }, 16 | { 17 | "path": "src/assets/fonts/Montserrat-Regular.ttf", 18 | "sha1": "de57aa03e4821fdbe6c34ec2c895e8b5c914e837" 19 | } 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /iphone_run.sh: -------------------------------------------------------------------------------- 1 | reset 2 | 3 | # xcrun simctl list devices 4 | # above command is used to list all the available iOS devices 5 | 6 | # npx react-native run-ios 7 | # npx react-native run-ios --simulator="iPhone 8" 8 | # npx react-native run-ios --simulator="iPhone 8 Plus" 9 | # npx react-native run-ios --simulator="iPhone 11 Pro Max" 10 | npx react-native run-ios --simulator="iPhone 13 Pro Max" 11 | # npx react-native run-ios --simulator="iPhone 11" 12 | # npx react-native run-ios --simulator="iPhone 11 Pro" 13 | # npx react-native run-ios --device "Mac1's iPhone" 14 | 15 | # npx react-native run-ios --simulator="iPad Pro (9.7-inch)" 16 | # npx react-native run-ios --simulator="iPad Pro (11-inch)" 17 | # npx react-native run-ios --simulator="iPad Pro (12.9-inch) (3rd generation)" -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: true, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNProjectStructure", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "android": "react-native run-android", 7 | "ios": "react-native run-ios", 8 | "start": "react-native start", 9 | "test": "jest", 10 | "lint": "eslint ." 11 | }, 12 | "dependencies": { 13 | "@react-native-community/async-storage": "^1.12.1", 14 | "@react-native-community/masked-view": "^0.1.11", 15 | "@react-navigation/native": "^6.1.1", 16 | "@react-navigation/stack": "^6.3.10", 17 | "axios": "^1.3.5", 18 | "react": "18.1.0", 19 | "react-native": "0.70.6", 20 | "react-native-dotenv": "^3.4.8", 21 | "react-native-flash-message": "^0.4.1", 22 | "react-native-gesture-handler": "^2.9.0", 23 | "react-native-modal": "^13.0.1", 24 | "react-native-reanimated": "^3.0.2", 25 | "react-native-safe-area-context": "^4.5.1", 26 | "react-native-screens": "^3.20.0", 27 | "react-redux": "^8.0.5", 28 | "redux": "^4.2.1", 29 | "redux-axios-middleware": "^4.0.1", 30 | "redux-devtools-extension": "^2.13.9", 31 | "redux-logger": "^3.0.6", 32 | "redux-persist": "^6.0.0", 33 | "redux-thunk": "^2.4.2" 34 | }, 35 | "devDependencies": { 36 | "@babel/core": "^7.12.9", 37 | "@babel/runtime": "^7.12.5", 38 | "@react-native-community/eslint-config": "^2.0.0", 39 | "babel-jest": "^26.6.3", 40 | "eslint": "^7.32.0", 41 | "jest": "^26.6.3", 42 | "metro-react-native-babel-preset": "0.72.3", 43 | "react-test-renderer": "18.1.0" 44 | }, 45 | "jest": { 46 | "preset": "react-native" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /podinstall.sh: -------------------------------------------------------------------------------- 1 | reset 2 | cd ios && pod install && cd ../ 3 | -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | project: { 3 | ios: {}, 4 | android: {}, 5 | }, 6 | assets: ["./src/assets/fonts"], 7 | }; 8 | -------------------------------------------------------------------------------- /src/assets/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/src/assets/Images/logo.png -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/src/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/src/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/src/assets/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rushit013/RNProjectStructure/12b54f9ae2dad856dd530c994ee4355e863f9b37/src/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/components/Buttons/Button.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import { 3 | Text, 4 | ActivityIndicator, 5 | TouchableOpacity, 6 | View, 7 | Image, 8 | } from 'react-native'; 9 | import PropTypes from 'prop-types'; 10 | import {Colors, Fonts} from '../../constants'; 11 | import styles from './styles'; 12 | 13 | export class Button extends Component { 14 | constructor(props) { 15 | super(props); 16 | } 17 | 18 | getButtonColor(type) { 19 | switch (type) { 20 | case 'primary': 21 | return Colors.ui_grey_05; 22 | case 'secondary': 23 | return Colors.ui_grey_05; 24 | case 'light': 25 | return Colors.ui_grey_05; 26 | default: 27 | return Colors.ui_grey_05; 28 | } 29 | } 30 | 31 | getTitleColor(type) { 32 | switch (type) { 33 | case 'primary': 34 | return 'black'; 35 | case 'secondary': 36 | return 'black'; 37 | case 'light': 38 | return 'black'; 39 | default: 40 | return 'black'; 41 | } 42 | } 43 | 44 | getBorderColor(type) { 45 | switch (type) { 46 | case 'primary': 47 | return 'white'; 48 | case 'secondary': 49 | return 'white'; 50 | case 'light': 51 | return 'white'; 52 | default: 53 | return 'white'; 54 | } 55 | } 56 | 57 | render() { 58 | const { 59 | title, 60 | onPress, 61 | buttonWidth, 62 | disabled, 63 | paddingVertical, 64 | type, 65 | loading, 66 | isIcon, 67 | icon, 68 | margin, 69 | marginBottom, 70 | marginTop, 71 | fontSize, 72 | } = this.props; 73 | return ( 74 | 94 | 95 | {isIcon ? : null} 96 | 97 | 106 | {title.toUpperCase()} 107 | 108 | {loading && ( 109 | 110 | )} 111 | 112 | 113 | ); 114 | } 115 | } 116 | 117 | Button.propTypes = { 118 | title: PropTypes.string, 119 | disabled: PropTypes.bool, 120 | loading: PropTypes.bool, 121 | isIcon: PropTypes.bool, 122 | icon: PropTypes.any, 123 | 124 | type: PropTypes.oneOf([ 125 | 'primary', 126 | 'positive', 127 | 'negative', 128 | 'secondary', 129 | 'ghost', 130 | 'light', 131 | 'camera', 132 | 'red', 133 | 'hard', 134 | 'cancel', 135 | ]), 136 | 137 | /** 138 | * StyleSheet props 139 | */ 140 | buttonWidth: PropTypes.any, 141 | paddingVertical: PropTypes.number, 142 | 143 | /** 144 | * Callbacks 145 | */ 146 | onPress: PropTypes.func, 147 | }; 148 | 149 | Button.defaultProps = { 150 | type: 'primary', 151 | title: 'Submit', 152 | buttonWidth: '100%', 153 | disabled: false, 154 | loading: false, 155 | isIcon: false, 156 | paddingVertical: 12, 157 | onPress: null, 158 | }; 159 | -------------------------------------------------------------------------------- /src/components/Buttons/index.js: -------------------------------------------------------------------------------- 1 | export {Button} from './Button'; 2 | -------------------------------------------------------------------------------- /src/components/Buttons/styles.js: -------------------------------------------------------------------------------- 1 | import {StyleSheet} from 'react-native'; 2 | import {Fonts} from '../../constants'; 3 | 4 | const styles = StyleSheet.create({ 5 | container: { 6 | display: 'flex', 7 | margin: 10, 8 | borderRadius: 6, 9 | alignItems: 'center', 10 | alignSelf: 'center', 11 | }, 12 | buttonTitle: { 13 | fontSize: 18, 14 | fontFamily: Fonts.medium, 15 | textAlign: 'center', 16 | }, 17 | iconStyle: { 18 | width: 24, 19 | height: 24, 20 | resizeMode: 'contain', 21 | marginEnd: 10, 22 | }, 23 | }); 24 | 25 | export default styles; 26 | -------------------------------------------------------------------------------- /src/components/Modal/Center/HoldOnPopUp.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {View, StyleSheet, Text, Dimensions} from 'react-native'; 3 | import Modal from 'react-native-modal'; 4 | import {Fonts} from '../../../constants'; 5 | import {Button} from '../../Buttons/Button'; 6 | import styles from './styles'; 7 | 8 | class HoldOnPopUp extends Component { 9 | constructor(props) { 10 | super(props); 11 | } 12 | 13 | enterButtonclick = () => {}; 14 | 15 | render() { 16 | const {visible, onRequestClose, onRequestClear} = this.props; 17 | let width = Dimensions.get('window').width * 0.8; 18 | let buttonWidth = (width - 20 * 3) / 2; 19 | return ( 20 | {}} 30 | onBackdropPress={() => {}} 31 | style={styles.modalBackground} 32 | collapsable={true}> 33 | 41 | 42 | Hold on! 43 | 44 | {' '} 45 | Are you sure you want to exit?{' '} 46 | 47 | 48 |