├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .ncurc.json ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reduxtemplate │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── reduxTemplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reduxTemplate-tvOS.xcscheme │ │ └── reduxTemplate.xcscheme ├── reduxTemplate.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── reduxTemplate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ └── main.m ├── package.json ├── src ├── App.js ├── actions │ └── index.js ├── constants │ └── index.js ├── lib │ └── api.js ├── reducers │ ├── index.js │ └── test.js ├── routes │ └── loggedOff.js ├── sagas │ └── index.js ├── screens │ ├── App.js │ └── index.js └── store │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["module:metro-react-native-babel-preset"], 3 | "plugins": [ 4 | ["@babel/plugin-proposal-decorators", { "legacy": true }] 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb", 4 | "globals": { 5 | "__DEV__": true 6 | }, 7 | "env": { 8 | "browser": true, 9 | "node": true, 10 | "jest/globals": true 11 | }, 12 | "rules": { 13 | "comma-dangle": 0, 14 | "spaced-comment": 0, 15 | "camelcase": 0, 16 | "no-param-reassign": 0, 17 | "no-restricted-syntax": 0, 18 | "new-cap": [2, { "capIsNewExceptions": ["Map"] }], 19 | "no-underscore-dangle": 0, 20 | "global-require": 0, 21 | "no-nested-ternary": 0, 22 | "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 }], 23 | "prefer-template": 0, 24 | "react/prop-types": 0, //remove soon 25 | "react/prefer-stateless-function": 0, 26 | "react/jsx-filename-extension": 0, 27 | "react/no-array-index-key": 0, 28 | "jsx-a11y/href-no-hash": "off", 29 | "class-methods-use-this": "off", 30 | "no-multi-assign": "off", 31 | "no-else-return": ["error", { "allowElseIf": true }], 32 | "max-len": 0, 33 | no-unused-expressions: ["error", { "allowShortCircuit": true, "allowTernary": true }] 34 | }, 35 | "plugins": ["react", "jest"], 36 | } 37 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | esproposal.optional_chaining=enable 33 | esproposal.nullish_coalescing=enable 34 | 35 | module.system=haste 36 | module.system.haste.use_name_reducers=true 37 | # get basename 38 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 39 | # strip .js or .js.flow suffix 40 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 41 | # strip .ios suffix 42 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 44 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 45 | module.system.haste.paths.blacklist=.*/__tests__/.* 46 | module.system.haste.paths.blacklist=.*/__mocks__/.* 47 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 48 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 49 | 50 | munge_underscores=true 51 | 52 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 53 | 54 | module.file_ext=.js 55 | module.file_ext=.jsx 56 | module.file_ext=.json 57 | module.file_ext=.native.js 58 | 59 | suppress_type=$FlowIssue 60 | suppress_type=$FlowFixMe 61 | suppress_type=$FlowFixMeProps 62 | suppress_type=$FlowFixMeState 63 | 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 67 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 68 | 69 | [version] 70 | ^0.86.0 71 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.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 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | Pods/ 56 | -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- 1 | { 2 | "upgrade": true, 3 | "reject": [ 4 | "@babel/core", 5 | "@babel/plugin-proposal-class-properties", 6 | "@babel/plugin-proposal-decorators", 7 | "@babel/runtime", 8 | "metro-react-native-babel-preset", 9 | "react", 10 | "eslint", 11 | "eslint-plugin-react", 12 | "eslint-plugin-jest" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Mateus Andrade 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React-Native Redux Boilerplate 2 | 3 | [![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/mCodex/react-native-redux-boilerplate/blob/master/LICENSE) 4 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://github.com/mCodex/react-native-redux-boilerplate) 5 | 6 | This is a simple `react-native init` project with some libraries. This project includes out of the box: 7 | 8 | * React-Native 9 | * React-Native-Navigation v2 10 | * Redux 11 | * Redux Saga 12 | * Redux Offline 13 | * ESlint 14 | * Airbnb's ESlint rules 15 | 16 | ## Description 17 | 18 | Starting a new project can take some time to configure project structure, libraries and so on... So, I decided to make this starter kit open source for anyone who needs a little help. 19 | 20 | ## Download 21 | 22 | You can download this boilerplate from command line: 23 | 24 | ```bash 25 | git clone https://github.com/mCodex/react-native-redux-boilerplate.git 26 | ``` 27 | 28 | or you can download the releases from github's releases: 29 | 30 | https://github.com/mCodex/react-native-redux-boilerplate/releases 31 | 32 | ## Installation 33 | 34 | After you've downloaded RNReduxBoilerplate, go to its folder and type: 35 | 36 | ``` 37 | yarn 38 | cd ios/ && pod install 39 | cd .. && yarn start 40 | ``` 41 | 42 | ## Tips 43 | 44 | ### jsc-android 45 | 46 | Android's react-native support is based on an old version of jsc-android (November of 2014) which is, basically, the JavaScript interpreter for Android, but we can update it ourselves to gain performance improvements. I've been doing it for a while and I've seen performance improvements. On the other hand, to update jsc-android you will have to support only versions of Android> 5.0, which nowadays seems fine. If you would like to give it a try, check this [NPM package](https://www.npmjs.com/package/jsc-android). 47 | -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import App from '../App'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /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.reduxtemplate", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.reduxtemplate", 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 | 5 | project.ext.react = [ 6 | entryFile: "index.js" 7 | ] 8 | 9 | apply from: "../../node_modules/react-native/react.gradle" 10 | 11 | /** 12 | * Set this to true to create two separate APKs instead of one: 13 | * - An APK that only works on ARM devices 14 | * - An APK that only works on x86 devices 15 | * The advantage is the size of the APK is reduced by about 4MB. 16 | * Upload all the APKs to the Play Store and people will download 17 | * the correct one based on the CPU architecture of their device. 18 | */ 19 | def enableSeparateBuildPerCPUArchitecture = false 20 | 21 | /** 22 | * Run Proguard to shrink the Java bytecode in release builds. 23 | */ 24 | def enableProguardInReleaseBuilds = false 25 | 26 | android { 27 | compileSdkVersion rootProject.ext.compileSdkVersion 28 | buildToolsVersion rootProject.ext.buildToolsVersion 29 | 30 | defaultConfig { 31 | applicationId "com.reduxtemplate" 32 | minSdkVersion rootProject.ext.minSdkVersion 33 | targetSdkVersion rootProject.ext.targetSdkVersion 34 | missingDimensionStrategy "RNN.reactNativeVersion", "reactNative57_5" 35 | versionCode 1 36 | versionName "1.0" 37 | ndk { 38 | abiFilters "armeabi-v7a", "x86" 39 | } 40 | //multiDexEnabled true 41 | } 42 | compileOptions { 43 | sourceCompatibility JavaVersion.VERSION_1_8 44 | targetCompatibility JavaVersion.VERSION_1_8 45 | } 46 | splits { 47 | abi { 48 | reset() 49 | enable enableSeparateBuildPerCPUArchitecture 50 | universalApk false // If true, also generate a universal APK 51 | include "armeabi-v7a", "x86" 52 | } 53 | } 54 | buildTypes { 55 | release { 56 | minifyEnabled enableProguardInReleaseBuilds 57 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 58 | } 59 | } 60 | // applicationVariants are e.g. debug, release 61 | applicationVariants.all { variant -> 62 | variant.outputs.each { output -> 63 | // For each separate APK per architecture, set a unique version code as described here: 64 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 65 | def versionCodes = ["armeabi-v7a":1, "x86":2] 66 | def abi = output.getFilter(OutputFile.ABI) 67 | if (abi != null) { // null for the universal-debug, universal-release variants 68 | output.versionCodeOverride = 69 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 70 | } 71 | } 72 | } 73 | } 74 | 75 | configurations.all { 76 | resolutionStrategy.eachDependency { DependencyResolveDetails details -> 77 | def requested = details.requested 78 | if (requested.group == 'com.android.support' && requested.name != 'multidex') { 79 | details.useVersion "${rootProject.ext.supportLibVersion}" 80 | } 81 | } 82 | } 83 | 84 | dependencies { 85 | implementation project(':react-native-navigation') 86 | implementation 'com.android.support:multidex:1.0.3' 87 | implementation fileTree(dir: "libs", include: ["*.jar"]) 88 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 89 | implementation "com.android.support:design:${rootProject.ext.supportLibVersion}" 90 | implementation "com.facebook.react:react-native:+" // From node_modules 91 | } 92 | 93 | // Run this once to be able to run the application with BUCK 94 | // puts all compile dependencies into folder libs for BUCK to use 95 | task copyDownloadableDepsToLibs(type: Copy) { 96 | from configurations.compile 97 | into 'libs' 98 | } 99 | -------------------------------------------------------------------------------- /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/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 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 16 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reduxtemplate/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reduxtemplate; 2 | 3 | import com.reactnativenavigation.NavigationActivity; 4 | 5 | public class MainActivity extends NavigationActivity { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reduxtemplate/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reduxtemplate; 2 | 3 | import com.facebook.react.ReactNativeHost; 4 | import com.facebook.react.ReactPackage; 5 | import com.reactnativenavigation.NavigationApplication; 6 | import com.reactnativenavigation.react.NavigationReactNativeHost; 7 | import com.reactnativenavigation.react.ReactGateway; 8 | 9 | import java.util.Arrays; 10 | import java.util.List; 11 | 12 | public class MainApplication extends NavigationApplication { 13 | 14 | @Override 15 | protected ReactGateway createReactGateway() { 16 | ReactNativeHost host = new NavigationReactNativeHost(this, isDebug(), createAdditionalReactPackages()) { 17 | @Override 18 | protected String getJSMainModuleName() { 19 | return "index"; 20 | } 21 | }; 22 | return new ReactGateway(this, isDebug(), host); 23 | } 24 | 25 | @Override 26 | public boolean isDebug() { 27 | return BuildConfig.DEBUG; 28 | } 29 | 30 | protected List getPackages() { 31 | // Add additional packages you require here 32 | // No need to add RnnPackage and MainReactPackage 33 | return Arrays.asList( 34 | // eg. new VectorIconsPackage() 35 | ); 36 | } 37 | 38 | @Override 39 | public List createAdditionalReactPackages() { 40 | return getPackages(); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/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/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | reduxTemplate 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 = "28.0.3" 6 | minSdkVersion = 21 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | mavenLocal() 13 | google() 14 | mavenCentral() 15 | jcenter() 16 | } 17 | dependencies { 18 | classpath 'com.android.tools.build:gradle:3.3.1' 19 | 20 | // NOTE: Do not place your application dependencies here; they belong 21 | // in the individual module build.gradle files 22 | } 23 | } 24 | 25 | allprojects { 26 | repositories { 27 | google() 28 | mavenCentral() 29 | mavenLocal() 30 | jcenter() 31 | maven { 32 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 33 | url "$rootDir/../node_modules/react-native/android" 34 | } 35 | maven { url 'https://jitpack.io' } 36 | } 37 | } 38 | 39 | subprojects { subproject -> 40 | afterEvaluate { 41 | if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) { 42 | android { 43 | variantFilter { variant -> 44 | def names = variant.flavors*.name 45 | if (names.contains("reactNative51") || names.contains("reactNative55")) { 46 | setIgnore(true) 47 | } 48 | } 49 | } 50 | } 51 | } 52 | } 53 | 54 | 55 | task wrapper(type: Wrapper) { 56 | gradleVersion = '4.4' 57 | distributionUrl = distributionUrl.replace("bin", "all") 58 | } 59 | -------------------------------------------------------------------------------- /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: -Xmx10248m -XX:MaxPermSize=256m 13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 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 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mCodex/react-native-redux-boilerplate/0702448a2f50f1399cbf08e7879118971a84715b/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Mar 02 11:27:24 BRT 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'reduxTemplate' 2 | include ':react-native-navigation' 3 | project(':react-native-navigation').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-navigation/lib/android/app/') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reduxTemplate", 3 | "displayName": "reduxTemplate" 4 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import App from './src/App'; 2 | 3 | new App(); //eslint-disable-line 4 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | platform :ios, '9.0' 3 | 4 | target 'reduxTemplate' do 5 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 6 | # use_frameworks! 7 | 8 | # Pods for reduxTemplate 9 | # Uncomment the next line if you're using Swift or would like to use dynamic frameworks 10 | # use_frameworks! 11 | 12 | rn_path = '../node_modules/react-native' 13 | 14 | # See http://facebook.github.io/react-native/docs/integration-with-existing-apps.html#configuring-cocoapods-dependencies 15 | pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec" 16 | pod 'React', path: rn_path, subspecs: [ 17 | 'Core', 18 | 'CxxBridge', 19 | 'DevSupport', 20 | 'RCTActionSheet', 21 | 'RCTAnimation', 22 | 'RCTGeolocation', 23 | 'RCTImage', 24 | 'RCTLinkingIOS', 25 | 'RCTNetwork', 26 | 'RCTSettings', 27 | 'RCTText', 28 | 'RCTVibration', 29 | 'RCTWebSocket', 30 | ] 31 | 32 | # React Native third party dependencies podspecs 33 | pod 'DoubleConversion', :podspec => "#{rn_path}/third-party-podspecs/DoubleConversion.podspec" 34 | pod 'glog', :podspec => "#{rn_path}/third-party-podspecs/glog.podspec" 35 | # If you are using React Native <0.54, you will get the following error: 36 | # "The name of the given podspec `GLog` doesn't match the expected one `glog`" 37 | # Use the following line instead: 38 | #pod 'GLog', :podspec => "#{rn_path}/third-party-podspecs/GLog.podspec" 39 | pod 'Folly', :podspec => "#{rn_path}/third-party-podspecs/Folly.podspec" 40 | end 41 | 42 | post_install do |installer| 43 | installer.pods_project.targets.each do |target| 44 | if target.name == "React" 45 | target.remove_from_project 46 | end 47 | end 48 | end 49 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost-for-react-native (1.63.0) 3 | - DoubleConversion (1.1.6) 4 | - Folly (2018.10.22.00): 5 | - boost-for-react-native 6 | - DoubleConversion 7 | - glog 8 | - glog (0.3.5) 9 | - React/Core (0.58.6): 10 | - yoga (= 0.58.6.React) 11 | - React/CxxBridge (0.58.6): 12 | - Folly (= 2018.10.22.00) 13 | - React/Core 14 | - React/cxxreact 15 | - React/jsiexecutor 16 | - React/cxxreact (0.58.6): 17 | - boost-for-react-native (= 1.63.0) 18 | - Folly (= 2018.10.22.00) 19 | - React/jsinspector 20 | - React/DevSupport (0.58.6): 21 | - React/Core 22 | - React/RCTWebSocket 23 | - React/fishhook (0.58.6) 24 | - React/jsi (0.58.6): 25 | - Folly (= 2018.10.22.00) 26 | - React/jsiexecutor (0.58.6): 27 | - Folly (= 2018.10.22.00) 28 | - React/cxxreact 29 | - React/jsi 30 | - React/jsinspector (0.58.6) 31 | - React/RCTActionSheet (0.58.6): 32 | - React/Core 33 | - React/RCTAnimation (0.58.6): 34 | - React/Core 35 | - React/RCTBlob (0.58.6): 36 | - React/Core 37 | - React/RCTGeolocation (0.58.6): 38 | - React/Core 39 | - React/RCTImage (0.58.6): 40 | - React/Core 41 | - React/RCTNetwork 42 | - React/RCTLinkingIOS (0.58.6): 43 | - React/Core 44 | - React/RCTNetwork (0.58.6): 45 | - React/Core 46 | - React/RCTSettings (0.58.6): 47 | - React/Core 48 | - React/RCTText (0.58.6): 49 | - React/Core 50 | - React/RCTVibration (0.58.6): 51 | - React/Core 52 | - React/RCTWebSocket (0.58.6): 53 | - React/Core 54 | - React/fishhook 55 | - React/RCTBlob 56 | - yoga (0.58.6.React) 57 | 58 | DEPENDENCIES: 59 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 60 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) 61 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 62 | - React/Core (from `../node_modules/react-native`) 63 | - React/CxxBridge (from `../node_modules/react-native`) 64 | - React/DevSupport (from `../node_modules/react-native`) 65 | - React/RCTActionSheet (from `../node_modules/react-native`) 66 | - React/RCTAnimation (from `../node_modules/react-native`) 67 | - React/RCTGeolocation (from `../node_modules/react-native`) 68 | - React/RCTImage (from `../node_modules/react-native`) 69 | - React/RCTLinkingIOS (from `../node_modules/react-native`) 70 | - React/RCTNetwork (from `../node_modules/react-native`) 71 | - React/RCTSettings (from `../node_modules/react-native`) 72 | - React/RCTText (from `../node_modules/react-native`) 73 | - React/RCTVibration (from `../node_modules/react-native`) 74 | - React/RCTWebSocket (from `../node_modules/react-native`) 75 | - yoga (from `../node_modules/react-native/ReactCommon/yoga/yoga.podspec`) 76 | 77 | SPEC REPOS: 78 | https://github.com/cocoapods/specs.git: 79 | - boost-for-react-native 80 | 81 | EXTERNAL SOURCES: 82 | DoubleConversion: 83 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 84 | Folly: 85 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" 86 | glog: 87 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 88 | React: 89 | :path: "../node_modules/react-native" 90 | yoga: 91 | :path: "../node_modules/react-native/ReactCommon/yoga/yoga.podspec" 92 | 93 | SPEC CHECKSUMS: 94 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c 95 | DoubleConversion: bb338842f62ab1d708ceb63ec3d999f0f3d98ecd 96 | Folly: de497beb10f102453a1afa9edbf8cf8a251890de 97 | glog: aefd1eb5dda2ab95ba0938556f34b98e2da3a60d 98 | React: 130b87b2d5e2baac646954282cab87be986d98fc 99 | yoga: 32d7ef1081951e9a35a4c72a7be797598b138a48 100 | 101 | PODFILE CHECKSUM: ace2c9400bd0c1038edb8cd516a5ef0417cdcffc 102 | 103 | COCOAPODS: 1.6.0 104 | -------------------------------------------------------------------------------- /ios/reduxTemplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 25 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 26 | B69062304D7D9DD4631FE4EF /* libPods-reduxTemplate.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E6DE12369572E21C6D82CFE /* libPods-reduxTemplate.a */; }; 27 | F1BA8342B85E41FFAFF94DC6 /* libReactNativeNavigation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D6AEA9BF486441DA3E4D10C /* libReactNativeNavigation.a */; }; 28 | /* End PBXBuildFile section */ 29 | 30 | /* Begin PBXContainerItemProxy section */ 31 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 34 | proxyType = 2; 35 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 36 | remoteInfo = RCTActionSheet; 37 | }; 38 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 39 | isa = PBXContainerItemProxy; 40 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 41 | proxyType = 2; 42 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 43 | remoteInfo = RCTGeolocation; 44 | }; 45 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 46 | isa = PBXContainerItemProxy; 47 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 48 | proxyType = 2; 49 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 50 | remoteInfo = RCTImage; 51 | }; 52 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 57 | remoteInfo = RCTNetwork; 58 | }; 59 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 64 | remoteInfo = RCTVibration; 65 | }; 66 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 71 | remoteInfo = RCTSettings; 72 | }; 73 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 78 | remoteInfo = RCTWebSocket; 79 | }; 80 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 83 | proxyType = 2; 84 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 85 | remoteInfo = React; 86 | }; 87 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 90 | proxyType = 2; 91 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 92 | remoteInfo = "RCTBlob-tvOS"; 93 | }; 94 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 99 | remoteInfo = fishhook; 100 | }; 101 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 106 | remoteInfo = "fishhook-tvOS"; 107 | }; 108 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 111 | proxyType = 2; 112 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 113 | remoteInfo = jsinspector; 114 | }; 115 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 118 | proxyType = 2; 119 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 120 | remoteInfo = "jsinspector-tvOS"; 121 | }; 122 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 127 | remoteInfo = "third-party"; 128 | }; 129 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 132 | proxyType = 2; 133 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 134 | remoteInfo = "third-party-tvOS"; 135 | }; 136 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 141 | remoteInfo = "double-conversion"; 142 | }; 143 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 148 | remoteInfo = "double-conversion-tvOS"; 149 | }; 150 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 153 | proxyType = 2; 154 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 155 | remoteInfo = "RCTImage-tvOS"; 156 | }; 157 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 162 | remoteInfo = "RCTLinking-tvOS"; 163 | }; 164 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 169 | remoteInfo = "RCTNetwork-tvOS"; 170 | }; 171 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 176 | remoteInfo = "RCTSettings-tvOS"; 177 | }; 178 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 183 | remoteInfo = "RCTText-tvOS"; 184 | }; 185 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 190 | remoteInfo = "RCTWebSocket-tvOS"; 191 | }; 192 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 197 | remoteInfo = "React-tvOS"; 198 | }; 199 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 204 | remoteInfo = yoga; 205 | }; 206 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 211 | remoteInfo = "yoga-tvOS"; 212 | }; 213 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 218 | remoteInfo = cxxreact; 219 | }; 220 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 225 | remoteInfo = "cxxreact-tvOS"; 226 | }; 227 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 232 | remoteInfo = RCTAnimation; 233 | }; 234 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 239 | remoteInfo = "RCTAnimation-tvOS"; 240 | }; 241 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 242 | isa = PBXContainerItemProxy; 243 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 244 | proxyType = 2; 245 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 246 | remoteInfo = RCTLinking; 247 | }; 248 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 249 | isa = PBXContainerItemProxy; 250 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 251 | proxyType = 2; 252 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 253 | remoteInfo = RCTText; 254 | }; 255 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 256 | isa = PBXContainerItemProxy; 257 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 258 | proxyType = 2; 259 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 260 | remoteInfo = RCTBlob; 261 | }; 262 | E66B6645222ACE220013AC74 /* PBXContainerItemProxy */ = { 263 | isa = PBXContainerItemProxy; 264 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 265 | proxyType = 2; 266 | remoteGlobalIDString = EDEBC6D6214B3E7000DD5AC8; 267 | remoteInfo = jsi; 268 | }; 269 | E66B6647222ACE220013AC74 /* PBXContainerItemProxy */ = { 270 | isa = PBXContainerItemProxy; 271 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 272 | proxyType = 2; 273 | remoteGlobalIDString = EDEBC73B214B45A300DD5AC8; 274 | remoteInfo = jsiexecutor; 275 | }; 276 | E66B6649222ACE220013AC74 /* PBXContainerItemProxy */ = { 277 | isa = PBXContainerItemProxy; 278 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 279 | proxyType = 2; 280 | remoteGlobalIDString = ED296FB6214C9A0900B7C4FE; 281 | remoteInfo = "jsi-tvOS"; 282 | }; 283 | E66B664B222ACE220013AC74 /* PBXContainerItemProxy */ = { 284 | isa = PBXContainerItemProxy; 285 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 286 | proxyType = 2; 287 | remoteGlobalIDString = ED296FEE214C9CF800B7C4FE; 288 | remoteInfo = "jsiexecutor-tvOS"; 289 | }; 290 | E66B664F222ACE220013AC74 /* PBXContainerItemProxy */ = { 291 | isa = PBXContainerItemProxy; 292 | containerPortal = E66B661D222ACE220013AC74 /* ReactNativeNavigation.xcodeproj */; 293 | proxyType = 2; 294 | remoteGlobalIDString = D8AFADBD1BEE6F3F00A4592D; 295 | remoteInfo = ReactNativeNavigation; 296 | }; 297 | E66B6651222ACE220013AC74 /* PBXContainerItemProxy */ = { 298 | isa = PBXContainerItemProxy; 299 | containerPortal = E66B661D222ACE220013AC74 /* ReactNativeNavigation.xcodeproj */; 300 | proxyType = 2; 301 | remoteGlobalIDString = 7B49FEBB1E95090800DEB3EA; 302 | remoteInfo = ReactNativeNavigationTests; 303 | }; 304 | /* End PBXContainerItemProxy section */ 305 | 306 | /* Begin PBXFileReference section */ 307 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 308 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 309 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 310 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 311 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 312 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 313 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 314 | 00E356F21AD99517003FC87E /* reduxTemplateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reduxTemplateTests.m; sourceTree = ""; }; 315 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 316 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 317 | 13B07F961A680F5B00A75B9A /* reduxTemplate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reduxTemplate.app; sourceTree = BUILT_PRODUCTS_DIR; }; 318 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reduxTemplate/AppDelegate.h; sourceTree = ""; }; 319 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = reduxTemplate/AppDelegate.m; sourceTree = ""; }; 320 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 321 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reduxTemplate/Images.xcassets; sourceTree = ""; }; 322 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reduxTemplate/Info.plist; sourceTree = ""; }; 323 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reduxTemplate/main.m; sourceTree = ""; }; 324 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 325 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 326 | 2E6DE12369572E21C6D82CFE /* libPods-reduxTemplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reduxTemplate.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 327 | 4D6AEA9BF486441DA3E4D10C /* libReactNativeNavigation.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libReactNativeNavigation.a; sourceTree = ""; }; 328 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 329 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 330 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 331 | 836285A31F0F80965E817B2F /* Pods-reduxTemplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reduxTemplate.release.xcconfig"; path = "Pods/Target Support Files/Pods-reduxTemplate/Pods-reduxTemplate.release.xcconfig"; sourceTree = ""; }; 332 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 333 | E66B661D222ACE220013AC74 /* ReactNativeNavigation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactNativeNavigation.xcodeproj; path = "../node_modules/react-native-navigation/lib/ios/ReactNativeNavigation.xcodeproj"; sourceTree = ""; }; 334 | FE84999958EE310DF86AE0C4 /* Pods-reduxTemplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reduxTemplate.debug.xcconfig"; path = "Pods/Target Support Files/Pods-reduxTemplate/Pods-reduxTemplate.debug.xcconfig"; sourceTree = ""; }; 335 | /* End PBXFileReference section */ 336 | 337 | /* Begin PBXFrameworksBuildPhase section */ 338 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 339 | isa = PBXFrameworksBuildPhase; 340 | buildActionMask = 2147483647; 341 | files = ( 342 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 343 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 344 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 345 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 346 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 347 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 348 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 349 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 350 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 351 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 352 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 353 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 354 | F1BA8342B85E41FFAFF94DC6 /* libReactNativeNavigation.a in Frameworks */, 355 | B69062304D7D9DD4631FE4EF /* libPods-reduxTemplate.a in Frameworks */, 356 | ); 357 | runOnlyForDeploymentPostprocessing = 0; 358 | }; 359 | /* End PBXFrameworksBuildPhase section */ 360 | 361 | /* Begin PBXGroup section */ 362 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 363 | isa = PBXGroup; 364 | children = ( 365 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 366 | ); 367 | name = Products; 368 | sourceTree = ""; 369 | }; 370 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 371 | isa = PBXGroup; 372 | children = ( 373 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 374 | ); 375 | name = Products; 376 | sourceTree = ""; 377 | }; 378 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 379 | isa = PBXGroup; 380 | children = ( 381 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 382 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 383 | ); 384 | name = Products; 385 | sourceTree = ""; 386 | }; 387 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 388 | isa = PBXGroup; 389 | children = ( 390 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 391 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 392 | ); 393 | name = Products; 394 | sourceTree = ""; 395 | }; 396 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 397 | isa = PBXGroup; 398 | children = ( 399 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 400 | ); 401 | name = Products; 402 | sourceTree = ""; 403 | }; 404 | 00E356EF1AD99517003FC87E /* reduxTemplateTests */ = { 405 | isa = PBXGroup; 406 | children = ( 407 | 00E356F21AD99517003FC87E /* reduxTemplateTests.m */, 408 | 00E356F01AD99517003FC87E /* Supporting Files */, 409 | ); 410 | path = reduxTemplateTests; 411 | sourceTree = ""; 412 | }; 413 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 414 | isa = PBXGroup; 415 | children = ( 416 | 00E356F11AD99517003FC87E /* Info.plist */, 417 | ); 418 | name = "Supporting Files"; 419 | sourceTree = ""; 420 | }; 421 | 0721F2A9B2BAAB2455429797 /* Pods */ = { 422 | isa = PBXGroup; 423 | children = ( 424 | FE84999958EE310DF86AE0C4 /* Pods-reduxTemplate.debug.xcconfig */, 425 | 836285A31F0F80965E817B2F /* Pods-reduxTemplate.release.xcconfig */, 426 | ); 427 | name = Pods; 428 | sourceTree = ""; 429 | }; 430 | 139105B71AF99BAD00B5F7CC /* Products */ = { 431 | isa = PBXGroup; 432 | children = ( 433 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 434 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 435 | ); 436 | name = Products; 437 | sourceTree = ""; 438 | }; 439 | 139FDEE71B06529A00C62182 /* Products */ = { 440 | isa = PBXGroup; 441 | children = ( 442 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 443 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 444 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 445 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 13B07FAE1A68108700A75B9A /* reduxTemplate */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 454 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 455 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 456 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 457 | 13B07FB61A68108700A75B9A /* Info.plist */, 458 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 459 | 13B07FB71A68108700A75B9A /* main.m */, 460 | ); 461 | name = reduxTemplate; 462 | sourceTree = ""; 463 | }; 464 | 146834001AC3E56700842450 /* Products */ = { 465 | isa = PBXGroup; 466 | children = ( 467 | 146834041AC3E56700842450 /* libReact.a */, 468 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 469 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 470 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 471 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 472 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 473 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 474 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 475 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 476 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 477 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 478 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 479 | E66B6646222ACE220013AC74 /* libjsi.a */, 480 | E66B6648222ACE220013AC74 /* libjsiexecutor.a */, 481 | E66B664A222ACE220013AC74 /* libjsi-tvOS.a */, 482 | E66B664C222ACE220013AC74 /* libjsiexecutor-tvOS.a */, 483 | ); 484 | name = Products; 485 | sourceTree = ""; 486 | }; 487 | 274B4E57216C027C00D01C2A /* Recovered References */ = { 488 | isa = PBXGroup; 489 | children = ( 490 | 4D6AEA9BF486441DA3E4D10C /* libReactNativeNavigation.a */, 491 | ); 492 | name = "Recovered References"; 493 | sourceTree = ""; 494 | }; 495 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 496 | isa = PBXGroup; 497 | children = ( 498 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 499 | 2E6DE12369572E21C6D82CFE /* libPods-reduxTemplate.a */, 500 | ); 501 | name = Frameworks; 502 | sourceTree = ""; 503 | }; 504 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 505 | isa = PBXGroup; 506 | children = ( 507 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 508 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 509 | ); 510 | name = Products; 511 | sourceTree = ""; 512 | }; 513 | 78C398B11ACF4ADC00677621 /* Products */ = { 514 | isa = PBXGroup; 515 | children = ( 516 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 517 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 518 | ); 519 | name = Products; 520 | sourceTree = ""; 521 | }; 522 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 523 | isa = PBXGroup; 524 | children = ( 525 | E66B661D222ACE220013AC74 /* ReactNativeNavigation.xcodeproj */, 526 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 527 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 528 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 529 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 530 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 531 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 532 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 533 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 534 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 535 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 536 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 537 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 538 | ); 539 | name = Libraries; 540 | sourceTree = ""; 541 | }; 542 | 832341B11AAA6A8300B99B32 /* Products */ = { 543 | isa = PBXGroup; 544 | children = ( 545 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 546 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 547 | ); 548 | name = Products; 549 | sourceTree = ""; 550 | }; 551 | 83CBB9F61A601CBA00E9B192 = { 552 | isa = PBXGroup; 553 | children = ( 554 | 13B07FAE1A68108700A75B9A /* reduxTemplate */, 555 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 556 | 00E356EF1AD99517003FC87E /* reduxTemplateTests */, 557 | 83CBBA001A601CBA00E9B192 /* Products */, 558 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 559 | 0721F2A9B2BAAB2455429797 /* Pods */, 560 | 274B4E57216C027C00D01C2A /* Recovered References */, 561 | ); 562 | indentWidth = 2; 563 | sourceTree = ""; 564 | tabWidth = 2; 565 | usesTabs = 0; 566 | }; 567 | 83CBBA001A601CBA00E9B192 /* Products */ = { 568 | isa = PBXGroup; 569 | children = ( 570 | 13B07F961A680F5B00A75B9A /* reduxTemplate.app */, 571 | ); 572 | name = Products; 573 | sourceTree = ""; 574 | }; 575 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 576 | isa = PBXGroup; 577 | children = ( 578 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 579 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 580 | ); 581 | name = Products; 582 | sourceTree = ""; 583 | }; 584 | E66B661E222ACE220013AC74 /* Products */ = { 585 | isa = PBXGroup; 586 | children = ( 587 | E66B6650222ACE220013AC74 /* libReactNativeNavigation.a */, 588 | E66B6652222ACE220013AC74 /* ReactNativeNavigationTests.xctest */, 589 | ); 590 | name = Products; 591 | sourceTree = ""; 592 | }; 593 | /* End PBXGroup section */ 594 | 595 | /* Begin PBXNativeTarget section */ 596 | 13B07F861A680F5B00A75B9A /* reduxTemplate */ = { 597 | isa = PBXNativeTarget; 598 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reduxTemplate" */; 599 | buildPhases = ( 600 | E39E6F0E53C73F421909BC1E /* [CP] Check Pods Manifest.lock */, 601 | 13B07F871A680F5B00A75B9A /* Sources */, 602 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 603 | 13B07F8E1A680F5B00A75B9A /* Resources */, 604 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 605 | ); 606 | buildRules = ( 607 | ); 608 | dependencies = ( 609 | ); 610 | name = reduxTemplate; 611 | productName = "Hello World"; 612 | productReference = 13B07F961A680F5B00A75B9A /* reduxTemplate.app */; 613 | productType = "com.apple.product-type.application"; 614 | }; 615 | /* End PBXNativeTarget section */ 616 | 617 | /* Begin PBXProject section */ 618 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 619 | isa = PBXProject; 620 | attributes = { 621 | LastUpgradeCheck = 940; 622 | ORGANIZATIONNAME = Facebook; 623 | }; 624 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reduxTemplate" */; 625 | compatibilityVersion = "Xcode 3.2"; 626 | developmentRegion = English; 627 | hasScannedForEncodings = 0; 628 | knownRegions = ( 629 | en, 630 | Base, 631 | ); 632 | mainGroup = 83CBB9F61A601CBA00E9B192; 633 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 634 | projectDirPath = ""; 635 | projectReferences = ( 636 | { 637 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 638 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 639 | }, 640 | { 641 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 642 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 643 | }, 644 | { 645 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 646 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 647 | }, 648 | { 649 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 650 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 651 | }, 652 | { 653 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 654 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 655 | }, 656 | { 657 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 658 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 659 | }, 660 | { 661 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 662 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 663 | }, 664 | { 665 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 666 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 667 | }, 668 | { 669 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 670 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 671 | }, 672 | { 673 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 674 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 675 | }, 676 | { 677 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 678 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 679 | }, 680 | { 681 | ProductGroup = 146834001AC3E56700842450 /* Products */; 682 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 683 | }, 684 | { 685 | ProductGroup = E66B661E222ACE220013AC74 /* Products */; 686 | ProjectRef = E66B661D222ACE220013AC74 /* ReactNativeNavigation.xcodeproj */; 687 | }, 688 | ); 689 | projectRoot = ""; 690 | targets = ( 691 | 13B07F861A680F5B00A75B9A /* reduxTemplate */, 692 | ); 693 | }; 694 | /* End PBXProject section */ 695 | 696 | /* Begin PBXReferenceProxy section */ 697 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 698 | isa = PBXReferenceProxy; 699 | fileType = archive.ar; 700 | path = libRCTActionSheet.a; 701 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 702 | sourceTree = BUILT_PRODUCTS_DIR; 703 | }; 704 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 705 | isa = PBXReferenceProxy; 706 | fileType = archive.ar; 707 | path = libRCTGeolocation.a; 708 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 709 | sourceTree = BUILT_PRODUCTS_DIR; 710 | }; 711 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 712 | isa = PBXReferenceProxy; 713 | fileType = archive.ar; 714 | path = libRCTImage.a; 715 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 716 | sourceTree = BUILT_PRODUCTS_DIR; 717 | }; 718 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 719 | isa = PBXReferenceProxy; 720 | fileType = archive.ar; 721 | path = libRCTNetwork.a; 722 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 723 | sourceTree = BUILT_PRODUCTS_DIR; 724 | }; 725 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 726 | isa = PBXReferenceProxy; 727 | fileType = archive.ar; 728 | path = libRCTVibration.a; 729 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 730 | sourceTree = BUILT_PRODUCTS_DIR; 731 | }; 732 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 733 | isa = PBXReferenceProxy; 734 | fileType = archive.ar; 735 | path = libRCTSettings.a; 736 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 737 | sourceTree = BUILT_PRODUCTS_DIR; 738 | }; 739 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 740 | isa = PBXReferenceProxy; 741 | fileType = archive.ar; 742 | path = libRCTWebSocket.a; 743 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 744 | sourceTree = BUILT_PRODUCTS_DIR; 745 | }; 746 | 146834041AC3E56700842450 /* libReact.a */ = { 747 | isa = PBXReferenceProxy; 748 | fileType = archive.ar; 749 | path = libReact.a; 750 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 751 | sourceTree = BUILT_PRODUCTS_DIR; 752 | }; 753 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 754 | isa = PBXReferenceProxy; 755 | fileType = archive.ar; 756 | path = "libRCTBlob-tvOS.a"; 757 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 758 | sourceTree = BUILT_PRODUCTS_DIR; 759 | }; 760 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 761 | isa = PBXReferenceProxy; 762 | fileType = archive.ar; 763 | path = libfishhook.a; 764 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 765 | sourceTree = BUILT_PRODUCTS_DIR; 766 | }; 767 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 768 | isa = PBXReferenceProxy; 769 | fileType = archive.ar; 770 | path = "libfishhook-tvOS.a"; 771 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 772 | sourceTree = BUILT_PRODUCTS_DIR; 773 | }; 774 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 775 | isa = PBXReferenceProxy; 776 | fileType = archive.ar; 777 | path = libjsinspector.a; 778 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 779 | sourceTree = BUILT_PRODUCTS_DIR; 780 | }; 781 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 782 | isa = PBXReferenceProxy; 783 | fileType = archive.ar; 784 | path = "libjsinspector-tvOS.a"; 785 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 786 | sourceTree = BUILT_PRODUCTS_DIR; 787 | }; 788 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 789 | isa = PBXReferenceProxy; 790 | fileType = archive.ar; 791 | path = "libthird-party.a"; 792 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 793 | sourceTree = BUILT_PRODUCTS_DIR; 794 | }; 795 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 796 | isa = PBXReferenceProxy; 797 | fileType = archive.ar; 798 | path = "libthird-party.a"; 799 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 800 | sourceTree = BUILT_PRODUCTS_DIR; 801 | }; 802 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 803 | isa = PBXReferenceProxy; 804 | fileType = archive.ar; 805 | path = "libdouble-conversion.a"; 806 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 807 | sourceTree = BUILT_PRODUCTS_DIR; 808 | }; 809 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 810 | isa = PBXReferenceProxy; 811 | fileType = archive.ar; 812 | path = "libdouble-conversion.a"; 813 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 814 | sourceTree = BUILT_PRODUCTS_DIR; 815 | }; 816 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 817 | isa = PBXReferenceProxy; 818 | fileType = archive.ar; 819 | path = "libRCTImage-tvOS.a"; 820 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 821 | sourceTree = BUILT_PRODUCTS_DIR; 822 | }; 823 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 824 | isa = PBXReferenceProxy; 825 | fileType = archive.ar; 826 | path = "libRCTLinking-tvOS.a"; 827 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 828 | sourceTree = BUILT_PRODUCTS_DIR; 829 | }; 830 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 831 | isa = PBXReferenceProxy; 832 | fileType = archive.ar; 833 | path = "libRCTNetwork-tvOS.a"; 834 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 835 | sourceTree = BUILT_PRODUCTS_DIR; 836 | }; 837 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 838 | isa = PBXReferenceProxy; 839 | fileType = archive.ar; 840 | path = "libRCTSettings-tvOS.a"; 841 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 842 | sourceTree = BUILT_PRODUCTS_DIR; 843 | }; 844 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 845 | isa = PBXReferenceProxy; 846 | fileType = archive.ar; 847 | path = "libRCTText-tvOS.a"; 848 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 849 | sourceTree = BUILT_PRODUCTS_DIR; 850 | }; 851 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 852 | isa = PBXReferenceProxy; 853 | fileType = archive.ar; 854 | path = "libRCTWebSocket-tvOS.a"; 855 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 856 | sourceTree = BUILT_PRODUCTS_DIR; 857 | }; 858 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 859 | isa = PBXReferenceProxy; 860 | fileType = archive.ar; 861 | path = libReact.a; 862 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 863 | sourceTree = BUILT_PRODUCTS_DIR; 864 | }; 865 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 866 | isa = PBXReferenceProxy; 867 | fileType = archive.ar; 868 | path = libyoga.a; 869 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 870 | sourceTree = BUILT_PRODUCTS_DIR; 871 | }; 872 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 873 | isa = PBXReferenceProxy; 874 | fileType = archive.ar; 875 | path = libyoga.a; 876 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 877 | sourceTree = BUILT_PRODUCTS_DIR; 878 | }; 879 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 880 | isa = PBXReferenceProxy; 881 | fileType = archive.ar; 882 | path = libcxxreact.a; 883 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 884 | sourceTree = BUILT_PRODUCTS_DIR; 885 | }; 886 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 887 | isa = PBXReferenceProxy; 888 | fileType = archive.ar; 889 | path = libcxxreact.a; 890 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 891 | sourceTree = BUILT_PRODUCTS_DIR; 892 | }; 893 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 894 | isa = PBXReferenceProxy; 895 | fileType = archive.ar; 896 | path = libRCTAnimation.a; 897 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 898 | sourceTree = BUILT_PRODUCTS_DIR; 899 | }; 900 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 901 | isa = PBXReferenceProxy; 902 | fileType = archive.ar; 903 | path = libRCTAnimation.a; 904 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 905 | sourceTree = BUILT_PRODUCTS_DIR; 906 | }; 907 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 908 | isa = PBXReferenceProxy; 909 | fileType = archive.ar; 910 | path = libRCTLinking.a; 911 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 912 | sourceTree = BUILT_PRODUCTS_DIR; 913 | }; 914 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 915 | isa = PBXReferenceProxy; 916 | fileType = archive.ar; 917 | path = libRCTText.a; 918 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 919 | sourceTree = BUILT_PRODUCTS_DIR; 920 | }; 921 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 922 | isa = PBXReferenceProxy; 923 | fileType = archive.ar; 924 | path = libRCTBlob.a; 925 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 926 | sourceTree = BUILT_PRODUCTS_DIR; 927 | }; 928 | E66B6646222ACE220013AC74 /* libjsi.a */ = { 929 | isa = PBXReferenceProxy; 930 | fileType = archive.ar; 931 | path = libjsi.a; 932 | remoteRef = E66B6645222ACE220013AC74 /* PBXContainerItemProxy */; 933 | sourceTree = BUILT_PRODUCTS_DIR; 934 | }; 935 | E66B6648222ACE220013AC74 /* libjsiexecutor.a */ = { 936 | isa = PBXReferenceProxy; 937 | fileType = archive.ar; 938 | path = libjsiexecutor.a; 939 | remoteRef = E66B6647222ACE220013AC74 /* PBXContainerItemProxy */; 940 | sourceTree = BUILT_PRODUCTS_DIR; 941 | }; 942 | E66B664A222ACE220013AC74 /* libjsi-tvOS.a */ = { 943 | isa = PBXReferenceProxy; 944 | fileType = archive.ar; 945 | path = "libjsi-tvOS.a"; 946 | remoteRef = E66B6649222ACE220013AC74 /* PBXContainerItemProxy */; 947 | sourceTree = BUILT_PRODUCTS_DIR; 948 | }; 949 | E66B664C222ACE220013AC74 /* libjsiexecutor-tvOS.a */ = { 950 | isa = PBXReferenceProxy; 951 | fileType = archive.ar; 952 | path = "libjsiexecutor-tvOS.a"; 953 | remoteRef = E66B664B222ACE220013AC74 /* PBXContainerItemProxy */; 954 | sourceTree = BUILT_PRODUCTS_DIR; 955 | }; 956 | E66B6650222ACE220013AC74 /* libReactNativeNavigation.a */ = { 957 | isa = PBXReferenceProxy; 958 | fileType = archive.ar; 959 | path = libReactNativeNavigation.a; 960 | remoteRef = E66B664F222ACE220013AC74 /* PBXContainerItemProxy */; 961 | sourceTree = BUILT_PRODUCTS_DIR; 962 | }; 963 | E66B6652222ACE220013AC74 /* ReactNativeNavigationTests.xctest */ = { 964 | isa = PBXReferenceProxy; 965 | fileType = wrapper.cfbundle; 966 | path = ReactNativeNavigationTests.xctest; 967 | remoteRef = E66B6651222ACE220013AC74 /* PBXContainerItemProxy */; 968 | sourceTree = BUILT_PRODUCTS_DIR; 969 | }; 970 | /* End PBXReferenceProxy section */ 971 | 972 | /* Begin PBXResourcesBuildPhase section */ 973 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 974 | isa = PBXResourcesBuildPhase; 975 | buildActionMask = 2147483647; 976 | files = ( 977 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 978 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 979 | ); 980 | runOnlyForDeploymentPostprocessing = 0; 981 | }; 982 | /* End PBXResourcesBuildPhase section */ 983 | 984 | /* Begin PBXShellScriptBuildPhase section */ 985 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 986 | isa = PBXShellScriptBuildPhase; 987 | buildActionMask = 2147483647; 988 | files = ( 989 | ); 990 | inputPaths = ( 991 | ); 992 | name = "Bundle React Native code and images"; 993 | outputPaths = ( 994 | ); 995 | runOnlyForDeploymentPostprocessing = 0; 996 | shellPath = /bin/sh; 997 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 998 | }; 999 | E39E6F0E53C73F421909BC1E /* [CP] Check Pods Manifest.lock */ = { 1000 | isa = PBXShellScriptBuildPhase; 1001 | buildActionMask = 2147483647; 1002 | files = ( 1003 | ); 1004 | inputPaths = ( 1005 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 1006 | "${PODS_ROOT}/Manifest.lock", 1007 | ); 1008 | name = "[CP] Check Pods Manifest.lock"; 1009 | outputPaths = ( 1010 | "$(DERIVED_FILE_DIR)/Pods-reduxTemplate-checkManifestLockResult.txt", 1011 | ); 1012 | runOnlyForDeploymentPostprocessing = 0; 1013 | shellPath = /bin/sh; 1014 | 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"; 1015 | showEnvVarsInLog = 0; 1016 | }; 1017 | /* End PBXShellScriptBuildPhase section */ 1018 | 1019 | /* Begin PBXSourcesBuildPhase section */ 1020 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1021 | isa = PBXSourcesBuildPhase; 1022 | buildActionMask = 2147483647; 1023 | files = ( 1024 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1025 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1026 | ); 1027 | runOnlyForDeploymentPostprocessing = 0; 1028 | }; 1029 | /* End PBXSourcesBuildPhase section */ 1030 | 1031 | /* Begin PBXVariantGroup section */ 1032 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1033 | isa = PBXVariantGroup; 1034 | children = ( 1035 | 13B07FB21A68108700A75B9A /* Base */, 1036 | ); 1037 | name = LaunchScreen.xib; 1038 | path = reduxTemplate; 1039 | sourceTree = ""; 1040 | }; 1041 | /* End PBXVariantGroup section */ 1042 | 1043 | /* Begin XCBuildConfiguration section */ 1044 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1045 | isa = XCBuildConfiguration; 1046 | baseConfigurationReference = FE84999958EE310DF86AE0C4 /* Pods-reduxTemplate.debug.xcconfig */; 1047 | buildSettings = { 1048 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1049 | CURRENT_PROJECT_VERSION = 1; 1050 | DEAD_CODE_STRIPPING = NO; 1051 | HEADER_SEARCH_PATHS = ( 1052 | "$(inherited)", 1053 | "$(SRCROOT)/../node_modules/react-native-navigation/ios/**", 1054 | ); 1055 | INFOPLIST_FILE = reduxTemplate/Info.plist; 1056 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1057 | OTHER_LDFLAGS = ( 1058 | "$(inherited)", 1059 | "-ObjC", 1060 | "-lc++", 1061 | ); 1062 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1063 | PRODUCT_NAME = reduxTemplate; 1064 | VERSIONING_SYSTEM = "apple-generic"; 1065 | }; 1066 | name = Debug; 1067 | }; 1068 | 13B07F951A680F5B00A75B9A /* Release */ = { 1069 | isa = XCBuildConfiguration; 1070 | baseConfigurationReference = 836285A31F0F80965E817B2F /* Pods-reduxTemplate.release.xcconfig */; 1071 | buildSettings = { 1072 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1073 | CURRENT_PROJECT_VERSION = 1; 1074 | HEADER_SEARCH_PATHS = ( 1075 | "$(inherited)", 1076 | "$(SRCROOT)/../node_modules/react-native-navigation/ios/**", 1077 | ); 1078 | INFOPLIST_FILE = reduxTemplate/Info.plist; 1079 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1080 | OTHER_LDFLAGS = ( 1081 | "$(inherited)", 1082 | "-ObjC", 1083 | "-lc++", 1084 | ); 1085 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1086 | PRODUCT_NAME = reduxTemplate; 1087 | VERSIONING_SYSTEM = "apple-generic"; 1088 | }; 1089 | name = Release; 1090 | }; 1091 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1092 | isa = XCBuildConfiguration; 1093 | buildSettings = { 1094 | ALWAYS_SEARCH_USER_PATHS = NO; 1095 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1096 | CLANG_CXX_LIBRARY = "libc++"; 1097 | CLANG_ENABLE_MODULES = YES; 1098 | CLANG_ENABLE_OBJC_ARC = YES; 1099 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1100 | CLANG_WARN_BOOL_CONVERSION = YES; 1101 | CLANG_WARN_COMMA = YES; 1102 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1103 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1104 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1105 | CLANG_WARN_EMPTY_BODY = YES; 1106 | CLANG_WARN_ENUM_CONVERSION = YES; 1107 | CLANG_WARN_INFINITE_RECURSION = YES; 1108 | CLANG_WARN_INT_CONVERSION = YES; 1109 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1110 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1111 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1112 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1113 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1114 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1115 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1116 | CLANG_WARN_UNREACHABLE_CODE = YES; 1117 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1118 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1119 | COPY_PHASE_STRIP = NO; 1120 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1121 | ENABLE_TESTABILITY = YES; 1122 | GCC_C_LANGUAGE_STANDARD = gnu99; 1123 | GCC_DYNAMIC_NO_PIC = NO; 1124 | GCC_NO_COMMON_BLOCKS = YES; 1125 | GCC_OPTIMIZATION_LEVEL = 0; 1126 | GCC_PREPROCESSOR_DEFINITIONS = ( 1127 | "DEBUG=1", 1128 | "$(inherited)", 1129 | ); 1130 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1131 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1132 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1133 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1134 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1135 | GCC_WARN_UNUSED_FUNCTION = YES; 1136 | GCC_WARN_UNUSED_VARIABLE = YES; 1137 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1138 | MTL_ENABLE_DEBUG_INFO = YES; 1139 | ONLY_ACTIVE_ARCH = YES; 1140 | SDKROOT = iphoneos; 1141 | }; 1142 | name = Debug; 1143 | }; 1144 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1145 | isa = XCBuildConfiguration; 1146 | buildSettings = { 1147 | ALWAYS_SEARCH_USER_PATHS = NO; 1148 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1149 | CLANG_CXX_LIBRARY = "libc++"; 1150 | CLANG_ENABLE_MODULES = YES; 1151 | CLANG_ENABLE_OBJC_ARC = YES; 1152 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1153 | CLANG_WARN_BOOL_CONVERSION = YES; 1154 | CLANG_WARN_COMMA = YES; 1155 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1156 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1157 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1158 | CLANG_WARN_EMPTY_BODY = YES; 1159 | CLANG_WARN_ENUM_CONVERSION = YES; 1160 | CLANG_WARN_INFINITE_RECURSION = YES; 1161 | CLANG_WARN_INT_CONVERSION = YES; 1162 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1163 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1164 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1165 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1166 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1167 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1168 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1169 | CLANG_WARN_UNREACHABLE_CODE = YES; 1170 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1171 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1172 | COPY_PHASE_STRIP = YES; 1173 | ENABLE_NS_ASSERTIONS = NO; 1174 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1175 | GCC_C_LANGUAGE_STANDARD = gnu99; 1176 | GCC_NO_COMMON_BLOCKS = YES; 1177 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1178 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1179 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1180 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1181 | GCC_WARN_UNUSED_FUNCTION = YES; 1182 | GCC_WARN_UNUSED_VARIABLE = YES; 1183 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1184 | MTL_ENABLE_DEBUG_INFO = NO; 1185 | SDKROOT = iphoneos; 1186 | VALIDATE_PRODUCT = YES; 1187 | }; 1188 | name = Release; 1189 | }; 1190 | /* End XCBuildConfiguration section */ 1191 | 1192 | /* Begin XCConfigurationList section */ 1193 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reduxTemplate" */ = { 1194 | isa = XCConfigurationList; 1195 | buildConfigurations = ( 1196 | 13B07F941A680F5B00A75B9A /* Debug */, 1197 | 13B07F951A680F5B00A75B9A /* Release */, 1198 | ); 1199 | defaultConfigurationIsVisible = 0; 1200 | defaultConfigurationName = Release; 1201 | }; 1202 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reduxTemplate" */ = { 1203 | isa = XCConfigurationList; 1204 | buildConfigurations = ( 1205 | 83CBBA201A601CBA00E9B192 /* Debug */, 1206 | 83CBBA211A601CBA00E9B192 /* Release */, 1207 | ); 1208 | defaultConfigurationIsVisible = 0; 1209 | defaultConfigurationName = Release; 1210 | }; 1211 | /* End XCConfigurationList section */ 1212 | }; 1213 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1214 | } 1215 | -------------------------------------------------------------------------------- /ios/reduxTemplate.xcodeproj/xcshareddata/xcschemes/reduxTemplate-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reduxTemplate.xcodeproj/xcshareddata/xcschemes/reduxTemplate.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/reduxTemplate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/reduxTemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/reduxTemplate/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/reduxTemplate/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | #import 15 | 16 | @implementation AppDelegate 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 19 | { 20 | NSURL *jsCodeLocation; 21 | #ifdef DEBUG 22 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 23 | #else 24 | jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 25 | #endif 26 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 27 | self.window.backgroundColor = [UIColor whiteColor]; 28 | [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions]; 29 | return YES; 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /ios/reduxTemplate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/reduxTemplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/reduxTemplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/reduxTemplate/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | reduxTemplate 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 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSLocationWhenInUseUsageDescription 44 | 45 | NSAppTransportSecurity 46 | 47 | NSAllowsArbitraryLoads 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /ios/reduxTemplate/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reduxTemplate", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "@redux-offline/redux-offline": "^2.5.1", 11 | "react": "16.6.3", 12 | "react-native": "^0.58.6", 13 | "react-native-navigation": "^2.13.1", 14 | "react-redux": "^6.0.1", 15 | "redux": "^4.0.1", 16 | "redux-saga": "^1.0.2" 17 | }, 18 | "devDependencies": { 19 | "@babel/core": "7.0.0-beta.56", 20 | "@babel/plugin-proposal-decorators": "7.0.0-beta.56", 21 | "@babel/runtime": "7.0.0", 22 | "babel-core": "7.0.0-bridge.0", 23 | "babel-eslint": "^10.0.1", 24 | "babel-jest": "^24.1.0", 25 | "metro-react-native-babel-preset": "^0.52.0", 26 | "eslint": "^4.19.1", 27 | "eslint-config-airbnb": "^17.1.0", 28 | "eslint-plugin-import": "^2.14.0", 29 | "eslint-plugin-jest": "^21.17.0", 30 | "eslint-plugin-jsx-a11y": "^6.1.2", 31 | "eslint-plugin-react": "^7.9.1", 32 | "jest": "^24.1.0", 33 | "react-test-renderer": "^16.8.3", 34 | "redux-logger": "^3.0.6" 35 | }, 36 | "jest": { 37 | "preset": "react-native" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import { Provider } from 'react-redux'; 2 | import { registerScreens } from './screens'; 3 | import sagas from './sagas'; 4 | 5 | import LoggedOff from './routes/loggedOff'; 6 | 7 | import { configureStore, sagaMiddleware } from './store'; 8 | 9 | const store = configureStore(); 10 | 11 | sagaMiddleware.run(sagas); 12 | 13 | registerScreens(store, Provider); 14 | 15 | export default async function App() { 16 | return new LoggedOff(); 17 | } 18 | -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- 1 | import { CHANGE_TEXT, GET_GOOGLE } from '../constants'; 2 | 3 | export function setText(text) { //eslint-disable-line 4 | return { 5 | type: CHANGE_TEXT, 6 | text 7 | }; 8 | } 9 | 10 | export function getGoogle() { //eslint-disable-line 11 | return { 12 | type: GET_GOOGLE 13 | }; 14 | } 15 | -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- 1 | const CHANGE_TEXT = 'CHANGE_TEXT'; 2 | const GET_GOOGLE = 'GET_GOOGLE'; 3 | 4 | export { //eslint-disable-line 5 | CHANGE_TEXT, 6 | GET_GOOGLE 7 | }; 8 | -------------------------------------------------------------------------------- /src/lib/api.js: -------------------------------------------------------------------------------- 1 | export default function () { 2 | return fetch('https://google.com.br'); 3 | } 4 | -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | 3 | import testReducer from './test'; 4 | 5 | const rootReducer = combineReducers({ 6 | testReducer 7 | }); 8 | 9 | export default rootReducer; 10 | -------------------------------------------------------------------------------- /src/reducers/test.js: -------------------------------------------------------------------------------- 1 | import { CHANGE_TEXT } from '../constants'; 2 | 3 | const initialState = { text: 'from Redux' }; 4 | 5 | export default function testeReducer(state = initialState, action) { 6 | switch (action.type) { 7 | case CHANGE_TEXT: 8 | return { 9 | ...state, 10 | text: action.text 11 | }; 12 | case 'GET_GOOGLE_SUCCESS': 13 | return { 14 | ...state, 15 | status: action.status 16 | }; 17 | default: 18 | return state; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/routes/loggedOff.js: -------------------------------------------------------------------------------- 1 | import { Navigation } from 'react-native-navigation'; 2 | 3 | export default function LoggedOffRoutes() { 4 | return Navigation.setRoot({ 5 | root: { 6 | stack: { 7 | children: [ 8 | { 9 | component: { 10 | name: 'home', 11 | options: { 12 | topBar: { 13 | title: { 14 | text: 'Home' 15 | } 16 | } 17 | } 18 | }, 19 | } 20 | ] 21 | } 22 | } 23 | }); 24 | } 25 | -------------------------------------------------------------------------------- /src/sagas/index.js: -------------------------------------------------------------------------------- 1 | import { put, takeLatest, call, all, fork } from 'redux-saga/effects'; 2 | import * as actions from '../actions'; 3 | import Api from '../lib/api'; 4 | 5 | 6 | function* workerSetStatus() { 7 | const { status } = yield call(Api); 8 | yield put({ type: 'GET_GOOGLE_SUCCESS', status }); 9 | } 10 | 11 | function* watchSetStatus() { 12 | yield takeLatest('GET_GOOGLE', workerSetStatus); 13 | } 14 | 15 | export default function* root() { 16 | yield all([fork(watchSetStatus)]); 17 | } 18 | -------------------------------------------------------------------------------- /src/screens/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | Platform, 4 | StyleSheet, 5 | Text, 6 | View, 7 | TouchableOpacity, 8 | } from 'react-native'; 9 | 10 | import { connect } from 'react-redux'; 11 | import { setText, getGoogle } from '../actions'; 12 | 13 | const instructions = Platform.select({ 14 | ios: 'Press Cmd+R to reload,\n' 15 | + 'Cmd+D or shake for dev menu', 16 | android: 'Double tap R on your keyboard to reload,\n' 17 | + 'Shake or press menu button for dev menu', 18 | }); 19 | 20 | const styles = StyleSheet.create({ 21 | container: { 22 | flex: 1, 23 | justifyContent: 'center', 24 | alignItems: 'center', 25 | backgroundColor: '#F5FCFF', 26 | }, 27 | welcome: { 28 | fontSize: 20, 29 | textAlign: 'center', 30 | margin: 10, 31 | }, 32 | instructions: { 33 | textAlign: 'center', 34 | color: '#333333', 35 | marginBottom: 5, 36 | }, 37 | }); 38 | 39 | export class App extends Component { 40 | render() { 41 | const { 42 | setTextDispatcher, 43 | getGoogleDispatcher, 44 | text, 45 | status 46 | } = this.props; 47 | 48 | return ( 49 | 50 | 51 | Welcome to React Native! 52 | 53 | { 54 | setTextDispatcher('Hello World'); 55 | return getGoogleDispatcher(); 56 | }} 57 | > 58 | Click on me! 59 | 60 | {text} 61 | {status} 62 | 63 | To get started, edit App.js 64 | 65 | 66 | {instructions} 67 | 68 | 69 | ); 70 | } 71 | } 72 | 73 | const mapStateToProps = state => ({ 74 | text: state.testReducer.text, 75 | status: state.testReducer.status 76 | }); 77 | 78 | const mapDispatchToProps = dispatch => ({ 79 | setTextDispatcher: text => dispatch(setText(text)), 80 | getGoogleDispatcher: () => dispatch(getGoogle()) 81 | }); 82 | 83 | export default connect(mapStateToProps, mapDispatchToProps)(App); 84 | -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- 1 | import { Navigation } from 'react-native-navigation'; 2 | 3 | import Home from './App'; 4 | 5 | export function registerScreens(store: {}, Provider: {}) { //eslint-disable-line 6 | Navigation.registerComponentWithRedux( 7 | 'home', 8 | () => Home, 9 | Provider, 10 | store 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | import { compose, createStore, applyMiddleware } from 'redux'; 2 | import createSagaMiddleware from 'redux-saga'; 3 | import logger from 'redux-logger'; //eslint-disable-line 4 | 5 | import { offline } from '@redux-offline/redux-offline'; 6 | import offlineConfig from '@redux-offline/redux-offline/lib/defaults'; 7 | import rootReducer from '../reducers'; 8 | 9 | export const sagaMiddleware = createSagaMiddleware(); 10 | 11 | let middleware = [sagaMiddleware]; 12 | 13 | if (__DEV__) { 14 | middleware = [...middleware, logger]; 15 | } else { 16 | middleware = [...middleware]; 17 | } 18 | 19 | export function configureStore(initialState) { 20 | const store = createStore( 21 | rootReducer, 22 | initialState, 23 | compose( 24 | applyMiddleware(...middleware), 25 | offline(offlineConfig) 26 | ) 27 | ); 28 | return store; 29 | } 30 | --------------------------------------------------------------------------------