├── .babelrc
├── .eslintrc.js
├── .gitattributes
├── .github
└── FUNDING.yml
├── .gitignore
├── .prettierrc
├── App.js
├── README.md
├── android
├── app
│ ├── BUCK
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ └── fonts
│ │ │ ├── AntDesign.ttf
│ │ │ ├── Entypo.ttf
│ │ │ ├── EvilIcons.ttf
│ │ │ ├── Feather.ttf
│ │ │ ├── FontAwesome.ttf
│ │ │ ├── FontAwesome5_Brands.ttf
│ │ │ ├── FontAwesome5_Regular.ttf
│ │ │ ├── FontAwesome5_Solid.ttf
│ │ │ ├── Foundation.ttf
│ │ │ ├── Ionicons.ttf
│ │ │ ├── MaterialCommunityIcons.ttf
│ │ │ ├── MaterialIcons.ttf
│ │ │ ├── Octicons.ttf
│ │ │ ├── SimpleLineIcons.ttf
│ │ │ └── Zocial.ttf
│ │ ├── java
│ │ └── com
│ │ │ └── rni
│ │ │ ├── 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
├── app
├── actions
│ ├── counter
│ │ ├── actionTypes.js
│ │ └── actions.js
│ ├── session
│ │ ├── actions.js
│ │ └── actionsTypes.js
│ └── todolist
│ │ ├── actionTypes.js
│ │ └── actions.js
├── components
│ ├── auth
│ │ ├── BasicForm
│ │ │ ├── basicForm.js
│ │ │ └── styles.js
│ │ ├── LoginForm
│ │ │ ├── index.js
│ │ │ └── loginForm.js
│ │ └── SignupForm
│ │ │ ├── index.js
│ │ │ └── signupForm.js
│ ├── counter
│ │ ├── counter.js
│ │ ├── counterControl.js
│ │ ├── counterOutput.js
│ │ ├── index.js
│ │ └── styles.js
│ ├── home
│ │ ├── home.js
│ │ ├── index.js
│ │ └── styles.js
│ ├── loadingIndicator
│ │ ├── loadingIndicator.js
│ │ └── styles.js
│ ├── routes
│ │ ├── index.js
│ │ ├── routes.js
│ │ └── styles.js
│ ├── search
│ │ ├── index.js
│ │ ├── search.js
│ │ └── styles.js
│ └── todolist
│ │ ├── index.js
│ │ ├── styles.js
│ │ ├── todolist.js
│ │ ├── todolistInput.js
│ │ └── todolistItems.js
├── enviroments
│ └── firebase.js
├── reducers
│ ├── counter
│ │ ├── __snapshots__
│ │ │ └── counterReducer.test.js.snap
│ │ ├── counterReducer.js
│ │ └── counterReducer.test.js
│ ├── routes
│ │ ├── routes.reducer.specs.js
│ │ └── routesReducer.js
│ ├── session
│ │ └── sessionReducer.js
│ └── todolist
│ │ └── todolistReducer.js
└── store
│ ├── index.js
│ ├── rootReducer.js
│ └── store.js
├── assets
├── icons
│ ├── firebase.png
│ └── react.png
└── screenshots
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ └── rfr.jpg
├── index.js
├── ios
├── RNI-tvOS
│ └── Info.plist
├── RNI-tvOSTests
│ └── Info.plist
├── RNI.xcodeproj
│ ├── project.pbxproj
│ └── xcshareddata
│ │ └── xcschemes
│ │ ├── RNI-tvOS.xcscheme
│ │ └── RNI.xcscheme
├── RNI
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── Base.lproj
│ │ └── LaunchScreen.xib
│ ├── Images.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ └── Contents.json
│ │ └── Contents.json
│ ├── Info.plist
│ └── main.m
└── RNITests
│ ├── Info.plist
│ └── RNITests.m
├── package-lock.json
└── package.json
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["module:metro-react-native-babel-preset"],
3 | "plugins": [
4 | [
5 | "module-resolver",
6 | {
7 | "root": ["./app", "./assets"],
8 | "extensions": [".js", ".ios.js", ".android.js"]
9 | }
10 | ]
11 | ]
12 | }
13 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | parser: "babel-eslint",
3 | extends: ["plugin:prettier/recommended"],
4 | env: {
5 | jest: true
6 | },
7 | settings: {
8 | "import/resolver": { "babel-module": {} }
9 | }
10 | };
11 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | custom:
2 | - "https://www.paypal.com/paypalme/drskantus"
3 | github: "skantus"
--------------------------------------------------------------------------------
/.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 | # Bundle artifact
56 | *.jsbundle
57 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 120,
3 | "singleQuote": true
4 | }
5 |
--------------------------------------------------------------------------------
/App.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import Routes from 'components/routes';
3 |
4 | class App extends Component {
5 | render() {
6 | return ;
7 | }
8 | }
9 |
10 | export default App;
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | ## How to Install
12 |
13 | 1. `git clone https://github.com/skantus/react-native-firebase-redux-authentication.git`
14 | 2. `cd && rm -rf .rncache`
15 | 3. `watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/haste-map-react-native-packager-* && rm -rf node_modules/ && npm install`
16 | 4. `npm start -- --reset-cache`
17 | 5. `react-native run-ios | run-android`
18 |
19 | ## Expo
20 |
21 | _See the project too in:_
22 |
23 |
24 |
25 | https://expo.io/@skantus/
26 |
27 | ## Login method
28 |
29 | Done
30 |
31 | ## Logout method
32 |
33 | Done
34 |
35 | ## Current session method
36 |
37 | Done
38 |
39 | ## Signup method
40 |
41 | Done
42 |
43 | ## To-Do List (Redux)
44 |
45 | Added
46 |
47 | ## Counter (Redux)
48 |
49 | Refactored
50 |
51 | ## Table of Contents
52 |
53 | - [Updating to New Releases](#updating-to-new-releases)
54 | - [Available Scripts](#available-scripts)
55 | - [npm start](#npm-start)
56 | - [npm test](#npm-test)
57 | - [npm run ios](#npm-run-ios)
58 | - [npm run android](#npm-run-android)
59 | - [npm run eject](#npm-run-eject)
60 | - [Writing and Running Tests](#writing-and-running-tests)
61 | - [Environment Variables](#environment-variables)
62 | - [Configuring Packager IP Address](#configuring-packager-ip-address)
63 | - [Adding Flow](#adding-flow)
64 | - [Customizing App Display Name and Icon](#customizing-app-display-name-and-icon)
65 | - [Sharing and Deployment](#sharing-and-deployment)
66 | - [Publishing to Expo's React Native Community](#publishing-to-expos-react-native-community)
67 | - [Building an Expo "standalone" app](#building-an-expo-standalone-app)
68 | - [Ejecting from Create React Native App](#ejecting-from-create-react-native-app)
69 | - [Build Dependencies (Xcode & Android Studio)](#build-dependencies-xcode-android-studio)
70 | - [Should I Use ExpoKit?](#should-i-use-expokit)
71 | - [Troubleshooting](#troubleshooting)
72 | - [Networking](#networking)
73 | - [iOS Simulator won't open](#ios-simulator-wont-open)
74 | - [QR Code does not scan](#qr-code-does-not-scan)
75 |
76 | ## Updating to New Releases
77 |
78 | You should only need to update the global installation of `create-react-native-app` very rarely, ideally never.
79 |
80 | Updating the `react-native-scripts` dependency of your app should be as simple as bumping the version number in `package.json` and reinstalling your project's dependencies.
81 |
82 | Upgrading to a new version of React Native requires updating the `react-native`, `react`, and `expo` package versions, and setting the correct `sdkVersion` in `app.json`. See the [versioning guide](https://github.com/react-community/create-react-native-app/blob/master/VERSIONS.md) for up-to-date information about package version compatibility.
83 |
84 | ## Available Scripts
85 |
86 | If Yarn was installed when the project was initialized, then dependencies will have been installed via Yarn, and you should probably use it to run these commands as well. Unlike dependency installation, command running syntax is identical for Yarn and NPM at the time of this writing.
87 |
88 | ### `npm start`
89 |
90 | Runs your app in development mode.
91 |
92 | Open it in the [Expo app](https://expo.io) on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal.
93 |
94 | Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the `--reset-cache` flag to the start script:
95 |
96 | ```
97 | npm start -- --reset-cache
98 | # or
99 | yarn start -- --reset-cache
100 | ```
101 |
102 | #### `npm test`
103 |
104 | Runs the [jest](https://github.com/facebook/jest) test runner on your tests.
105 |
106 | #### `npm run ios`
107 |
108 | Like `npm start`, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed.
109 |
110 | #### `npm run android`
111 |
112 | Like `npm start`, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html) for detailed setup). We also recommend installing Genymotion as your Android emulator. Once you've finished setting up the native build environment, there are two options for making the right copy of `adb` available to Create React Native App:
113 |
114 | ##### Using Android Studio's `adb`
115 |
116 | 1. Make sure that you can run adb from your terminal.
117 | 2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location).
118 |
119 | ##### Using Genymotion's `adb`
120 |
121 | 1. Find Genymotion’s copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`.
122 | 2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)).
123 | 3. Make sure that you can run adb from your terminal.
124 |
125 | #### `npm run eject`
126 |
127 | This will start the process of "ejecting" from Create React Native App's build scripts. You'll be asked a couple of questions about how you'd like to build your project.
128 |
129 | **Warning:** Running eject is a permanent action (aside from whatever version control system you use). An ejected app will require you to have an [Xcode and/or Android Studio environment](https://facebook.github.io/react-native/docs/getting-started.html) set up.
130 |
131 | ## Customizing App Display Name and Icon
132 |
133 | You can edit `app.json` to include [configuration keys](https://docs.expo.io/versions/latest/guides/configuration.html) under the `expo` key.
134 |
135 | To change your app's display name, set the `expo.name` key in `app.json` to an appropriate string.
136 |
137 | To set an app icon, set the `expo.icon` key in `app.json` to be either a local path or a URL. It's recommended that you use a 512x512 png file with transparency.
138 |
139 | ## Writing and Running Tests
140 |
141 | This project is set up to use [jest](https://facebook.github.io/jest/) for tests. You can configure whatever testing strategy you like, but jest works out of the box. Create test files in directories called `__tests__` or with the `.test` extension to have the files loaded by jest. See the [the template project](https://github.com/react-community/create-react-native-app/blob/master/react-native-scripts/template/App.test.js) for an example test. The [jest documentation](https://facebook.github.io/jest/docs/en/getting-started.html) is also a wonderful resource, as is the [React Native testing tutorial](https://facebook.github.io/jest/docs/en/tutorial-react-native.html).
142 |
143 | ## Environment Variables
144 |
145 | You can configure some of Create React Native App's behavior using environment variables.
146 |
147 | ### Configuring Packager IP Address
148 |
149 | When starting your project, you'll see something like this for your project URL:
150 |
151 | ```
152 | exp://192.168.0.2:19000
153 | ```
154 |
155 | The "manifest" at that URL tells the Expo app how to retrieve and load your app's JavaScript bundle, so even if you load it in the app via a URL like `exp://localhost:19000`, the Expo client app will still try to retrieve your app at the IP address that the start script provides.
156 |
157 | In some cases, this is less than ideal. This might be the case if you need to run your project inside of a virtual machine and you have to access the packager via a different IP address than the one which prints by default. In order to override the IP address or hostname that is detected by Create React Native App, you can specify your own hostname via the `REACT_NATIVE_PACKAGER_HOSTNAME` environment variable:
158 |
159 | Mac and Linux:
160 |
161 | ```
162 | REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname' npm start
163 | ```
164 |
165 | Windows:
166 |
167 | ```
168 | set REACT_NATIVE_PACKAGER_HOSTNAME='my-custom-ip-address-or-hostname'
169 | npm start
170 | ```
171 |
172 | The above example would cause the development server to listen on `exp://my-custom-ip-address-or-hostname:19000`.
173 |
174 | ## Adding Flow
175 |
176 | Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept.
177 |
178 | React Native works with [Flow](http://flowtype.org/) out of the box, as long as your Flow version matches the one used in the version of React Native.
179 |
180 | To add a local dependency to the correct Flow version to a Create React Native App project, follow these steps:
181 |
182 | 1. Find the Flow `[version]` at the bottom of the included [.flowconfig](.flowconfig)
183 | 2. Run `npm install --save-dev flow-bin@x.y.z` (or `yarn add --dev flow-bin@x.y.z`), where `x.y.z` is the .flowconfig version number.
184 | 3. Add `"flow": "flow"` to the `scripts` section of your `package.json`.
185 | 4. Add `// @flow` to any files you want to type check (for example, to `App.js`).
186 |
187 | Now you can run `npm run flow` (or `yarn flow`) to check the files for type errors.
188 | You can optionally use a [plugin for your IDE or editor](https://flow.org/en/docs/editors/) for a better integrated experience.
189 |
190 | To learn more about Flow, check out [its documentation](https://flow.org/).
191 |
192 | ## Sharing and Deployment
193 |
194 | Create React Native App does a lot of work to make app setup and development simple and straightforward, but it's very difficult to do the same for deploying to Apple's App Store or Google's Play Store without relying on a hosted service.
195 |
196 | ### Publishing to Expo's React Native Community
197 |
198 | Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account.
199 |
200 | Install the `exp` command-line tool, and run the publish command:
201 |
202 | ```
203 | $ npm i -g exp
204 | $ exp publish
205 | ```
206 |
207 | ### Building an Expo "standalone" app
208 |
209 | You can also use a service like [Expo's standalone builds](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html) if you want to get an IPA/APK for distribution without having to build the native code yourself.
210 |
211 | ### Ejecting from Create React Native App
212 |
213 | If you want to build and deploy your app yourself, you'll need to eject from CRNA and use Xcode and Android Studio.
214 |
215 | This is usually as simple as running `npm run eject` in your project, which will walk you through the process. Make sure to install `react-native-cli` and follow the [native code getting started guide for React Native](https://facebook.github.io/react-native/docs/getting-started.html).
216 |
217 | #### Should I Use ExpoKit?
218 |
219 | If you have made use of Expo APIs while working on your project, then those API calls will stop working if you eject to a regular React Native project. If you want to continue using those APIs, you can eject to "React Native + ExpoKit" which will still allow you to build your own native code and continue using the Expo APIs. See the [ejecting guide](https://github.com/react-community/create-react-native-app/blob/master/EJECTING.md) for more details about this option.
220 |
221 | ## Troubleshooting
222 |
223 | ### Networking
224 |
225 | If you're unable to load your app on your phone due to a network timeout or a refused connection, a good first step is to verify that your phone and computer are on the same network and that they can reach each other. Create React Native App needs access to ports 19000 and 19001 so ensure that your network and firewall settings allow access from your device to your computer on both of these ports.
226 |
227 | Try opening a web browser on your phone and opening the URL that the packager script prints, replacing `exp://` with `http://`. So, for example, if underneath the QR code in your terminal you see:
228 |
229 | ```
230 | exp://192.168.0.1:19000
231 | ```
232 |
233 | Try opening Safari or Chrome on your phone and loading
234 |
235 | ```
236 | http://192.168.0.1:19000
237 | ```
238 |
239 | and
240 |
241 | ```
242 | http://192.168.0.1:19001
243 | ```
244 |
245 | If this works, but you're still unable to load your app by scanning the QR code, please open an issue on the [Create React Native App repository](https://github.com/react-community/create-react-native-app) with details about these steps and any other error messages you may have received.
246 |
247 | If you're not able to load the `http` URL in your phone's web browser, try using the tethering/mobile hotspot feature on your phone (beware of data usage, though), connecting your computer to that WiFi network, and restarting the packager.
248 |
249 | ### iOS Simulator won't open
250 |
251 | If you're on a Mac, there are a few errors that users sometimes see when attempting to `npm run ios`:
252 |
253 | - "non-zero exit code: 107"
254 | - "You may need to install Xcode" but it is already installed
255 | - and others
256 |
257 | There are a few steps you may want to take to troubleshoot these kinds of errors:
258 |
259 | 1. Make sure Xcode is installed and open it to accept the license agreement if it prompts you. You can install it from the Mac App Store.
260 | 2. Open Xcode's Preferences, the Locations tab, and make sure that the `Command Line Tools` menu option is set to something. Sometimes when the CLI tools are first installed by Homebrew this option is left blank, which can prevent Apple utilities from finding the simulator. Make sure to re-run `npm/yarn run ios` after doing so.
261 | 3. If that doesn't work, open the Simulator, and under the app menu select `Reset Contents and Settings...`. After that has finished, quit the Simulator, and re-run `npm/yarn run ios`.
262 |
263 | ### QR Code does not scan
264 |
265 | If you're not able to scan the QR code, make sure your phone's camera is focusing correctly, and also make sure that the contrast on the two colors in your terminal is high enough. For example, WebStorm's default themes may [not have enough contrast](https://github.com/react-community/create-react-native-app/issues/49) for terminal QR codes to be scannable with the system barcode scanners that the Expo app uses.
266 |
267 | If this causes problems for you, you may want to try changing your terminal's color theme to have more contrast, or running Create React Native App from a different terminal. You can also manually enter the URL printed by the packager script in the Expo app's search bar to load it manually.
268 |
--------------------------------------------------------------------------------
/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 | lib_deps = []
12 |
13 | for jarfile in glob(['libs/*.jar']):
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 |
21 | for aarfile in glob(['libs/*.aar']):
22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
23 | lib_deps.append(':' + name)
24 | android_prebuilt_aar(
25 | name = name,
26 | aar = aarfile,
27 | )
28 |
29 | android_library(
30 | name = "all-libs",
31 | exported_deps = lib_deps,
32 | )
33 |
34 | android_library(
35 | name = "app-code",
36 | srcs = glob([
37 | "src/main/java/**/*.java",
38 | ]),
39 | deps = [
40 | ":all-libs",
41 | ":build_config",
42 | ":res",
43 | ],
44 | )
45 |
46 | android_build_config(
47 | name = "build_config",
48 | package = "com.rni",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.rni",
54 | res = "src/main/res",
55 | )
56 |
57 | android_binary(
58 | name = "app",
59 | keystore = "//android/keystores:debug",
60 | manifest = "src/main/AndroidManifest.xml",
61 | package_type = "debug",
62 | deps = [
63 | ":app-code",
64 | ],
65 | )
66 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation
19 | * entryFile: "index.android.js",
20 | *
21 | * // whether to bundle JS and assets in debug mode
22 | * bundleInDebug: false,
23 | *
24 | * // whether to bundle JS and assets in release mode
25 | * bundleInRelease: true,
26 | *
27 | * // whether to bundle JS and assets in another build variant (if configured).
28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
29 | * // The configuration property can be in the following formats
30 | * // 'bundleIn${productFlavor}${buildType}'
31 | * // 'bundleIn${buildType}'
32 | * // bundleInFreeDebug: true,
33 | * // bundleInPaidRelease: true,
34 | * // bundleInBeta: true,
35 | *
36 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
37 | * // for example: to disable dev mode in the staging build type (if configured)
38 | * devDisabledInStaging: true,
39 | * // The configuration property can be in the following formats
40 | * // 'devDisabledIn${productFlavor}${buildType}'
41 | * // 'devDisabledIn${buildType}'
42 | *
43 | * // the root of your project, i.e. where "package.json" lives
44 | * root: "../../",
45 | *
46 | * // where to put the JS bundle asset in debug mode
47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
48 | *
49 | * // where to put the JS bundle asset in release mode
50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
51 | *
52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
53 | * // require('./image.png')), in debug mode
54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
55 | *
56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
57 | * // require('./image.png')), in release mode
58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
59 | *
60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64 | * // for example, you might want to remove it from here.
65 | * inputExcludes: ["android/**", "ios/**"],
66 | *
67 | * // override which node gets called and with what additional arguments
68 | * nodeExecutableAndArgs: ["node"],
69 | *
70 | * // supply additional arguments to the packager
71 | * extraPackagerArgs: []
72 | * ]
73 | */
74 |
75 | project.ext.react = [
76 | entryFile: "index.js"
77 | ]
78 |
79 | apply from: "../../node_modules/react-native/react.gradle"
80 |
81 | /**
82 | * Set this to true to create two separate APKs instead of one:
83 | * - An APK that only works on ARM devices
84 | * - An APK that only works on x86 devices
85 | * The advantage is the size of the APK is reduced by about 4MB.
86 | * Upload all the APKs to the Play Store and people will download
87 | * the correct one based on the CPU architecture of their device.
88 | */
89 | def enableSeparateBuildPerCPUArchitecture = false
90 |
91 | /**
92 | * Run Proguard to shrink the Java bytecode in release builds.
93 | */
94 | def enableProguardInReleaseBuilds = false
95 |
96 | android {
97 | compileSdkVersion rootProject.ext.compileSdkVersion
98 | buildToolsVersion rootProject.ext.buildToolsVersion
99 |
100 | defaultConfig {
101 | applicationId "com.rni"
102 | minSdkVersion rootProject.ext.minSdkVersion
103 | targetSdkVersion rootProject.ext.targetSdkVersion
104 | versionCode 1
105 | versionName "1.0"
106 | ndk {
107 | abiFilters "armeabi-v7a", "x86"
108 | }
109 | }
110 | splits {
111 | abi {
112 | reset()
113 | enable enableSeparateBuildPerCPUArchitecture
114 | universalApk false // If true, also generate a universal APK
115 | include "armeabi-v7a", "x86"
116 | }
117 | }
118 | buildTypes {
119 | release {
120 | minifyEnabled enableProguardInReleaseBuilds
121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
122 | }
123 | }
124 | // applicationVariants are e.g. debug, release
125 | applicationVariants.all { variant ->
126 | variant.outputs.each { output ->
127 | // For each separate APK per architecture, set a unique version code as described here:
128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
129 | def versionCodes = ["armeabi-v7a":1, "x86":2]
130 | def abi = output.getFilter(OutputFile.ABI)
131 | if (abi != null) { // null for the universal-debug, universal-release variants
132 | output.versionCodeOverride =
133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
134 | }
135 | }
136 | }
137 | }
138 |
139 | dependencies {
140 | implementation project(':react-native-vector-icons')
141 | implementation fileTree(dir: "libs", include: ["*.jar"])
142 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
143 | implementation "com.facebook.react:react-native:+" // From node_modules
144 | }
145 |
146 | // Run this once to be able to run the application with BUCK
147 | // puts all compile dependencies into folder libs for BUCK to use
148 | task copyDownloadableDepsToLibs(type: Copy) {
149 | from configurations.compile
150 | into 'libs'
151 | }
152 |
--------------------------------------------------------------------------------
/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 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/AntDesign.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/AntDesign.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Entypo.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Entypo.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/EvilIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/EvilIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Feather.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Feather.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/FontAwesome.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Foundation.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Foundation.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Ionicons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/MaterialIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/MaterialIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Octicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Octicons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/SimpleLineIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/SimpleLineIcons.ttf
--------------------------------------------------------------------------------
/android/app/src/main/assets/fonts/Zocial.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/assets/fonts/Zocial.ttf
--------------------------------------------------------------------------------
/android/app/src/main/java/com/rni/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.rni;
2 |
3 | import com.facebook.react.ReactActivity;
4 |
5 | public class MainActivity extends ReactActivity {
6 |
7 | /**
8 | * Returns the name of the main component registered from JavaScript.
9 | * This is used to schedule rendering of the component.
10 | */
11 | @Override
12 | protected String getMainComponentName() {
13 | return "RNI";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/android/app/src/main/java/com/rni/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.rni;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.oblador.vectoricons.VectorIconsPackage;
7 | import com.facebook.react.ReactNativeHost;
8 | import com.facebook.react.ReactPackage;
9 | import com.facebook.react.shell.MainReactPackage;
10 | import com.facebook.soloader.SoLoader;
11 |
12 | import java.util.Arrays;
13 | import java.util.List;
14 |
15 | public class MainApplication extends Application implements ReactApplication {
16 |
17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
18 | @Override
19 | public boolean getUseDeveloperSupport() {
20 | return BuildConfig.DEBUG;
21 | }
22 |
23 | @Override
24 | protected List getPackages() {
25 | return Arrays.asList(
26 | new MainReactPackage(),
27 | new VectorIconsPackage()
28 | );
29 | }
30 |
31 | @Override
32 | protected String getJSMainModuleName() {
33 | return "index";
34 | }
35 | };
36 |
37 | @Override
38 | public ReactNativeHost getReactNativeHost() {
39 | return mReactNativeHost;
40 | }
41 |
42 | @Override
43 | public void onCreate() {
44 | super.onCreate();
45 | SoLoader.init(this, /* native exopackage */ false);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | RNI
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 = 19
7 | compileSdkVersion = 28
8 | targetSdkVersion = 26
9 | supportLibVersion = "27.1.0"
10 | }
11 | repositories {
12 | google()
13 | jcenter()
14 | }
15 | dependencies {
16 | classpath 'com.android.tools.build:gradle:3.2.1'
17 |
18 | // NOTE: Do not place your application dependencies here; they belong
19 | // in the individual module build.gradle files
20 | }
21 | }
22 |
23 | allprojects {
24 | repositories {
25 | mavenLocal()
26 | maven { url 'https://maven.google.com' }
27 | maven { url "https://jitpack.io" }
28 | jcenter()
29 | maven {
30 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
31 | url "$rootDir/../node_modules/react-native/android"
32 | }
33 | }
34 | }
35 |
36 | subprojects {
37 | afterEvaluate {project ->
38 | if (project.hasProperty("android")) {
39 | android {
40 | compileSdkVersion 28
41 | buildToolsVersion "28.0.3"
42 | }
43 | }
44 | }
45 | }
46 |
47 | project.configurations.all {
48 | resolutionStrategy.eachDependency { details ->
49 | if (details.requested.group == 'com.android.support' && !
50 | details.requested.name.contains('multidex')) {
51 | details.useVersion "28.0.3"
52 | }
53 | }
54 | }
--------------------------------------------------------------------------------
/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/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
6 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10 | DEFAULT_JVM_OPTS=""
11 |
12 | APP_NAME="Gradle"
13 | APP_BASE_NAME=`basename "$0"`
14 |
15 | # Use the maximum available, or set MAX_FD != -1 to use that value.
16 | MAX_FD="maximum"
17 |
18 | warn ( ) {
19 | echo "$*"
20 | }
21 |
22 | die ( ) {
23 | echo
24 | echo "$*"
25 | echo
26 | exit 1
27 | }
28 |
29 | # OS specific support (must be 'true' or 'false').
30 | cygwin=false
31 | msys=false
32 | darwin=false
33 | case "`uname`" in
34 | CYGWIN* )
35 | cygwin=true
36 | ;;
37 | Darwin* )
38 | darwin=true
39 | ;;
40 | MINGW* )
41 | msys=true
42 | ;;
43 | esac
44 |
45 | # For Cygwin, ensure paths are in UNIX format before anything is touched.
46 | if $cygwin ; then
47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
48 | fi
49 |
50 | # Attempt to set APP_HOME
51 | # Resolve links: $0 may be a link
52 | PRG="$0"
53 | # Need this for relative symlinks.
54 | while [ -h "$PRG" ] ; do
55 | ls=`ls -ld "$PRG"`
56 | link=`expr "$ls" : '.*-> \(.*\)$'`
57 | if expr "$link" : '/.*' > /dev/null; then
58 | PRG="$link"
59 | else
60 | PRG=`dirname "$PRG"`"/$link"
61 | fi
62 | done
63 | SAVED="`pwd`"
64 | cd "`dirname \"$PRG\"`/" >&-
65 | APP_HOME="`pwd -P`"
66 | cd "$SAVED" >&-
67 |
68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
69 |
70 | # Determine the Java command to use to start the JVM.
71 | if [ -n "$JAVA_HOME" ] ; then
72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
73 | # IBM's JDK on AIX uses strange locations for the executables
74 | JAVACMD="$JAVA_HOME/jre/sh/java"
75 | else
76 | JAVACMD="$JAVA_HOME/bin/java"
77 | fi
78 | if [ ! -x "$JAVACMD" ] ; then
79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
80 |
81 | Please set the JAVA_HOME variable in your environment to match the
82 | location of your Java installation."
83 | fi
84 | else
85 | JAVACMD="java"
86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
87 |
88 | Please set the JAVA_HOME variable in your environment to match the
89 | location of your Java installation."
90 | fi
91 |
92 | # Increase the maximum file descriptors if we can.
93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
94 | MAX_FD_LIMIT=`ulimit -H -n`
95 | if [ $? -eq 0 ] ; then
96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
97 | MAX_FD="$MAX_FD_LIMIT"
98 | fi
99 | ulimit -n $MAX_FD
100 | if [ $? -ne 0 ] ; then
101 | warn "Could not set maximum file descriptor limit: $MAX_FD"
102 | fi
103 | else
104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
105 | fi
106 | fi
107 |
108 | # For Darwin, add options to specify how the application appears in the dock
109 | if $darwin; then
110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
111 | fi
112 |
113 | # For Cygwin, switch paths to Windows format before running java
114 | if $cygwin ; then
115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
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 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158 | function splitJvmOpts() {
159 | JVM_OPTS=("$@")
160 | }
161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
163 |
164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
165 |
--------------------------------------------------------------------------------
/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 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
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 Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/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 = 'RNI'
2 | include ':react-native-vector-icons'
3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
4 |
5 | include ':app'
6 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "RNI",
3 | "displayName": "React Native App"
4 | }
5 |
--------------------------------------------------------------------------------
/app/actions/counter/actionTypes.js:
--------------------------------------------------------------------------------
1 | export const INCREMENT = 'INCREMENT';
2 | export const DECREMENT = 'DECREMENT';
3 | export const ADD = 'ADD';
4 | export const SUBTRACTION = 'SUBTRACTION';
5 |
--------------------------------------------------------------------------------
/app/actions/counter/actions.js:
--------------------------------------------------------------------------------
1 | import * as types from './actionTypes';
2 |
3 | export const Increment = () => dispatch => {
4 | dispatch(increment());
5 | };
6 |
7 | export const Decrement = () => dispatch => {
8 | dispatch(decrement());
9 | };
10 |
11 | export const Add = val => dispatch => {
12 | dispatch(add(val));
13 | };
14 |
15 | export const Subtration = val => dispatch => {
16 | dispatch(subtraction(val));
17 | };
18 |
19 | const increment = () => ({
20 | type: types.INCREMENT
21 | });
22 |
23 | const decrement = () => ({
24 | type: types.DECREMENT
25 | });
26 |
27 | const add = value => ({
28 | type: types.ADD,
29 | value
30 | });
31 |
32 | const subtraction = value => ({
33 | type: types.SUBTRACTION,
34 | value
35 | });
36 |
--------------------------------------------------------------------------------
/app/actions/session/actions.js:
--------------------------------------------------------------------------------
1 | import firebaseService from 'enviroments/firebase';
2 | import * as types from './actionsTypes';
3 |
4 | export const restoreSession = () => dispatch => {
5 | dispatch(sessionLoading());
6 | dispatch(sessionRestoring());
7 |
8 | firebaseService.auth().onAuthStateChanged(user => {
9 | if (user) {
10 | dispatch(sessionSuccess(user));
11 | } else {
12 | dispatch(sessionLogout());
13 | }
14 | });
15 | };
16 |
17 | export const loginUser = (email, password) => dispatch => {
18 | dispatch(sessionLoading());
19 |
20 | firebaseService
21 | .auth()
22 | .signInWithEmailAndPassword(email, password)
23 | .then(user => {
24 | dispatch(sessionSuccess(user));
25 | })
26 | .catch(error => {
27 | dispatch(sessionError(error.message));
28 | });
29 | };
30 |
31 | export const signupUser = (email, password) => dispatch => {
32 | dispatch(sessionLoading());
33 |
34 | firebaseService
35 | .auth()
36 | .createUserWithEmailAndPassword(email, password)
37 | .then(user => {
38 | dispatch(signupSuccess(user));
39 | })
40 | .catch(error => {
41 | dispatch(sessionError(error.message));
42 | });
43 | };
44 |
45 | export const logoutUser = () => dispatch => {
46 | dispatch(sessionLoading());
47 |
48 | firebaseService
49 | .auth()
50 | .signOut()
51 | .then(() => {
52 | dispatch(sessionLogout());
53 | })
54 | .catch(error => {
55 | dispatch(sessionError(error.message));
56 | });
57 | };
58 |
59 | const sessionRestoring = () => ({
60 | type: types.SESSION_RESTORING
61 | });
62 |
63 | const sessionLoading = () => ({
64 | type: types.SESSION_LOADING
65 | });
66 |
67 | const sessionSuccess = user => ({
68 | type: types.SESSION_SUCCESS,
69 | user
70 | });
71 |
72 | const signupSuccess = user => ({
73 | type: types.SIGNUP_SUCCESS,
74 | user
75 | });
76 |
77 | const sessionError = error => ({
78 | type: types.SESSION_ERROR,
79 | error
80 | });
81 |
82 | const sessionLogout = () => ({
83 | type: types.SESSION_LOGOUT
84 | });
85 |
--------------------------------------------------------------------------------
/app/actions/session/actionsTypes.js:
--------------------------------------------------------------------------------
1 | export const SESSION_RESTORING = 'SESSION_RESTORING';
2 | export const SESSION_LOADING = 'SESSION_LOADING';
3 | export const SESSION_SUCCESS = 'SESSION_SUCCESS';
4 | export const SIGNUP_SUCCESS = 'SIGNUP_SUCCESS';
5 | export const SESSION_ERROR = 'SESSION_ERROR';
6 | export const SESSION_LOGOUT = 'SESSION_LOGOUT';
7 |
--------------------------------------------------------------------------------
/app/actions/todolist/actionTypes.js:
--------------------------------------------------------------------------------
1 | export const ADD = 'ADD';
2 | export const REMOVE = 'REMOVE';
3 |
--------------------------------------------------------------------------------
/app/actions/todolist/actions.js:
--------------------------------------------------------------------------------
1 | import * as types from './actionTypes';
2 |
3 | export const Add = item => dispatch => {
4 | dispatch(add(item));
5 | };
6 |
7 | export const Remove = index => dispatch => {
8 | dispatch(remove(index));
9 | };
10 |
11 | export const add = item => ({
12 | type: types.ADD,
13 | todo: item
14 | });
15 |
16 | export const remove = index => ({
17 | type: types.REMOVE,
18 | index: index
19 | });
20 |
--------------------------------------------------------------------------------
/app/components/auth/BasicForm/basicForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, TextInput, TouchableOpacity, Text } from 'react-native';
3 | import { styles } from './styles';
4 |
5 | export class BasicFormComponent extends Component {
6 | state = { email: '', password: '' };
7 |
8 | handleEmailChange = email => this.setState({ email });
9 |
10 | handlePasswordChange = password => this.setState({ password });
11 |
12 | handleButtonPress = () => {
13 | const { email, password } = this.state;
14 | this.props.onButtonPress(email, password);
15 | };
16 |
17 | render() {
18 | const { email, password } = this.state;
19 | const { textInput, button, buttonTitle } = styles;
20 | return (
21 |
22 |
32 |
33 |
42 |
43 |
44 | {this.props.buttonTitle}
45 |
46 |
47 | );
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/app/components/auth/BasicForm/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | alignItems: 'stretch',
7 | justifyContent: 'center'
8 | },
9 | textInput: {
10 | backgroundColor: '#ffffff',
11 | padding: 10,
12 | height: 40,
13 | margin: 10,
14 | borderRadius: 5
15 | },
16 | button: {
17 | alignItems: 'center',
18 | justifyContent: 'center',
19 | height: 40,
20 | margin: 10,
21 | borderRadius: 5,
22 | padding: 3,
23 | backgroundColor: '#88cc88'
24 | },
25 | buttonTitle: {
26 | color: '#ffffff',
27 | fontSize: 18,
28 | fontWeight: 'bold'
29 | },
30 | loginBox: {
31 | margin: 10
32 | },
33 | imageBox: {
34 | alignItems: 'center',
35 | marginTop: 20
36 | },
37 | image: {
38 | width: 120,
39 | height: 120
40 | },
41 | scrollView: {
42 | backgroundColor: '#2299ec'
43 | }
44 | });
45 |
--------------------------------------------------------------------------------
/app/components/auth/LoginForm/index.js:
--------------------------------------------------------------------------------
1 | import LoginFormComponent from './loginForm';
2 |
3 | export default LoginFormComponent;
4 |
--------------------------------------------------------------------------------
/app/components/auth/LoginForm/loginForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Alert, Image, Button } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import { BasicFormComponent } from '../BasicForm/basicForm';
5 | import { LoadingIndicator } from 'components/loadingIndicator/loadingIndicator';
6 | import { styles } from '../BasicForm/styles';
7 | import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
8 | import { Actions } from 'react-native-router-flux';
9 | import { loginUser, restoreSession } from 'actions/session/actions';
10 |
11 | const FIREBASE_LOGO = require('icons/firebase.png');
12 |
13 | class LoginFormComponent extends Component {
14 | componentDidMount() {
15 | this.props.restore();
16 | }
17 |
18 | componentDidUpdate(prevProps) {
19 | const { error, logged } = this.props;
20 |
21 | if (!prevProps.error && error) Alert.alert('error', error);
22 |
23 | if (logged) Actions.reset('home');
24 | }
25 |
26 | render() {
27 | const { login, loading } = this.props;
28 | const { scrollView, imageBox, image, loginBox } = styles;
29 | return (
30 |
31 |
32 |
33 |
34 |
35 | {loading ? (
36 |
37 | ) : (
38 |
39 | )}
40 |
41 | {loading ? null : }
42 |
43 | );
44 | }
45 | }
46 |
47 | const mapStateToProps = ({ routes, sessionReducer: { restoring, loading, user, error, logged } }) => ({
48 | routes: routes,
49 | restoring: restoring,
50 | loading: loading,
51 | user: user,
52 | error: error,
53 | logged: logged
54 | });
55 |
56 | const mapDispatchToProps = {
57 | login: loginUser,
58 | restore: restoreSession
59 | };
60 |
61 | export default connect(
62 | mapStateToProps,
63 | mapDispatchToProps
64 | )(LoginFormComponent);
65 |
--------------------------------------------------------------------------------
/app/components/auth/SignupForm/index.js:
--------------------------------------------------------------------------------
1 | import SignupFormComponent from './signupForm';
2 |
3 | export default SignupFormComponent;
4 |
--------------------------------------------------------------------------------
/app/components/auth/SignupForm/signupForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Alert, Image } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import { BasicFormComponent } from '../BasicForm/basicForm';
5 | import { LoadingIndicator } from 'components/loadingIndicator/loadingIndicator';
6 | import { styles } from '../BasicForm/styles';
7 | import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
8 | import { Actions } from 'react-native-router-flux';
9 | import { signupUser } from 'actions/session/actions';
10 |
11 | const FIREBASE_LOGO = require('icons/firebase.png');
12 |
13 | class SignupFormComponent extends Component {
14 | componentDidUpdate(prevProps) {
15 | if (this.props.registered) Actions.reset('home');
16 | }
17 |
18 | render() {
19 | const { signup, loading } = this.props;
20 | const { scrollView, imageBox, image, loginBox } = styles;
21 | return (
22 |
23 |
24 |
25 |
26 |
27 | {loading ? (
28 |
29 | ) : (
30 |
31 | )}
32 |
33 |
34 | );
35 | }
36 | }
37 |
38 | const mapStateToProps = ({ routes, sessionReducer: { loading, error, registered } }) => ({
39 | routes: routes,
40 | loading: loading,
41 | error: error,
42 | registered: registered
43 | });
44 |
45 | const mapDispatchToProps = {
46 | signup: signupUser
47 | };
48 |
49 | export default connect(
50 | mapStateToProps,
51 | mapDispatchToProps
52 | )(SignupFormComponent);
53 |
--------------------------------------------------------------------------------
/app/components/counter/counter.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Button, Text } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import { styles } from './styles';
5 | import { CounterControl } from './counterControl';
6 | import { CounterOutput } from './counterOutput';
7 | import { Increment, Decrement, Add, Subtration } from 'actions/counter/actions';
8 |
9 | export class Counter extends React.Component {
10 | addNumber = () => this.props.onAdd(5);
11 |
12 | removeNumber = () => this.props.onSubtraction(2);
13 |
14 | render() {
15 | const { onIncrement, onDecrement, count } = this.props;
16 | return (
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | );
27 | }
28 | }
29 |
30 | const mapStateToProps = ({ routes, counterReducer }) => ({
31 | routes: routes,
32 | count: counterReducer.counter,
33 | value: counterReducer.value
34 | });
35 |
36 | const mapDispatchToProps = {
37 | onIncrement: Increment,
38 | onDecrement: Decrement,
39 | onAdd: Add,
40 | onSubtraction: Subtration
41 | };
42 |
43 | export default connect(
44 | mapStateToProps,
45 | mapDispatchToProps
46 | )(Counter);
47 |
--------------------------------------------------------------------------------
/app/components/counter/counterControl.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Text, Button } from 'react-native';
3 | import { styles } from './styles';
4 |
5 | export class CounterControl extends Component {
6 | render() {
7 | const { clicked, label } = this.props;
8 | return (
9 |
10 |
11 |
12 | );
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/app/components/counter/counterOutput.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Text } from 'react-native';
3 | import { styles } from './styles';
4 |
5 | export class CounterOutput extends Component {
6 | render() {
7 | const { value } = this.props;
8 | return (
9 |
10 | {String(value)}
11 |
12 | );
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/app/components/counter/index.js:
--------------------------------------------------------------------------------
1 | import Counter from './counter';
2 |
3 | export default Counter;
4 |
--------------------------------------------------------------------------------
/app/components/counter/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | alignItems: 'center',
7 | justifyContent: 'center',
8 | backgroundColor: '#e9f7fd'
9 | },
10 | image: {
11 | width: 100,
12 | height: 100,
13 | marginBottom: 50
14 | },
15 | marginBox: {
16 | margin: 10
17 | },
18 | title: {
19 | fontSize: 24,
20 | margin: 20
21 | }
22 | });
23 |
--------------------------------------------------------------------------------
/app/components/home/home.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Button, Image, Text } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import Icon from 'react-native-vector-icons/Ionicons';
5 | import { styles } from './styles';
6 | import { Actions } from 'react-native-router-flux';
7 | import { LoadingIndicator } from 'components/loadingIndicator/loadingIndicator';
8 | import { logoutUser } from 'actions/session/actions';
9 |
10 | class Home extends Component {
11 | logout = () => {
12 | this.props.logout();
13 | setTimeout(() => {
14 | Actions.reset('login');
15 | }, 100);
16 | };
17 |
18 | render() {
19 | const { container, marginBox, title } = styles;
20 | const {
21 | user: { email }
22 | } = this.props;
23 | return (
24 |
25 |
26 |
27 |
28 |
29 |
30 | User: {email}
31 |
32 |
33 |
34 |
35 |
36 |
37 | @skantus
38 |
39 |
40 | );
41 | }
42 | }
43 |
44 | const mapStateToProps = ({ routes, sessionReducer }) => ({
45 | routes: routes,
46 | user: sessionReducer.user
47 | });
48 |
49 | const mapDispatchToProps = {
50 | logout: logoutUser
51 | };
52 |
53 | export default connect(
54 | mapStateToProps,
55 | mapDispatchToProps
56 | )(Home);
57 |
--------------------------------------------------------------------------------
/app/components/home/index.js:
--------------------------------------------------------------------------------
1 | import Home from './home';
2 |
3 | export default Home;
4 |
--------------------------------------------------------------------------------
/app/components/home/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | alignItems: 'center',
7 | flexDirection: 'column',
8 | justifyContent: 'space-between',
9 | backgroundColor: '#e9f7fd'
10 | },
11 | primary: {
12 | color: 'rgb(116, 70, 195)'
13 | },
14 | marginBox: {
15 | alignItems: 'center',
16 | margin: 20
17 | },
18 | title: {
19 | fontSize: 18,
20 | margin: 20
21 | }
22 | });
23 |
--------------------------------------------------------------------------------
/app/components/loadingIndicator/loadingIndicator.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, ActivityIndicator } from 'react-native';
3 | import styles from './styles';
4 |
5 | export class LoadingIndicator extends Component {
6 | render() {
7 | const { size, color } = this.props;
8 | return (
9 |
10 |
11 |
12 | );
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/app/components/loadingIndicator/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export default StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | }
7 | });
8 |
--------------------------------------------------------------------------------
/app/components/routes/index.js:
--------------------------------------------------------------------------------
1 | import Routes from './routes';
2 |
3 | export default Routes;
4 |
--------------------------------------------------------------------------------
/app/components/routes/routes.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { styles } from './styles';
3 | import { Scene, Router } from 'react-native-router-flux';
4 | import { connect, Provider } from 'react-redux';
5 |
6 | import HomeContainer from 'components/home';
7 | import SearchContainer from 'components/search';
8 | import CounterContainer from 'components/counter';
9 | import SessionContainer from 'components/auth/LoginForm';
10 | import SignupContainer from 'components/auth/SignupForm';
11 | import TodolistContainer from 'components/todolist';
12 |
13 | import configureStore from 'store';
14 |
15 | const store = configureStore();
16 | const RouterRedux = connect()(Router);
17 |
18 | export default class Routes extends React.Component {
19 | render() {
20 | return (
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 | );
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/app/components/routes/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | navBar: {
5 | backgroundColor: '#2e99e4'
6 | },
7 | barButtonTextStyle: {
8 | fontSize: 18
9 | }
10 | });
11 |
--------------------------------------------------------------------------------
/app/components/search/index.js:
--------------------------------------------------------------------------------
1 | import Search from './search';
2 |
3 | export default Search;
4 |
--------------------------------------------------------------------------------
/app/components/search/search.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, Button } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import { styles } from './styles';
5 | import { Actions } from 'react-native-router-flux';
6 |
7 | class Search extends React.Component {
8 | render() {
9 | const { pop, counter } = Actions;
10 | return (
11 |
12 |
13 |
14 |
15 | );
16 | }
17 | }
18 |
19 | const mapStateToProps = ({ routes }) => ({ routes });
20 | export default connect(mapStateToProps)(Search);
21 |
--------------------------------------------------------------------------------
/app/components/search/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | alignItems: 'center',
7 | justifyContent: 'center',
8 | backgroundColor: '#e9f7fd'
9 | }
10 | });
11 |
--------------------------------------------------------------------------------
/app/components/todolist/index.js:
--------------------------------------------------------------------------------
1 | import TodoList from './todolist';
2 |
3 | export default TodoList;
4 |
--------------------------------------------------------------------------------
/app/components/todolist/styles.js:
--------------------------------------------------------------------------------
1 | import { StyleSheet } from 'react-native';
2 |
3 | export const styles = StyleSheet.create({
4 | container: {
5 | flex: 1,
6 | alignItems: 'stretch'
7 | },
8 | input: {
9 | padding: 15,
10 | height: 50
11 | },
12 | item: {
13 | backgroundColor: '#2e99e4',
14 | padding: 15,
15 | margin: 10,
16 | marginBottom: 5
17 | },
18 | text: {
19 | color: '#ffffff',
20 | fontSize: 16,
21 | textAlign: 'center'
22 | }
23 | });
24 |
--------------------------------------------------------------------------------
/app/components/todolist/todolist.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View } from 'react-native';
3 | import { connect } from 'react-redux';
4 | import { styles } from './styles';
5 | import { Add, Remove } from 'actions/todolist/actions';
6 |
7 | import { TodolistInput } from './todolistInput';
8 | import { TodoListItems } from './todolistItems';
9 |
10 | class TodoList extends React.Component {
11 | onAddTodo = text => this.props.onAdd(text);
12 |
13 | onRemoveTodo = index => this.props.onRemove(index);
14 |
15 | render() {
16 | const { todos } = this.props;
17 |
18 | return (
19 |
20 |
21 |
22 |
23 | );
24 | }
25 | }
26 |
27 | const mapStateToProps = ({ todolistReducer: { todos } }) => ({
28 | todos: todos
29 | });
30 |
31 | const mapDispatchToProps = {
32 | onAdd: Add,
33 | onRemove: Remove
34 | };
35 |
36 | export default connect(
37 | mapStateToProps,
38 | mapDispatchToProps
39 | )(TodoList);
40 |
--------------------------------------------------------------------------------
/app/components/todolist/todolistInput.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { TextInput, StyleSheet } from 'react-native';
3 | import { styles } from './styles';
4 |
5 | export class TodolistInput extends React.Component {
6 | state = { text: '' };
7 |
8 | onChangeText = text => this.setState({ text });
9 |
10 | onSubmitEditing = () => {
11 | const { onSubmitEditing } = this.props;
12 | const { text } = this.state;
13 |
14 | if (!text) return; // Don't submit if empty
15 |
16 | onSubmitEditing(text);
17 | this.setState({ text: '' });
18 | };
19 |
20 | render() {
21 | const { placeholder } = this.props;
22 | const { text } = this.state;
23 |
24 | return (
25 |
32 | );
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/app/components/todolist/todolistItems.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { View, TouchableOpacity, Text, StyleSheet } from 'react-native';
3 | import { styles } from './styles';
4 |
5 | export class TodoListItems extends React.Component {
6 | renderItem = (text, i) => {
7 | const { onPressItem } = this.props;
8 | return (
9 | onPressItem(i)} key={i}>
10 | {text}
11 |
12 | );
13 | };
14 |
15 | render() {
16 | const { list } = this.props;
17 |
18 | return {list.map(this.renderItem)};
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/app/enviroments/firebase.js:
--------------------------------------------------------------------------------
1 | import firebase from '@firebase/app';
2 | import '@firebase/auth';
3 |
4 | const config = {
5 | apiKey: 'AIzaSyBx0YuFCeqedFUGgpmdZOr7T7wGzy9N8Qo',
6 | authDomain: 'pulso-3f393.firebaseapp.com',
7 | databaseURL: 'https://pulso-3f393.firebaseio.com',
8 | projectId: 'pulso-3f393',
9 | storageBucket: 'pulso-3f393.appspot.com',
10 | messagingSenderId: '677974717412'
11 | };
12 |
13 | let instance = null;
14 |
15 | class FirebaseService {
16 | constructor() {
17 | if (!instance) {
18 | this.app = firebase.initializeApp(config);
19 | instance = this;
20 | }
21 | return instance;
22 | }
23 | }
24 |
25 | const firebaseService = new FirebaseService().app;
26 | export default firebaseService;
27 |
--------------------------------------------------------------------------------
/app/reducers/counter/__snapshots__/counterReducer.test.js.snap:
--------------------------------------------------------------------------------
1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
2 |
3 | exports[`CounterReducer counter Should handle DECREMENT action 1`] = `
4 | Object {
5 | "counter": 0,
6 | }
7 | `;
8 |
9 | exports[`CounterReducer counter Should handle INCREMENT action 1`] = `
10 | Object {
11 | "counter": 2,
12 | }
13 | `;
14 |
15 | exports[`CounterReducer counter Should handle unknown action 1`] = `
16 | Object {
17 | "counter": 0,
18 | }
19 | `;
20 |
21 | exports[`CounterReducer counter Should provide the initial state 1`] = `
22 | Object {
23 | "counter": 0,
24 | }
25 | `;
26 |
--------------------------------------------------------------------------------
/app/reducers/counter/counterReducer.js:
--------------------------------------------------------------------------------
1 | import * as types from 'actions/counter/actionTypes';
2 |
3 | const initialState = {
4 | counter: 0
5 | };
6 |
7 | const counterReducer = (state = initialState, action) => {
8 | switch (action.type) {
9 | case types.INCREMENT:
10 | return { ...state, counter: state.counter + 1 };
11 | case types.DECREMENT:
12 | return { ...state, counter: state.counter - 1 };
13 | case types.ADD:
14 | return { ...state, counter: state.counter + action.value };
15 | case types.SUBTRACTION:
16 | return { ...state, counter: state.counter - action.value };
17 | default:
18 | return state;
19 | }
20 | };
21 |
22 | export default counterReducer;
23 |
--------------------------------------------------------------------------------
/app/reducers/counter/counterReducer.test.js:
--------------------------------------------------------------------------------
1 | import counterReducer from './counterReducer';
2 |
3 | describe('CounterReducer', () => {
4 | describe('counter', () => {
5 | it('Should provide the initial state', () => {
6 | let initialState = { counter: 0 };
7 | expect(counterReducer(undefined, {})).toMatchSnapshot(initialState);
8 | });
9 |
10 | it('Should handle INCREMENT action', () => {
11 | let state = { counter: 1 };
12 | expect(counterReducer(state, { type: 'INCREMENT' })).toMatchSnapshot({
13 | counter: 2
14 | });
15 | });
16 |
17 | it('Should handle DECREMENT action', () => {
18 | let state = { counter: 1 };
19 | expect(counterReducer(state, { type: 'DECREMENT' })).toMatchSnapshot({
20 | counter: 0
21 | });
22 | });
23 |
24 | it('Should handle unknown action', () => {
25 | let initialState = { counter: 0 };
26 | expect(counterReducer(initialState, { type: 'unknown' })).toMatchSnapshot({ counter: 0 });
27 | });
28 | });
29 | });
30 |
--------------------------------------------------------------------------------
/app/reducers/routes/routes.reducer.specs.js:
--------------------------------------------------------------------------------
1 | import routerReducer from './routesReducer';
2 |
3 | describe('RoutesReducer', () => {
4 | describe('Routes', () => {
5 | it('Should be provide the initial state', () => {
6 | expect(2).toBe(2);
7 | });
8 | });
9 | });
10 |
--------------------------------------------------------------------------------
/app/reducers/routes/routesReducer.js:
--------------------------------------------------------------------------------
1 | import { ActionConst } from 'react-native-router-flux';
2 |
3 | const initialState = {
4 | scene: {}
5 | };
6 |
7 | const routesReducer = (state = initialState, action) => {
8 | switch (action.type) {
9 | case ActionConst.FOCUS:
10 | return {
11 | ...state,
12 | scene: action.scene
13 | };
14 | default:
15 | return state;
16 | }
17 | };
18 |
19 | export default routesReducer;
20 |
--------------------------------------------------------------------------------
/app/reducers/session/sessionReducer.js:
--------------------------------------------------------------------------------
1 | import * as types from 'actions/session/actionsTypes';
2 |
3 | const initialState = {
4 | restoring: false,
5 | loading: false,
6 | user: {},
7 | error: null,
8 | logged: null,
9 | registered: null
10 | };
11 |
12 | const sessionReducer = (state = initialState, action) => {
13 | switch (action.type) {
14 | case types.SESSION_RESTORING:
15 | return { ...state, restoring: true };
16 | case types.SESSION_LOADING:
17 | return { ...state, restoring: false, loading: true, error: null };
18 | case types.SESSION_SUCCESS:
19 | return {
20 | ...state,
21 | restoring: false,
22 | loading: false,
23 | user: action.user,
24 | error: null,
25 | logged: true,
26 | registered: null
27 | };
28 | case types.SIGNUP_SUCCESS:
29 | return {
30 | ...state,
31 | restoring: false,
32 | loading: false,
33 | user: action.user,
34 | error: null,
35 | logged: null,
36 | registered: true
37 | };
38 | case types.SESSION_ERROR:
39 | return {
40 | ...state,
41 | restoring: false,
42 | loading: false,
43 | user: null,
44 | error: action.error,
45 | logged: null,
46 | registered: null
47 | };
48 | case types.SESSION_LOGOUT:
49 | return initialState;
50 | default:
51 | return state;
52 | }
53 | };
54 |
55 | export default sessionReducer;
56 |
--------------------------------------------------------------------------------
/app/reducers/todolist/todolistReducer.js:
--------------------------------------------------------------------------------
1 | import * as types from 'actions/todolist/actionTypes';
2 |
3 | const initialState = {
4 | todos: ['Learn React', 'Learn Redux', 'Learn Firebase', 'Learn Graphql']
5 | };
6 |
7 | const todolistReducer = (state = initialState, action) => {
8 | switch (action.type) {
9 | case types.ADD:
10 | return {
11 | ...state,
12 | todos: [action.todo, ...state.todos]
13 | };
14 | case types.REMOVE:
15 | return {
16 | ...state,
17 | todos: state.todos.filter((todo, i) => i !== action.index)
18 | };
19 | default:
20 | return state;
21 | }
22 | };
23 |
24 | export default todolistReducer;
25 |
--------------------------------------------------------------------------------
/app/store/index.js:
--------------------------------------------------------------------------------
1 | import Store from './store';
2 |
3 | export default Store;
4 |
--------------------------------------------------------------------------------
/app/store/rootReducer.js:
--------------------------------------------------------------------------------
1 | import { combineReducers } from 'redux';
2 |
3 | import routesReducer from 'reducers/routes/routesReducer';
4 | import counterReducer from 'reducers/counter/counterReducer';
5 | import sessionReducer from 'reducers/session/sessionReducer';
6 | import todolistReducer from 'reducers/todolist/todolistReducer';
7 |
8 | export default combineReducers({
9 | routesReducer,
10 | counterReducer,
11 | sessionReducer,
12 | todolistReducer
13 | });
14 |
--------------------------------------------------------------------------------
/app/store/store.js:
--------------------------------------------------------------------------------
1 | import { createStore, applyMiddleware } from 'redux';
2 | import thunk from 'redux-thunk';
3 |
4 | import rootReducer from './rootReducer';
5 |
6 | const configureStore = () => {
7 | const middleware = [thunk];
8 | return createStore(rootReducer, applyMiddleware(...middleware));
9 | };
10 |
11 | export default configureStore;
12 |
--------------------------------------------------------------------------------
/assets/icons/firebase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/icons/firebase.png
--------------------------------------------------------------------------------
/assets/icons/react.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/icons/react.png
--------------------------------------------------------------------------------
/assets/screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/screenshots/1.png
--------------------------------------------------------------------------------
/assets/screenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/screenshots/2.png
--------------------------------------------------------------------------------
/assets/screenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/screenshots/3.png
--------------------------------------------------------------------------------
/assets/screenshots/rfr.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/skantus/react-native-firebase-redux-authentication/e740be9be8d381cef6d5fd4c9c39d89c52dace81/assets/screenshots/rfr.jpg
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | /** @format */
2 |
3 | import { AppRegistry } from 'react-native';
4 | import App from './App';
5 | import { name as appName } from './app.json';
6 |
7 | AppRegistry.registerComponent(appName, () => App);
8 |
--------------------------------------------------------------------------------
/ios/RNI-tvOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UIViewControllerBasedStatusBarAppearance
38 |
39 | NSLocationWhenInUseUsageDescription
40 |
41 | NSAppTransportSecurity
42 |
43 |
44 | NSExceptionDomains
45 |
46 | localhost
47 |
48 | NSExceptionAllowsInsecureHTTPLoads
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/ios/RNI-tvOSTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ios/RNI.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 | 00E356F31AD99517003FC87E /* RNITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNITests.m */; };
16 | 07273CB53BF247A99B575AE5 /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 001AAF725B2044649352B49A /* FontAwesome5_Regular.ttf */; };
17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
18 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
19 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
20 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
21 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
22 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
23 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
24 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
26 | 28906F00E8014186AADFD3D2 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 57A55A840C064F7A8892BDFC /* MaterialIcons.ttf */; };
27 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
28 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
29 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
30 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
31 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
32 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
33 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
34 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
35 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
36 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
37 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
38 | 2DCD954D1E0B4F2C00145EB5 /* RNITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNITests.m */; };
39 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
40 | 3015A7E6101443958F4EB466 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8CA3FC04B5ED43178D89BA20 /* Zocial.ttf */; };
41 | 3A73A6EA520D4B74A0BFF311 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 526B80EC2F4B42FA9E4B8510 /* MaterialCommunityIcons.ttf */; };
42 | 5332DD4605D5426EAD1425BF /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4E31A83737C64F5CBA06AF18 /* Octicons.ttf */; };
43 | 552194E379AB42178D944487 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9CAB44D2BAC042F89AAC068F /* FontAwesome.ttf */; };
44 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
45 | 6284A2A6FC3646ED9EB0B1BF /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C111B5597EE3424A9B14BA8A /* Foundation.ttf */; };
46 | 64062581A81A4E5FB98944C4 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D0FC951D37CB4070A1987472 /* Feather.ttf */; };
47 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
48 | 887D80591DCA4C3CBE7156E6 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DAF31CA8F8244A7AA92237BA /* libRNVectorIcons.a */; };
49 | 8FC8456E157046CB9DA2BD08 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9F5D4D16344842E98D441E2C /* FontAwesome5_Solid.ttf */; };
50 | 91CF97E69A87481D865B8317 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E79478EAB30B4506BD1E1ACE /* SimpleLineIcons.ttf */; };
51 | A0D2C9F84BC244449293E28E /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E751BFB064814A87ACA00F6C /* Ionicons.ttf */; };
52 | AA6E7EA0B473479FA92E38FE /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B70C34755048499B93FA9A7C /* Entypo.ttf */; };
53 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
54 | C2B2720A78E44BE581B874A6 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3FB705C55FD14D7EB9A29C7A /* AntDesign.ttf */; };
55 | DFB1B6A5C4C34E2399A250CB /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6A5EC248E75240B2A0ABC223 /* EvilIcons.ttf */; };
56 | F1A3D4DE8AC24B92B4A86DAF /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C34BCA784189417C9C96D1E3 /* FontAwesome5_Brands.ttf */; };
57 | /* End PBXBuildFile section */
58 |
59 | /* Begin PBXContainerItemProxy section */
60 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
61 | isa = PBXContainerItemProxy;
62 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
63 | proxyType = 2;
64 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
65 | remoteInfo = RCTActionSheet;
66 | };
67 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
68 | isa = PBXContainerItemProxy;
69 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
70 | proxyType = 2;
71 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
72 | remoteInfo = RCTGeolocation;
73 | };
74 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
75 | isa = PBXContainerItemProxy;
76 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
77 | proxyType = 2;
78 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
79 | remoteInfo = RCTImage;
80 | };
81 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
82 | isa = PBXContainerItemProxy;
83 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
84 | proxyType = 2;
85 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
86 | remoteInfo = RCTNetwork;
87 | };
88 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
89 | isa = PBXContainerItemProxy;
90 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
91 | proxyType = 2;
92 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
93 | remoteInfo = RCTVibration;
94 | };
95 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
96 | isa = PBXContainerItemProxy;
97 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
98 | proxyType = 1;
99 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
100 | remoteInfo = RNI;
101 | };
102 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
103 | isa = PBXContainerItemProxy;
104 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
105 | proxyType = 2;
106 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
107 | remoteInfo = RCTSettings;
108 | };
109 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
110 | isa = PBXContainerItemProxy;
111 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
112 | proxyType = 2;
113 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
114 | remoteInfo = RCTWebSocket;
115 | };
116 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
117 | isa = PBXContainerItemProxy;
118 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
119 | proxyType = 2;
120 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
121 | remoteInfo = React;
122 | };
123 | 158B1B8521A74DD500CC8A06 /* PBXContainerItemProxy */ = {
124 | isa = PBXContainerItemProxy;
125 | containerPortal = D32252A2299F4B6CAE608FF7 /* RNVectorIcons.xcodeproj */;
126 | proxyType = 2;
127 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
128 | remoteInfo = RNVectorIcons;
129 | };
130 | 158B1B8721A74DD500CC8A06 /* PBXContainerItemProxy */ = {
131 | isa = PBXContainerItemProxy;
132 | containerPortal = D32252A2299F4B6CAE608FF7 /* RNVectorIcons.xcodeproj */;
133 | proxyType = 2;
134 | remoteGlobalIDString = A39873CE1EA65EE60051E01A;
135 | remoteInfo = "RNVectorIcons-tvOS";
136 | };
137 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
138 | isa = PBXContainerItemProxy;
139 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
140 | proxyType = 1;
141 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
142 | remoteInfo = "RNI-tvOS";
143 | };
144 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
145 | isa = PBXContainerItemProxy;
146 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
147 | proxyType = 2;
148 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
149 | remoteInfo = "RCTBlob-tvOS";
150 | };
151 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
152 | isa = PBXContainerItemProxy;
153 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
154 | proxyType = 2;
155 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
156 | remoteInfo = fishhook;
157 | };
158 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
159 | isa = PBXContainerItemProxy;
160 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
161 | proxyType = 2;
162 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
163 | remoteInfo = "fishhook-tvOS";
164 | };
165 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
166 | isa = PBXContainerItemProxy;
167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
168 | proxyType = 2;
169 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
170 | remoteInfo = jsinspector;
171 | };
172 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
173 | isa = PBXContainerItemProxy;
174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
175 | proxyType = 2;
176 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
177 | remoteInfo = "jsinspector-tvOS";
178 | };
179 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
180 | isa = PBXContainerItemProxy;
181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
182 | proxyType = 2;
183 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
184 | remoteInfo = "third-party";
185 | };
186 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
187 | isa = PBXContainerItemProxy;
188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
189 | proxyType = 2;
190 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
191 | remoteInfo = "third-party-tvOS";
192 | };
193 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
194 | isa = PBXContainerItemProxy;
195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
196 | proxyType = 2;
197 | remoteGlobalIDString = 139D7E881E25C6D100323FB7;
198 | remoteInfo = "double-conversion";
199 | };
200 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
201 | isa = PBXContainerItemProxy;
202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
203 | proxyType = 2;
204 | remoteGlobalIDString = 3D383D621EBD27B9005632C8;
205 | remoteInfo = "double-conversion-tvOS";
206 | };
207 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
208 | isa = PBXContainerItemProxy;
209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
210 | proxyType = 2;
211 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
212 | remoteInfo = privatedata;
213 | };
214 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
215 | isa = PBXContainerItemProxy;
216 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
217 | proxyType = 2;
218 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
219 | remoteInfo = "privatedata-tvOS";
220 | };
221 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
222 | isa = PBXContainerItemProxy;
223 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
224 | proxyType = 2;
225 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
226 | remoteInfo = "RCTImage-tvOS";
227 | };
228 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
229 | isa = PBXContainerItemProxy;
230 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
231 | proxyType = 2;
232 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
233 | remoteInfo = "RCTLinking-tvOS";
234 | };
235 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
236 | isa = PBXContainerItemProxy;
237 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
238 | proxyType = 2;
239 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
240 | remoteInfo = "RCTNetwork-tvOS";
241 | };
242 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
243 | isa = PBXContainerItemProxy;
244 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
245 | proxyType = 2;
246 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
247 | remoteInfo = "RCTSettings-tvOS";
248 | };
249 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
250 | isa = PBXContainerItemProxy;
251 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
252 | proxyType = 2;
253 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
254 | remoteInfo = "RCTText-tvOS";
255 | };
256 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
257 | isa = PBXContainerItemProxy;
258 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
259 | proxyType = 2;
260 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
261 | remoteInfo = "RCTWebSocket-tvOS";
262 | };
263 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
264 | isa = PBXContainerItemProxy;
265 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
266 | proxyType = 2;
267 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
268 | remoteInfo = "React-tvOS";
269 | };
270 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
271 | isa = PBXContainerItemProxy;
272 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
273 | proxyType = 2;
274 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
275 | remoteInfo = yoga;
276 | };
277 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
278 | isa = PBXContainerItemProxy;
279 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
280 | proxyType = 2;
281 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
282 | remoteInfo = "yoga-tvOS";
283 | };
284 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
285 | isa = PBXContainerItemProxy;
286 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
287 | proxyType = 2;
288 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
289 | remoteInfo = cxxreact;
290 | };
291 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
292 | isa = PBXContainerItemProxy;
293 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
294 | proxyType = 2;
295 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
296 | remoteInfo = "cxxreact-tvOS";
297 | };
298 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
299 | isa = PBXContainerItemProxy;
300 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
301 | proxyType = 2;
302 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
303 | remoteInfo = jschelpers;
304 | };
305 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
306 | isa = PBXContainerItemProxy;
307 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
308 | proxyType = 2;
309 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
310 | remoteInfo = "jschelpers-tvOS";
311 | };
312 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
313 | isa = PBXContainerItemProxy;
314 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
315 | proxyType = 2;
316 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
317 | remoteInfo = RCTAnimation;
318 | };
319 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
320 | isa = PBXContainerItemProxy;
321 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
322 | proxyType = 2;
323 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
324 | remoteInfo = "RCTAnimation-tvOS";
325 | };
326 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
327 | isa = PBXContainerItemProxy;
328 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
329 | proxyType = 2;
330 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
331 | remoteInfo = RCTLinking;
332 | };
333 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
334 | isa = PBXContainerItemProxy;
335 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
336 | proxyType = 2;
337 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
338 | remoteInfo = RCTText;
339 | };
340 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
341 | isa = PBXContainerItemProxy;
342 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
343 | proxyType = 2;
344 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
345 | remoteInfo = RCTBlob;
346 | };
347 | /* End PBXContainerItemProxy section */
348 |
349 | /* Begin PBXFileReference section */
350 | 001AAF725B2044649352B49A /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Regular.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; };
351 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
352 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
353 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
354 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
355 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
356 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
357 | 00E356EE1AD99517003FC87E /* RNITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
358 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
359 | 00E356F21AD99517003FC87E /* RNITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNITests.m; sourceTree = ""; };
360 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
361 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
362 | 13B07F961A680F5B00A75B9A /* RNI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNI.app; sourceTree = BUILT_PRODUCTS_DIR; };
363 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNI/AppDelegate.h; sourceTree = ""; };
364 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RNI/AppDelegate.m; sourceTree = ""; };
365 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
366 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNI/Images.xcassets; sourceTree = ""; };
367 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNI/Info.plist; sourceTree = ""; };
368 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNI/main.m; sourceTree = ""; };
369 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
370 | 2D02E47B1E0B4A5D006451C7 /* RNI-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RNI-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
371 | 2D02E4901E0B4A5D006451C7 /* RNI-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RNI-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
372 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
373 | 3FB705C55FD14D7EB9A29C7A /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; };
374 | 4E31A83737C64F5CBA06AF18 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; };
375 | 526B80EC2F4B42FA9E4B8510 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; };
376 | 57A55A840C064F7A8892BDFC /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; };
377 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
378 | 6A5EC248E75240B2A0ABC223 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; };
379 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
380 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
381 | 8CA3FC04B5ED43178D89BA20 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; };
382 | 9CAB44D2BAC042F89AAC068F /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; };
383 | 9F5D4D16344842E98D441E2C /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Solid.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; };
384 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
385 | B70C34755048499B93FA9A7C /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; };
386 | C111B5597EE3424A9B14BA8A /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; };
387 | C34BCA784189417C9C96D1E3 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; };
388 | D0FC951D37CB4070A1987472 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; };
389 | D32252A2299F4B6CAE608FF7 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; };
390 | DAF31CA8F8244A7AA92237BA /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; };
391 | E751BFB064814A87ACA00F6C /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; };
392 | E79478EAB30B4506BD1E1ACE /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; };
393 | /* End PBXFileReference section */
394 |
395 | /* Begin PBXFrameworksBuildPhase section */
396 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
397 | isa = PBXFrameworksBuildPhase;
398 | buildActionMask = 2147483647;
399 | files = (
400 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
401 | );
402 | runOnlyForDeploymentPostprocessing = 0;
403 | };
404 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
405 | isa = PBXFrameworksBuildPhase;
406 | buildActionMask = 2147483647;
407 | files = (
408 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
409 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
410 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
411 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
412 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
413 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
414 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
415 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
416 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
417 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
418 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
419 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
420 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
421 | 887D80591DCA4C3CBE7156E6 /* libRNVectorIcons.a in Frameworks */,
422 | );
423 | runOnlyForDeploymentPostprocessing = 0;
424 | };
425 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
426 | isa = PBXFrameworksBuildPhase;
427 | buildActionMask = 2147483647;
428 | files = (
429 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
430 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
431 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
432 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
433 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
434 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
435 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
436 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
437 | );
438 | runOnlyForDeploymentPostprocessing = 0;
439 | };
440 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
441 | isa = PBXFrameworksBuildPhase;
442 | buildActionMask = 2147483647;
443 | files = (
444 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
445 | );
446 | runOnlyForDeploymentPostprocessing = 0;
447 | };
448 | /* End PBXFrameworksBuildPhase section */
449 |
450 | /* Begin PBXGroup section */
451 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
452 | isa = PBXGroup;
453 | children = (
454 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
455 | );
456 | name = Products;
457 | sourceTree = "";
458 | };
459 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
460 | isa = PBXGroup;
461 | children = (
462 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
463 | );
464 | name = Products;
465 | sourceTree = "";
466 | };
467 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
468 | isa = PBXGroup;
469 | children = (
470 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
471 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
472 | );
473 | name = Products;
474 | sourceTree = "";
475 | };
476 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
477 | isa = PBXGroup;
478 | children = (
479 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
480 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
481 | );
482 | name = Products;
483 | sourceTree = "";
484 | };
485 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
486 | isa = PBXGroup;
487 | children = (
488 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
489 | );
490 | name = Products;
491 | sourceTree = "";
492 | };
493 | 00E356EF1AD99517003FC87E /* RNITests */ = {
494 | isa = PBXGroup;
495 | children = (
496 | 00E356F21AD99517003FC87E /* RNITests.m */,
497 | 00E356F01AD99517003FC87E /* Supporting Files */,
498 | );
499 | path = RNITests;
500 | sourceTree = "";
501 | };
502 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
503 | isa = PBXGroup;
504 | children = (
505 | 00E356F11AD99517003FC87E /* Info.plist */,
506 | );
507 | name = "Supporting Files";
508 | sourceTree = "";
509 | };
510 | 139105B71AF99BAD00B5F7CC /* Products */ = {
511 | isa = PBXGroup;
512 | children = (
513 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
514 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
515 | );
516 | name = Products;
517 | sourceTree = "";
518 | };
519 | 139FDEE71B06529A00C62182 /* Products */ = {
520 | isa = PBXGroup;
521 | children = (
522 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
523 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
524 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
525 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
526 | );
527 | name = Products;
528 | sourceTree = "";
529 | };
530 | 13B07FAE1A68108700A75B9A /* RNI */ = {
531 | isa = PBXGroup;
532 | children = (
533 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
534 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
535 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
536 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
537 | 13B07FB61A68108700A75B9A /* Info.plist */,
538 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
539 | 13B07FB71A68108700A75B9A /* main.m */,
540 | );
541 | name = RNI;
542 | sourceTree = "";
543 | };
544 | 146834001AC3E56700842450 /* Products */ = {
545 | isa = PBXGroup;
546 | children = (
547 | 146834041AC3E56700842450 /* libReact.a */,
548 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
549 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
550 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
551 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
552 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
553 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
554 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
555 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
556 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
557 | 2DF0FFE32056DD460020B375 /* libthird-party.a */,
558 | 2DF0FFE52056DD460020B375 /* libthird-party.a */,
559 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
560 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
561 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
562 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
563 | );
564 | name = Products;
565 | sourceTree = "";
566 | };
567 | 158B1B5B21A74DD400CC8A06 /* Recovered References */ = {
568 | isa = PBXGroup;
569 | children = (
570 | DAF31CA8F8244A7AA92237BA /* libRNVectorIcons.a */,
571 | );
572 | name = "Recovered References";
573 | sourceTree = "";
574 | };
575 | 158B1B8121A74DD500CC8A06 /* Products */ = {
576 | isa = PBXGroup;
577 | children = (
578 | 158B1B8621A74DD500CC8A06 /* libRNVectorIcons.a */,
579 | 158B1B8821A74DD500CC8A06 /* libRNVectorIcons-tvOS.a */,
580 | );
581 | name = Products;
582 | sourceTree = "";
583 | };
584 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
585 | isa = PBXGroup;
586 | children = (
587 | 2D16E6891FA4F8E400B85C8A /* libReact.a */,
588 | );
589 | name = Frameworks;
590 | sourceTree = "";
591 | };
592 | 364191C98459436C8EF99876 /* Resources */ = {
593 | isa = PBXGroup;
594 | children = (
595 | B70C34755048499B93FA9A7C /* Entypo.ttf */,
596 | 6A5EC248E75240B2A0ABC223 /* EvilIcons.ttf */,
597 | D0FC951D37CB4070A1987472 /* Feather.ttf */,
598 | 9CAB44D2BAC042F89AAC068F /* FontAwesome.ttf */,
599 | C34BCA784189417C9C96D1E3 /* FontAwesome5_Brands.ttf */,
600 | 001AAF725B2044649352B49A /* FontAwesome5_Regular.ttf */,
601 | 9F5D4D16344842E98D441E2C /* FontAwesome5_Solid.ttf */,
602 | C111B5597EE3424A9B14BA8A /* Foundation.ttf */,
603 | E751BFB064814A87ACA00F6C /* Ionicons.ttf */,
604 | 526B80EC2F4B42FA9E4B8510 /* MaterialCommunityIcons.ttf */,
605 | 57A55A840C064F7A8892BDFC /* MaterialIcons.ttf */,
606 | 4E31A83737C64F5CBA06AF18 /* Octicons.ttf */,
607 | E79478EAB30B4506BD1E1ACE /* SimpleLineIcons.ttf */,
608 | 8CA3FC04B5ED43178D89BA20 /* Zocial.ttf */,
609 | 3FB705C55FD14D7EB9A29C7A /* AntDesign.ttf */,
610 | );
611 | name = Resources;
612 | sourceTree = "";
613 | };
614 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
615 | isa = PBXGroup;
616 | children = (
617 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
618 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
619 | );
620 | name = Products;
621 | sourceTree = "";
622 | };
623 | 78C398B11ACF4ADC00677621 /* Products */ = {
624 | isa = PBXGroup;
625 | children = (
626 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
627 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
628 | );
629 | name = Products;
630 | sourceTree = "";
631 | };
632 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
633 | isa = PBXGroup;
634 | children = (
635 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
636 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
637 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
638 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
639 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
640 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
641 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
642 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
643 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
644 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
645 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
646 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
647 | D32252A2299F4B6CAE608FF7 /* RNVectorIcons.xcodeproj */,
648 | );
649 | name = Libraries;
650 | sourceTree = "";
651 | };
652 | 832341B11AAA6A8300B99B32 /* Products */ = {
653 | isa = PBXGroup;
654 | children = (
655 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
656 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
657 | );
658 | name = Products;
659 | sourceTree = "";
660 | };
661 | 83CBB9F61A601CBA00E9B192 = {
662 | isa = PBXGroup;
663 | children = (
664 | 13B07FAE1A68108700A75B9A /* RNI */,
665 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
666 | 00E356EF1AD99517003FC87E /* RNITests */,
667 | 83CBBA001A601CBA00E9B192 /* Products */,
668 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
669 | 364191C98459436C8EF99876 /* Resources */,
670 | 158B1B5B21A74DD400CC8A06 /* Recovered References */,
671 | );
672 | indentWidth = 2;
673 | sourceTree = "";
674 | tabWidth = 2;
675 | usesTabs = 0;
676 | };
677 | 83CBBA001A601CBA00E9B192 /* Products */ = {
678 | isa = PBXGroup;
679 | children = (
680 | 13B07F961A680F5B00A75B9A /* RNI.app */,
681 | 00E356EE1AD99517003FC87E /* RNITests.xctest */,
682 | 2D02E47B1E0B4A5D006451C7 /* RNI-tvOS.app */,
683 | 2D02E4901E0B4A5D006451C7 /* RNI-tvOSTests.xctest */,
684 | );
685 | name = Products;
686 | sourceTree = "";
687 | };
688 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
689 | isa = PBXGroup;
690 | children = (
691 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
692 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
693 | );
694 | name = Products;
695 | sourceTree = "";
696 | };
697 | /* End PBXGroup section */
698 |
699 | /* Begin PBXNativeTarget section */
700 | 00E356ED1AD99517003FC87E /* RNITests */ = {
701 | isa = PBXNativeTarget;
702 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNITests" */;
703 | buildPhases = (
704 | 00E356EA1AD99517003FC87E /* Sources */,
705 | 00E356EB1AD99517003FC87E /* Frameworks */,
706 | 00E356EC1AD99517003FC87E /* Resources */,
707 | );
708 | buildRules = (
709 | );
710 | dependencies = (
711 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
712 | );
713 | name = RNITests;
714 | productName = RNITests;
715 | productReference = 00E356EE1AD99517003FC87E /* RNITests.xctest */;
716 | productType = "com.apple.product-type.bundle.unit-test";
717 | };
718 | 13B07F861A680F5B00A75B9A /* RNI */ = {
719 | isa = PBXNativeTarget;
720 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNI" */;
721 | buildPhases = (
722 | 13B07F871A680F5B00A75B9A /* Sources */,
723 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
724 | 13B07F8E1A680F5B00A75B9A /* Resources */,
725 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
726 | );
727 | buildRules = (
728 | );
729 | dependencies = (
730 | );
731 | name = RNI;
732 | productName = "Hello World";
733 | productReference = 13B07F961A680F5B00A75B9A /* RNI.app */;
734 | productType = "com.apple.product-type.application";
735 | };
736 | 2D02E47A1E0B4A5D006451C7 /* RNI-tvOS */ = {
737 | isa = PBXNativeTarget;
738 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNI-tvOS" */;
739 | buildPhases = (
740 | 2D02E4771E0B4A5D006451C7 /* Sources */,
741 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
742 | 2D02E4791E0B4A5D006451C7 /* Resources */,
743 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
744 | );
745 | buildRules = (
746 | );
747 | dependencies = (
748 | );
749 | name = "RNI-tvOS";
750 | productName = "RNI-tvOS";
751 | productReference = 2D02E47B1E0B4A5D006451C7 /* RNI-tvOS.app */;
752 | productType = "com.apple.product-type.application";
753 | };
754 | 2D02E48F1E0B4A5D006451C7 /* RNI-tvOSTests */ = {
755 | isa = PBXNativeTarget;
756 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNI-tvOSTests" */;
757 | buildPhases = (
758 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
759 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
760 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
761 | );
762 | buildRules = (
763 | );
764 | dependencies = (
765 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
766 | );
767 | name = "RNI-tvOSTests";
768 | productName = "RNI-tvOSTests";
769 | productReference = 2D02E4901E0B4A5D006451C7 /* RNI-tvOSTests.xctest */;
770 | productType = "com.apple.product-type.bundle.unit-test";
771 | };
772 | /* End PBXNativeTarget section */
773 |
774 | /* Begin PBXProject section */
775 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
776 | isa = PBXProject;
777 | attributes = {
778 | LastUpgradeCheck = 610;
779 | ORGANIZATIONNAME = Facebook;
780 | TargetAttributes = {
781 | 00E356ED1AD99517003FC87E = {
782 | CreatedOnToolsVersion = 6.2;
783 | TestTargetID = 13B07F861A680F5B00A75B9A;
784 | };
785 | 2D02E47A1E0B4A5D006451C7 = {
786 | CreatedOnToolsVersion = 8.2.1;
787 | ProvisioningStyle = Automatic;
788 | };
789 | 2D02E48F1E0B4A5D006451C7 = {
790 | CreatedOnToolsVersion = 8.2.1;
791 | ProvisioningStyle = Automatic;
792 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
793 | };
794 | };
795 | };
796 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNI" */;
797 | compatibilityVersion = "Xcode 3.2";
798 | developmentRegion = English;
799 | hasScannedForEncodings = 0;
800 | knownRegions = (
801 | en,
802 | Base,
803 | );
804 | mainGroup = 83CBB9F61A601CBA00E9B192;
805 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
806 | projectDirPath = "";
807 | projectReferences = (
808 | {
809 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
810 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
811 | },
812 | {
813 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
814 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
815 | },
816 | {
817 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
818 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
819 | },
820 | {
821 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
822 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
823 | },
824 | {
825 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
826 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
827 | },
828 | {
829 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
830 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
831 | },
832 | {
833 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
834 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
835 | },
836 | {
837 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
838 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
839 | },
840 | {
841 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
842 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
843 | },
844 | {
845 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
846 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
847 | },
848 | {
849 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
850 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
851 | },
852 | {
853 | ProductGroup = 146834001AC3E56700842450 /* Products */;
854 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
855 | },
856 | {
857 | ProductGroup = 158B1B8121A74DD500CC8A06 /* Products */;
858 | ProjectRef = D32252A2299F4B6CAE608FF7 /* RNVectorIcons.xcodeproj */;
859 | },
860 | );
861 | projectRoot = "";
862 | targets = (
863 | 13B07F861A680F5B00A75B9A /* RNI */,
864 | 00E356ED1AD99517003FC87E /* RNITests */,
865 | 2D02E47A1E0B4A5D006451C7 /* RNI-tvOS */,
866 | 2D02E48F1E0B4A5D006451C7 /* RNI-tvOSTests */,
867 | );
868 | };
869 | /* End PBXProject section */
870 |
871 | /* Begin PBXReferenceProxy section */
872 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
873 | isa = PBXReferenceProxy;
874 | fileType = archive.ar;
875 | path = libRCTActionSheet.a;
876 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
877 | sourceTree = BUILT_PRODUCTS_DIR;
878 | };
879 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
880 | isa = PBXReferenceProxy;
881 | fileType = archive.ar;
882 | path = libRCTGeolocation.a;
883 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
884 | sourceTree = BUILT_PRODUCTS_DIR;
885 | };
886 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
887 | isa = PBXReferenceProxy;
888 | fileType = archive.ar;
889 | path = libRCTImage.a;
890 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
891 | sourceTree = BUILT_PRODUCTS_DIR;
892 | };
893 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
894 | isa = PBXReferenceProxy;
895 | fileType = archive.ar;
896 | path = libRCTNetwork.a;
897 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
898 | sourceTree = BUILT_PRODUCTS_DIR;
899 | };
900 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
901 | isa = PBXReferenceProxy;
902 | fileType = archive.ar;
903 | path = libRCTVibration.a;
904 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
905 | sourceTree = BUILT_PRODUCTS_DIR;
906 | };
907 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
908 | isa = PBXReferenceProxy;
909 | fileType = archive.ar;
910 | path = libRCTSettings.a;
911 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
912 | sourceTree = BUILT_PRODUCTS_DIR;
913 | };
914 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
915 | isa = PBXReferenceProxy;
916 | fileType = archive.ar;
917 | path = libRCTWebSocket.a;
918 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
919 | sourceTree = BUILT_PRODUCTS_DIR;
920 | };
921 | 146834041AC3E56700842450 /* libReact.a */ = {
922 | isa = PBXReferenceProxy;
923 | fileType = archive.ar;
924 | path = libReact.a;
925 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
926 | sourceTree = BUILT_PRODUCTS_DIR;
927 | };
928 | 158B1B8621A74DD500CC8A06 /* libRNVectorIcons.a */ = {
929 | isa = PBXReferenceProxy;
930 | fileType = archive.ar;
931 | path = libRNVectorIcons.a;
932 | remoteRef = 158B1B8521A74DD500CC8A06 /* PBXContainerItemProxy */;
933 | sourceTree = BUILT_PRODUCTS_DIR;
934 | };
935 | 158B1B8821A74DD500CC8A06 /* libRNVectorIcons-tvOS.a */ = {
936 | isa = PBXReferenceProxy;
937 | fileType = archive.ar;
938 | path = "libRNVectorIcons-tvOS.a";
939 | remoteRef = 158B1B8721A74DD500CC8A06 /* PBXContainerItemProxy */;
940 | sourceTree = BUILT_PRODUCTS_DIR;
941 | };
942 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
943 | isa = PBXReferenceProxy;
944 | fileType = archive.ar;
945 | path = "libRCTBlob-tvOS.a";
946 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
947 | sourceTree = BUILT_PRODUCTS_DIR;
948 | };
949 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
950 | isa = PBXReferenceProxy;
951 | fileType = archive.ar;
952 | path = libfishhook.a;
953 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
954 | sourceTree = BUILT_PRODUCTS_DIR;
955 | };
956 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
957 | isa = PBXReferenceProxy;
958 | fileType = archive.ar;
959 | path = "libfishhook-tvOS.a";
960 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
961 | sourceTree = BUILT_PRODUCTS_DIR;
962 | };
963 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
964 | isa = PBXReferenceProxy;
965 | fileType = archive.ar;
966 | path = libjsinspector.a;
967 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
968 | sourceTree = BUILT_PRODUCTS_DIR;
969 | };
970 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
971 | isa = PBXReferenceProxy;
972 | fileType = archive.ar;
973 | path = "libjsinspector-tvOS.a";
974 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
975 | sourceTree = BUILT_PRODUCTS_DIR;
976 | };
977 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
978 | isa = PBXReferenceProxy;
979 | fileType = archive.ar;
980 | path = "libthird-party.a";
981 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
982 | sourceTree = BUILT_PRODUCTS_DIR;
983 | };
984 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
985 | isa = PBXReferenceProxy;
986 | fileType = archive.ar;
987 | path = "libthird-party.a";
988 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
989 | sourceTree = BUILT_PRODUCTS_DIR;
990 | };
991 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
992 | isa = PBXReferenceProxy;
993 | fileType = archive.ar;
994 | path = "libdouble-conversion.a";
995 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
996 | sourceTree = BUILT_PRODUCTS_DIR;
997 | };
998 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
999 | isa = PBXReferenceProxy;
1000 | fileType = archive.ar;
1001 | path = "libdouble-conversion.a";
1002 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
1003 | sourceTree = BUILT_PRODUCTS_DIR;
1004 | };
1005 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
1006 | isa = PBXReferenceProxy;
1007 | fileType = archive.ar;
1008 | path = libprivatedata.a;
1009 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
1010 | sourceTree = BUILT_PRODUCTS_DIR;
1011 | };
1012 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
1013 | isa = PBXReferenceProxy;
1014 | fileType = archive.ar;
1015 | path = "libprivatedata-tvOS.a";
1016 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
1017 | sourceTree = BUILT_PRODUCTS_DIR;
1018 | };
1019 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
1020 | isa = PBXReferenceProxy;
1021 | fileType = archive.ar;
1022 | path = "libRCTImage-tvOS.a";
1023 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
1024 | sourceTree = BUILT_PRODUCTS_DIR;
1025 | };
1026 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
1027 | isa = PBXReferenceProxy;
1028 | fileType = archive.ar;
1029 | path = "libRCTLinking-tvOS.a";
1030 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
1031 | sourceTree = BUILT_PRODUCTS_DIR;
1032 | };
1033 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
1034 | isa = PBXReferenceProxy;
1035 | fileType = archive.ar;
1036 | path = "libRCTNetwork-tvOS.a";
1037 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
1038 | sourceTree = BUILT_PRODUCTS_DIR;
1039 | };
1040 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
1041 | isa = PBXReferenceProxy;
1042 | fileType = archive.ar;
1043 | path = "libRCTSettings-tvOS.a";
1044 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
1045 | sourceTree = BUILT_PRODUCTS_DIR;
1046 | };
1047 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
1048 | isa = PBXReferenceProxy;
1049 | fileType = archive.ar;
1050 | path = "libRCTText-tvOS.a";
1051 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
1052 | sourceTree = BUILT_PRODUCTS_DIR;
1053 | };
1054 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
1055 | isa = PBXReferenceProxy;
1056 | fileType = archive.ar;
1057 | path = "libRCTWebSocket-tvOS.a";
1058 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
1059 | sourceTree = BUILT_PRODUCTS_DIR;
1060 | };
1061 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
1062 | isa = PBXReferenceProxy;
1063 | fileType = archive.ar;
1064 | path = libReact.a;
1065 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
1066 | sourceTree = BUILT_PRODUCTS_DIR;
1067 | };
1068 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
1069 | isa = PBXReferenceProxy;
1070 | fileType = archive.ar;
1071 | path = libyoga.a;
1072 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
1073 | sourceTree = BUILT_PRODUCTS_DIR;
1074 | };
1075 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
1076 | isa = PBXReferenceProxy;
1077 | fileType = archive.ar;
1078 | path = libyoga.a;
1079 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
1080 | sourceTree = BUILT_PRODUCTS_DIR;
1081 | };
1082 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
1083 | isa = PBXReferenceProxy;
1084 | fileType = archive.ar;
1085 | path = libcxxreact.a;
1086 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
1087 | sourceTree = BUILT_PRODUCTS_DIR;
1088 | };
1089 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
1090 | isa = PBXReferenceProxy;
1091 | fileType = archive.ar;
1092 | path = libcxxreact.a;
1093 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
1094 | sourceTree = BUILT_PRODUCTS_DIR;
1095 | };
1096 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
1097 | isa = PBXReferenceProxy;
1098 | fileType = archive.ar;
1099 | path = libjschelpers.a;
1100 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
1101 | sourceTree = BUILT_PRODUCTS_DIR;
1102 | };
1103 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
1104 | isa = PBXReferenceProxy;
1105 | fileType = archive.ar;
1106 | path = libjschelpers.a;
1107 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
1108 | sourceTree = BUILT_PRODUCTS_DIR;
1109 | };
1110 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1111 | isa = PBXReferenceProxy;
1112 | fileType = archive.ar;
1113 | path = libRCTAnimation.a;
1114 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1115 | sourceTree = BUILT_PRODUCTS_DIR;
1116 | };
1117 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1118 | isa = PBXReferenceProxy;
1119 | fileType = archive.ar;
1120 | path = libRCTAnimation.a;
1121 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1122 | sourceTree = BUILT_PRODUCTS_DIR;
1123 | };
1124 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1125 | isa = PBXReferenceProxy;
1126 | fileType = archive.ar;
1127 | path = libRCTLinking.a;
1128 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1129 | sourceTree = BUILT_PRODUCTS_DIR;
1130 | };
1131 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1132 | isa = PBXReferenceProxy;
1133 | fileType = archive.ar;
1134 | path = libRCTText.a;
1135 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1136 | sourceTree = BUILT_PRODUCTS_DIR;
1137 | };
1138 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1139 | isa = PBXReferenceProxy;
1140 | fileType = archive.ar;
1141 | path = libRCTBlob.a;
1142 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1143 | sourceTree = BUILT_PRODUCTS_DIR;
1144 | };
1145 | /* End PBXReferenceProxy section */
1146 |
1147 | /* Begin PBXResourcesBuildPhase section */
1148 | 00E356EC1AD99517003FC87E /* Resources */ = {
1149 | isa = PBXResourcesBuildPhase;
1150 | buildActionMask = 2147483647;
1151 | files = (
1152 | );
1153 | runOnlyForDeploymentPostprocessing = 0;
1154 | };
1155 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1156 | isa = PBXResourcesBuildPhase;
1157 | buildActionMask = 2147483647;
1158 | files = (
1159 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1160 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1161 | AA6E7EA0B473479FA92E38FE /* Entypo.ttf in Resources */,
1162 | DFB1B6A5C4C34E2399A250CB /* EvilIcons.ttf in Resources */,
1163 | 64062581A81A4E5FB98944C4 /* Feather.ttf in Resources */,
1164 | 552194E379AB42178D944487 /* FontAwesome.ttf in Resources */,
1165 | F1A3D4DE8AC24B92B4A86DAF /* FontAwesome5_Brands.ttf in Resources */,
1166 | 07273CB53BF247A99B575AE5 /* FontAwesome5_Regular.ttf in Resources */,
1167 | 8FC8456E157046CB9DA2BD08 /* FontAwesome5_Solid.ttf in Resources */,
1168 | 6284A2A6FC3646ED9EB0B1BF /* Foundation.ttf in Resources */,
1169 | A0D2C9F84BC244449293E28E /* Ionicons.ttf in Resources */,
1170 | 3A73A6EA520D4B74A0BFF311 /* MaterialCommunityIcons.ttf in Resources */,
1171 | 28906F00E8014186AADFD3D2 /* MaterialIcons.ttf in Resources */,
1172 | 5332DD4605D5426EAD1425BF /* Octicons.ttf in Resources */,
1173 | 91CF97E69A87481D865B8317 /* SimpleLineIcons.ttf in Resources */,
1174 | 3015A7E6101443958F4EB466 /* Zocial.ttf in Resources */,
1175 | C2B2720A78E44BE581B874A6 /* AntDesign.ttf in Resources */,
1176 | );
1177 | runOnlyForDeploymentPostprocessing = 0;
1178 | };
1179 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1180 | isa = PBXResourcesBuildPhase;
1181 | buildActionMask = 2147483647;
1182 | files = (
1183 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1184 | );
1185 | runOnlyForDeploymentPostprocessing = 0;
1186 | };
1187 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1188 | isa = PBXResourcesBuildPhase;
1189 | buildActionMask = 2147483647;
1190 | files = (
1191 | );
1192 | runOnlyForDeploymentPostprocessing = 0;
1193 | };
1194 | /* End PBXResourcesBuildPhase section */
1195 |
1196 | /* Begin PBXShellScriptBuildPhase section */
1197 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1198 | isa = PBXShellScriptBuildPhase;
1199 | buildActionMask = 2147483647;
1200 | files = (
1201 | );
1202 | inputPaths = (
1203 | );
1204 | name = "Bundle React Native code and images";
1205 | outputPaths = (
1206 | );
1207 | runOnlyForDeploymentPostprocessing = 0;
1208 | shellPath = /bin/sh;
1209 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1210 | };
1211 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1212 | isa = PBXShellScriptBuildPhase;
1213 | buildActionMask = 2147483647;
1214 | files = (
1215 | );
1216 | inputPaths = (
1217 | );
1218 | name = "Bundle React Native Code And Images";
1219 | outputPaths = (
1220 | );
1221 | runOnlyForDeploymentPostprocessing = 0;
1222 | shellPath = /bin/sh;
1223 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1224 | };
1225 | /* End PBXShellScriptBuildPhase section */
1226 |
1227 | /* Begin PBXSourcesBuildPhase section */
1228 | 00E356EA1AD99517003FC87E /* Sources */ = {
1229 | isa = PBXSourcesBuildPhase;
1230 | buildActionMask = 2147483647;
1231 | files = (
1232 | 00E356F31AD99517003FC87E /* RNITests.m in Sources */,
1233 | );
1234 | runOnlyForDeploymentPostprocessing = 0;
1235 | };
1236 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1237 | isa = PBXSourcesBuildPhase;
1238 | buildActionMask = 2147483647;
1239 | files = (
1240 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1241 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1242 | );
1243 | runOnlyForDeploymentPostprocessing = 0;
1244 | };
1245 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1246 | isa = PBXSourcesBuildPhase;
1247 | buildActionMask = 2147483647;
1248 | files = (
1249 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1250 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1251 | );
1252 | runOnlyForDeploymentPostprocessing = 0;
1253 | };
1254 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1255 | isa = PBXSourcesBuildPhase;
1256 | buildActionMask = 2147483647;
1257 | files = (
1258 | 2DCD954D1E0B4F2C00145EB5 /* RNITests.m in Sources */,
1259 | );
1260 | runOnlyForDeploymentPostprocessing = 0;
1261 | };
1262 | /* End PBXSourcesBuildPhase section */
1263 |
1264 | /* Begin PBXTargetDependency section */
1265 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1266 | isa = PBXTargetDependency;
1267 | target = 13B07F861A680F5B00A75B9A /* RNI */;
1268 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1269 | };
1270 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1271 | isa = PBXTargetDependency;
1272 | target = 2D02E47A1E0B4A5D006451C7 /* RNI-tvOS */;
1273 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1274 | };
1275 | /* End PBXTargetDependency section */
1276 |
1277 | /* Begin PBXVariantGroup section */
1278 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1279 | isa = PBXVariantGroup;
1280 | children = (
1281 | 13B07FB21A68108700A75B9A /* Base */,
1282 | );
1283 | name = LaunchScreen.xib;
1284 | path = RNI;
1285 | sourceTree = "";
1286 | };
1287 | /* End PBXVariantGroup section */
1288 |
1289 | /* Begin XCBuildConfiguration section */
1290 | 00E356F61AD99517003FC87E /* Debug */ = {
1291 | isa = XCBuildConfiguration;
1292 | buildSettings = {
1293 | BUNDLE_LOADER = "$(TEST_HOST)";
1294 | GCC_PREPROCESSOR_DEFINITIONS = (
1295 | "DEBUG=1",
1296 | "$(inherited)",
1297 | );
1298 | HEADER_SEARCH_PATHS = (
1299 | "$(inherited)",
1300 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1301 | );
1302 | INFOPLIST_FILE = RNITests/Info.plist;
1303 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1304 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1305 | LIBRARY_SEARCH_PATHS = (
1306 | "$(inherited)",
1307 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1308 | );
1309 | OTHER_LDFLAGS = (
1310 | "-ObjC",
1311 | "-lc++",
1312 | );
1313 | PRODUCT_NAME = "$(TARGET_NAME)";
1314 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNI.app/RNI";
1315 | };
1316 | name = Debug;
1317 | };
1318 | 00E356F71AD99517003FC87E /* Release */ = {
1319 | isa = XCBuildConfiguration;
1320 | buildSettings = {
1321 | BUNDLE_LOADER = "$(TEST_HOST)";
1322 | COPY_PHASE_STRIP = NO;
1323 | HEADER_SEARCH_PATHS = (
1324 | "$(inherited)",
1325 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1326 | );
1327 | INFOPLIST_FILE = RNITests/Info.plist;
1328 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1329 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1330 | LIBRARY_SEARCH_PATHS = (
1331 | "$(inherited)",
1332 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1333 | );
1334 | OTHER_LDFLAGS = (
1335 | "-ObjC",
1336 | "-lc++",
1337 | );
1338 | PRODUCT_NAME = "$(TARGET_NAME)";
1339 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNI.app/RNI";
1340 | };
1341 | name = Release;
1342 | };
1343 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1344 | isa = XCBuildConfiguration;
1345 | buildSettings = {
1346 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1347 | CURRENT_PROJECT_VERSION = 1;
1348 | DEAD_CODE_STRIPPING = NO;
1349 | HEADER_SEARCH_PATHS = (
1350 | "$(inherited)",
1351 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1352 | );
1353 | INFOPLIST_FILE = RNI/Info.plist;
1354 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1355 | OTHER_LDFLAGS = (
1356 | "$(inherited)",
1357 | "-ObjC",
1358 | "-lc++",
1359 | );
1360 | PRODUCT_NAME = RNI;
1361 | VERSIONING_SYSTEM = "apple-generic";
1362 | };
1363 | name = Debug;
1364 | };
1365 | 13B07F951A680F5B00A75B9A /* Release */ = {
1366 | isa = XCBuildConfiguration;
1367 | buildSettings = {
1368 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1369 | CURRENT_PROJECT_VERSION = 1;
1370 | HEADER_SEARCH_PATHS = (
1371 | "$(inherited)",
1372 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1373 | );
1374 | INFOPLIST_FILE = RNI/Info.plist;
1375 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1376 | OTHER_LDFLAGS = (
1377 | "$(inherited)",
1378 | "-ObjC",
1379 | "-lc++",
1380 | );
1381 | PRODUCT_NAME = RNI;
1382 | VERSIONING_SYSTEM = "apple-generic";
1383 | };
1384 | name = Release;
1385 | };
1386 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1387 | isa = XCBuildConfiguration;
1388 | buildSettings = {
1389 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1390 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1391 | CLANG_ANALYZER_NONNULL = YES;
1392 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1393 | CLANG_WARN_INFINITE_RECURSION = YES;
1394 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1395 | DEBUG_INFORMATION_FORMAT = dwarf;
1396 | ENABLE_TESTABILITY = YES;
1397 | GCC_NO_COMMON_BLOCKS = YES;
1398 | HEADER_SEARCH_PATHS = (
1399 | "$(inherited)",
1400 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1401 | );
1402 | INFOPLIST_FILE = "RNI-tvOS/Info.plist";
1403 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1404 | LIBRARY_SEARCH_PATHS = (
1405 | "$(inherited)",
1406 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1407 | );
1408 | OTHER_LDFLAGS = (
1409 | "-ObjC",
1410 | "-lc++",
1411 | );
1412 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNI-tvOS";
1413 | PRODUCT_NAME = "$(TARGET_NAME)";
1414 | SDKROOT = appletvos;
1415 | TARGETED_DEVICE_FAMILY = 3;
1416 | TVOS_DEPLOYMENT_TARGET = 9.2;
1417 | };
1418 | name = Debug;
1419 | };
1420 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1421 | isa = XCBuildConfiguration;
1422 | buildSettings = {
1423 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1424 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1425 | CLANG_ANALYZER_NONNULL = YES;
1426 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1427 | CLANG_WARN_INFINITE_RECURSION = YES;
1428 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1429 | COPY_PHASE_STRIP = NO;
1430 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1431 | GCC_NO_COMMON_BLOCKS = YES;
1432 | HEADER_SEARCH_PATHS = (
1433 | "$(inherited)",
1434 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1435 | );
1436 | INFOPLIST_FILE = "RNI-tvOS/Info.plist";
1437 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1438 | LIBRARY_SEARCH_PATHS = (
1439 | "$(inherited)",
1440 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1441 | );
1442 | OTHER_LDFLAGS = (
1443 | "-ObjC",
1444 | "-lc++",
1445 | );
1446 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNI-tvOS";
1447 | PRODUCT_NAME = "$(TARGET_NAME)";
1448 | SDKROOT = appletvos;
1449 | TARGETED_DEVICE_FAMILY = 3;
1450 | TVOS_DEPLOYMENT_TARGET = 9.2;
1451 | };
1452 | name = Release;
1453 | };
1454 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1455 | isa = XCBuildConfiguration;
1456 | buildSettings = {
1457 | BUNDLE_LOADER = "$(TEST_HOST)";
1458 | CLANG_ANALYZER_NONNULL = YES;
1459 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1460 | CLANG_WARN_INFINITE_RECURSION = YES;
1461 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1462 | DEBUG_INFORMATION_FORMAT = dwarf;
1463 | ENABLE_TESTABILITY = YES;
1464 | GCC_NO_COMMON_BLOCKS = YES;
1465 | HEADER_SEARCH_PATHS = (
1466 | "$(inherited)",
1467 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1468 | );
1469 | INFOPLIST_FILE = "RNI-tvOSTests/Info.plist";
1470 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1471 | LIBRARY_SEARCH_PATHS = (
1472 | "$(inherited)",
1473 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1474 | );
1475 | OTHER_LDFLAGS = (
1476 | "-ObjC",
1477 | "-lc++",
1478 | );
1479 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNI-tvOSTests";
1480 | PRODUCT_NAME = "$(TARGET_NAME)";
1481 | SDKROOT = appletvos;
1482 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNI-tvOS.app/RNI-tvOS";
1483 | TVOS_DEPLOYMENT_TARGET = 10.1;
1484 | };
1485 | name = Debug;
1486 | };
1487 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1488 | isa = XCBuildConfiguration;
1489 | buildSettings = {
1490 | BUNDLE_LOADER = "$(TEST_HOST)";
1491 | CLANG_ANALYZER_NONNULL = YES;
1492 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1493 | CLANG_WARN_INFINITE_RECURSION = YES;
1494 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1495 | COPY_PHASE_STRIP = NO;
1496 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1497 | GCC_NO_COMMON_BLOCKS = YES;
1498 | HEADER_SEARCH_PATHS = (
1499 | "$(inherited)",
1500 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1501 | );
1502 | INFOPLIST_FILE = "RNI-tvOSTests/Info.plist";
1503 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1504 | LIBRARY_SEARCH_PATHS = (
1505 | "$(inherited)",
1506 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1507 | );
1508 | OTHER_LDFLAGS = (
1509 | "-ObjC",
1510 | "-lc++",
1511 | );
1512 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNI-tvOSTests";
1513 | PRODUCT_NAME = "$(TARGET_NAME)";
1514 | SDKROOT = appletvos;
1515 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNI-tvOS.app/RNI-tvOS";
1516 | TVOS_DEPLOYMENT_TARGET = 10.1;
1517 | };
1518 | name = Release;
1519 | };
1520 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1521 | isa = XCBuildConfiguration;
1522 | buildSettings = {
1523 | ALWAYS_SEARCH_USER_PATHS = NO;
1524 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1525 | CLANG_CXX_LIBRARY = "libc++";
1526 | CLANG_ENABLE_MODULES = YES;
1527 | CLANG_ENABLE_OBJC_ARC = YES;
1528 | CLANG_WARN_BOOL_CONVERSION = YES;
1529 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1530 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1531 | CLANG_WARN_EMPTY_BODY = YES;
1532 | CLANG_WARN_ENUM_CONVERSION = YES;
1533 | CLANG_WARN_INT_CONVERSION = YES;
1534 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1535 | CLANG_WARN_UNREACHABLE_CODE = YES;
1536 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1537 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1538 | COPY_PHASE_STRIP = NO;
1539 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1540 | GCC_C_LANGUAGE_STANDARD = gnu99;
1541 | GCC_DYNAMIC_NO_PIC = NO;
1542 | GCC_OPTIMIZATION_LEVEL = 0;
1543 | GCC_PREPROCESSOR_DEFINITIONS = (
1544 | "DEBUG=1",
1545 | "$(inherited)",
1546 | );
1547 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1548 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1549 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1550 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1551 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1552 | GCC_WARN_UNUSED_FUNCTION = YES;
1553 | GCC_WARN_UNUSED_VARIABLE = YES;
1554 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1555 | MTL_ENABLE_DEBUG_INFO = YES;
1556 | ONLY_ACTIVE_ARCH = YES;
1557 | SDKROOT = iphoneos;
1558 | };
1559 | name = Debug;
1560 | };
1561 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1562 | isa = XCBuildConfiguration;
1563 | buildSettings = {
1564 | ALWAYS_SEARCH_USER_PATHS = NO;
1565 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1566 | CLANG_CXX_LIBRARY = "libc++";
1567 | CLANG_ENABLE_MODULES = YES;
1568 | CLANG_ENABLE_OBJC_ARC = YES;
1569 | CLANG_WARN_BOOL_CONVERSION = YES;
1570 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1571 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1572 | CLANG_WARN_EMPTY_BODY = YES;
1573 | CLANG_WARN_ENUM_CONVERSION = YES;
1574 | CLANG_WARN_INT_CONVERSION = YES;
1575 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1576 | CLANG_WARN_UNREACHABLE_CODE = YES;
1577 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1578 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1579 | COPY_PHASE_STRIP = YES;
1580 | ENABLE_NS_ASSERTIONS = NO;
1581 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1582 | GCC_C_LANGUAGE_STANDARD = gnu99;
1583 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1584 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1585 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1586 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1587 | GCC_WARN_UNUSED_FUNCTION = YES;
1588 | GCC_WARN_UNUSED_VARIABLE = YES;
1589 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1590 | MTL_ENABLE_DEBUG_INFO = NO;
1591 | SDKROOT = iphoneos;
1592 | VALIDATE_PRODUCT = YES;
1593 | };
1594 | name = Release;
1595 | };
1596 | /* End XCBuildConfiguration section */
1597 |
1598 | /* Begin XCConfigurationList section */
1599 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNITests" */ = {
1600 | isa = XCConfigurationList;
1601 | buildConfigurations = (
1602 | 00E356F61AD99517003FC87E /* Debug */,
1603 | 00E356F71AD99517003FC87E /* Release */,
1604 | );
1605 | defaultConfigurationIsVisible = 0;
1606 | defaultConfigurationName = Release;
1607 | };
1608 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNI" */ = {
1609 | isa = XCConfigurationList;
1610 | buildConfigurations = (
1611 | 13B07F941A680F5B00A75B9A /* Debug */,
1612 | 13B07F951A680F5B00A75B9A /* Release */,
1613 | );
1614 | defaultConfigurationIsVisible = 0;
1615 | defaultConfigurationName = Release;
1616 | };
1617 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNI-tvOS" */ = {
1618 | isa = XCConfigurationList;
1619 | buildConfigurations = (
1620 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1621 | 2D02E4981E0B4A5E006451C7 /* Release */,
1622 | );
1623 | defaultConfigurationIsVisible = 0;
1624 | defaultConfigurationName = Release;
1625 | };
1626 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNI-tvOSTests" */ = {
1627 | isa = XCConfigurationList;
1628 | buildConfigurations = (
1629 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1630 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1631 | );
1632 | defaultConfigurationIsVisible = 0;
1633 | defaultConfigurationName = Release;
1634 | };
1635 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNI" */ = {
1636 | isa = XCConfigurationList;
1637 | buildConfigurations = (
1638 | 83CBBA201A601CBA00E9B192 /* Debug */,
1639 | 83CBBA211A601CBA00E9B192 /* Release */,
1640 | );
1641 | defaultConfigurationIsVisible = 0;
1642 | defaultConfigurationName = Release;
1643 | };
1644 | /* End XCConfigurationList section */
1645 | };
1646 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1647 | }
1648 |
--------------------------------------------------------------------------------
/ios/RNI.xcodeproj/xcshareddata/xcschemes/RNI-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/RNI.xcodeproj/xcshareddata/xcschemes/RNI.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/RNI/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/RNI/AppDelegate.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 "AppDelegate.h"
9 |
10 | #import
11 | #import
12 |
13 | @implementation AppDelegate
14 |
15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
16 | {
17 | NSURL *jsCodeLocation;
18 |
19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
20 |
21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
22 | moduleName:@"RNI"
23 | initialProperties:nil
24 | launchOptions:launchOptions];
25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
26 |
27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
28 | UIViewController *rootViewController = [UIViewController new];
29 | rootViewController.view = rootView;
30 | self.window.rootViewController = rootViewController;
31 | [self.window makeKeyAndVisible];
32 | return YES;
33 | }
34 |
35 | @end
36 |
--------------------------------------------------------------------------------
/ios/RNI/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/RNI/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/RNI/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/ios/RNI/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | RNI
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
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 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 | UIViewControllerBasedStatusBarAppearance
40 |
41 | NSLocationWhenInUseUsageDescription
42 |
43 | NSAppTransportSecurity
44 |
45 | NSExceptionDomains
46 |
47 | localhost
48 |
49 | NSExceptionAllowsInsecureHTTPLoads
50 |
51 |
52 |
53 |
54 | UIAppFonts
55 |
56 | Entypo.ttf
57 | EvilIcons.ttf
58 | Feather.ttf
59 | FontAwesome.ttf
60 | FontAwesome5_Brands.ttf
61 | FontAwesome5_Regular.ttf
62 | FontAwesome5_Solid.ttf
63 | Foundation.ttf
64 | Ionicons.ttf
65 | MaterialCommunityIcons.ttf
66 | MaterialIcons.ttf
67 | Octicons.ttf
68 | SimpleLineIcons.ttf
69 | Zocial.ttf
70 | AntDesign.ttf
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/ios/RNI/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 |
--------------------------------------------------------------------------------
/ios/RNITests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ios/RNITests/RNITests.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 | #import
10 |
11 | #import
12 | #import
13 |
14 | #define TIMEOUT_SECONDS 600
15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
16 |
17 | @interface RNITests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation RNITests
22 |
23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
24 | {
25 | if (test(view)) {
26 | return YES;
27 | }
28 | for (UIView *subview in [view subviews]) {
29 | if ([self findSubviewInView:subview matching:test]) {
30 | return YES;
31 | }
32 | }
33 | return NO;
34 | }
35 |
36 | - (void)testRendersWelcomeScreen
37 | {
38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
40 | BOOL foundElement = NO;
41 |
42 | __block NSString *redboxError = nil;
43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
44 | if (level >= RCTLogLevelError) {
45 | redboxError = message;
46 | }
47 | });
48 |
49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
52 |
53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
55 | return YES;
56 | }
57 | return NO;
58 | }];
59 | }
60 |
61 | RCTSetLogFunction(RCTDefaultLogFunction);
62 |
63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
65 | }
66 |
67 |
68 | @end
69 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-firebase-redux-authentication",
3 | "version": "1.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 | "firebase": "^5.5.6",
11 | "moment": "^2.22.2",
12 | "prop-types": "^15.6.2",
13 | "react": "^16.7.0",
14 | "react-native": "^0.57.8",
15 | "react-native-keyboard-aware-scroll-view": "^0.7.2",
16 | "react-native-router-flux": "^4.0.5",
17 | "react-native-vector-icons": "^6.0.2",
18 | "react-redux": "^5.1.0",
19 | "redux": "^4.0.1",
20 | "redux-devtools": "^3.4.1",
21 | "redux-logger": "^3.0.6",
22 | "redux-thunk": "^2.3.0",
23 | "relative-date": "^1.1.3"
24 | },
25 | "devDependencies": {
26 | "@babel/plugin-transform-runtime": "^7.1.0",
27 | "babel-eslint": "^9.0.0",
28 | "babel-jest": "23.6.0",
29 | "babel-plugin-module-resolver": "^3.1.1",
30 | "eslint": "^5.5.0",
31 | "eslint-config-prettier": "^3.0.1",
32 | "eslint-import-resolver-babel-module": "^5.0.0-beta.1",
33 | "eslint-plugin-import": "^2.14.0",
34 | "eslint-plugin-prettier": "^2.6.2",
35 | "eslint-plugin-react": "^7.11.1",
36 | "jest": "23.6.0",
37 | "metro-react-native-babel-preset": "^0.48.1",
38 | "prettier": "^1.14.2",
39 | "react-test-renderer": "^16.6.1"
40 | },
41 | "jest": {
42 | "preset": "react-native",
43 | "transform": {
44 | "^.+\\.js$": "/node_modules/react-native/jest/preprocessor.js"
45 | }
46 | }
47 | }
48 |
--------------------------------------------------------------------------------