├── . jshintrc ├── .buckconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── 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 │ │ │ └── booksdemoreactnative │ │ │ ├── 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 ├── babel.config.js ├── index.js ├── ios ├── BooksDemoReactNative-tvOS │ └── Info.plist ├── BooksDemoReactNative-tvOSTests │ └── Info.plist ├── BooksDemoReactNative.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── BooksDemoReactNative-tvOS.xcscheme │ │ └── BooksDemoReactNative.xcscheme ├── BooksDemoReactNative │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── BooksDemoReactNativeTests │ ├── BooksDemoReactNativeTests.m │ └── Info.plist ├── lib └── app │ └── App.js ├── package-lock.json ├── package.json ├── src ├── app │ └── App.js ├── screen │ ├── home.js │ ├── loading.js │ ├── login.js │ └── signup.js ├── shared │ ├── api │ │ └── server.js │ ├── component │ │ ├── button.js │ │ └── conditional.js │ ├── constant │ │ ├── constant.js │ │ └── credential.js │ └── util │ │ └── Statehelper.js └── view │ └── myListItem.js ├── storybook ├── addons.js ├── index.js ├── rn-addons.js └── stories │ ├── Button │ ├── index.android.js │ └── index.ios.js │ ├── CenterView │ ├── index.js │ └── style.js │ ├── Welcome │ └── index.js │ └── index.js └── yarn.lock /. jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "react-native" 4 | ], 5 | "extends": [ 6 | "eslint:recommended", 7 | "plugin:react-native/all" 8 | ], 9 | "parser": "babel-eslint", 10 | "env": { 11 | "react-native/react-native": true 12 | }, 13 | "parserOptions": { 14 | "ecmaFeatures": { 15 | "jsx": true 16 | } 17 | }, 18 | "rules":{ 19 | "react-native/no-unused-styles": 2, 20 | "react-native/split-platform-components": 2, 21 | "react-native/no-inline-styles": 2, 22 | "react-native/no-color-literals": 2, 23 | "react-native/no-raw-text": 2 24 | } 25 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 sadman samee 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Boilerplates 2 | 3 | This is a very simple Boilerplate application, this has following features. 4 | 5 | - User can Sign In and Up 6 | - After signing in he can see a list of items 7 | 8 | * I didn't add many functionality and didn't polish UI intentionally, tried to keep it barebone as much as possible 9 | 10 | ### Same implementation in other platforms 11 | - [Android](https://github.com/simpleboilerplates/BooksDemoAndroid) 12 | - [iOS](https://github.com/simpleboilerplates/BooksDemoiOS) 13 | - [Flutter](https://github.com/SimpleBoilerplates/Flutter) 14 | - [NodeJS backend](https://github.com/simpleboilerplates/BooksDemoNode) 15 | 16 | 17 | ### TODO 18 | - Updating it on daily basis as much as possible, work in progess[WIP]. 19 | 20 | ### React-Native Tutorials 21 | * [React Native Tutorial: Building Android Apps with JavaScript](https://www.raywenderlich.com/247-react-native-tutorial-building-android-apps-with-javascript) 22 | * [Up & Running with React Native + Visual Studio Mobile Center 23 | ](https://medium.com/react-native-training/up-running-with-react-native-visual-studio-mobile-center-e3c95adbf650) 24 | * [My Development Toolset 2019 for React Native iOS Development 25 | ](https://medium.com/@duruldalkanat/my-development-toolset-for-react-native-ios-development-de1bd1b07216) 26 | * [Learning React Native](http://www.reactnativeexpress.com/) 27 | * [Organizing a React Native Project](https://medium.com/the-react-native-log/organizing-a-react-native-project-9514dfadaa0) 28 | * [A Brief Overview of ES6 for React Native Developers](https://medium.com/the-react-native-log/a-brief-overview-of-es6-for-react-native-developers-15e7c68315da) 29 | * [The Full React Native Layout Cheat Sheet](https://medium.com/wix-engineering/the-full-react-native-layout-cheat-sheet-a4147802405c) 30 | * [VSCode for React Native](https://medium.com/react-native-training/vscode-for-react-native-526ec4a368ce) 31 | 32 | ### Tools 33 | * [Expo](https://snack.expo.io/) 34 | * [Visual Studio Code](https://code.visualstudio.com/) 35 | * [CodePush](https://github.com/Microsoft/react-native-code-push) 36 | * [Flow](https://github.com/facebook/flow) 37 | * [Sonar Qube](https://www.sonarqube.org/) Continuous Code Quality 38 | * [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi) 39 | * [React Devtools](https://github.com/facebook/react-devtools/blob/master/packages/react-devtools/README.md) 40 | * [Reactotron](https://github.com/infinitered/reactotron) 41 | 42 | 43 | ### Found this project useful :heart: 44 | * Support by clicking the :star: button on the upper right of this page. :v: 45 | 46 | ### Contact - Let's become friend 47 | - [LinkedIn](https://www.linkedin.com/in/sadmansamee/) 48 | - [Github](https://github.com/Sadmansamee) 49 | - [Dev.To](https://dev.to/sadmansamee) 50 | - [Medium](https://medium.com/@sadmansamee) 51 | - [Facebook](https://www.facebook.com/sameesadman) 52 | - [Twitter](https://twitter.com/SameeSadman) 53 | 54 | ## License 55 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 56 | 57 | ## Contributing 58 | 59 | Your contributions are always welcome! Just follow the following format: `[reference name](link) - Description.` If you like it , give a star to this project 60 | -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | * @lint-ignore-every XPLATJSCOPYRIGHT1 4 | */ 5 | 6 | import 'react-native'; 7 | import React from 'react'; 8 | import App from '../App'; 9 | 10 | // Note: test renderer must be required after react-native. 11 | import renderer from 'react-test-renderer'; 12 | 13 | it('renders correctly', () => { 14 | renderer.create(); 15 | }); 16 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.booksdemoreactnative", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.booksdemoreactnative", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 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.booksdemoreactnative" 102 | minSdkVersion rootProject.ext.minSdkVersion 103 | targetSdkVersion rootProject.ext.targetSdkVersion 104 | versionCode 1 105 | versionName "1.0" 106 | } 107 | splits { 108 | abi { 109 | reset() 110 | enable enableSeparateBuildPerCPUArchitecture 111 | universalApk false // If true, also generate a universal APK 112 | include "armeabi-v7a", "x86", "arm64-v8a" 113 | } 114 | } 115 | buildTypes { 116 | release { 117 | minifyEnabled enableProguardInReleaseBuilds 118 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 119 | } 120 | } 121 | // applicationVariants are e.g. debug, release 122 | applicationVariants.all { variant -> 123 | variant.outputs.each { output -> 124 | // For each separate APK per architecture, set a unique version code as described here: 125 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 126 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3] 127 | def abi = output.getFilter(OutputFile.ABI) 128 | if (abi != null) { // null for the universal-debug, universal-release variants 129 | output.versionCodeOverride = 130 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 131 | } 132 | } 133 | } 134 | } 135 | 136 | dependencies { 137 | implementation project(':@react-native-community_async-storage') 138 | implementation project(':react-native-vector-icons') 139 | implementation project(':react-native-gesture-handler') 140 | implementation fileTree(dir: "libs", include: ["*.jar"]) 141 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 142 | implementation "com.facebook.react:react-native:+" // From node_modules 143 | } 144 | 145 | // Run this once to be able to run the application with BUCK 146 | // puts all compile dependencies into folder libs for BUCK to use 147 | task copyDownloadableDepsToLibs(type: Copy) { 148 | from configurations.compile 149 | into 'libs' 150 | } 151 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 14 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/booksdemoreactnative/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.booksdemoreactnative; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import com.facebook.react.ReactActivityDelegate; 5 | import com.facebook.react.ReactRootView; 6 | import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView; 7 | 8 | public class MainActivity extends ReactActivity { 9 | 10 | /** 11 | * Returns the name of the main component registered from JavaScript. 12 | * This is used to schedule rendering of the component. 13 | */ 14 | @Override 15 | protected String getMainComponentName() { 16 | return "BooksDemoReactNative"; 17 | } 18 | 19 | @Override 20 | protected ReactActivityDelegate createReactActivityDelegate() { 21 | return new ReactActivityDelegate(this, getMainComponentName()) { 22 | @Override 23 | protected ReactRootView createRootView() { 24 | return new RNGestureHandlerEnabledRootView(MainActivity.this); 25 | } 26 | }; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/booksdemoreactnative/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.booksdemoreactnative; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.reactnativecommunity.asyncstorage.AsyncStoragePackage; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.swmansion.gesturehandler.react.RNGestureHandlerPackage; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | 14 | import java.util.Arrays; 15 | import java.util.List; 16 | 17 | public class MainApplication extends Application implements ReactApplication { 18 | 19 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | return Arrays.asList( 28 | new MainReactPackage(), 29 | new AsyncStoragePackage(), 30 | new VectorIconsPackage(), 31 | new RNGestureHandlerPackage() 32 | ); 33 | } 34 | 35 | @Override 36 | protected String getJSMainModuleName() { 37 | return "index"; 38 | } 39 | }; 40 | 41 | @Override 42 | public ReactNativeHost getReactNativeHost() { 43 | return mReactNativeHost; 44 | } 45 | 46 | @Override 47 | public void onCreate() { 48 | super.onCreate(); 49 | SoLoader.init(this, /* native exopackage */ false); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BooksDemoReactNative 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.2" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 27 9 | supportLibVersion = "28.0.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 | google() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | 35 | 36 | task wrapper(type: Wrapper) { 37 | gradleVersion = '4.7' 38 | distributionUrl = distributionUrl.replace("bin", "all") 39 | } 40 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleBoilerplates/React-Native/5659dca2044703f40580dc6d410d21228a03a3e1/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.7-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'BooksDemoReactNative' 2 | include ':@react-native-community_async-storage' 3 | project(':@react-native-community_async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/async-storage/android') 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | include ':react-native-gesture-handler' 7 | project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') 8 | 9 | include ':app' 10 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BooksDemoReactNative", 3 | "displayName": "BooksDemoReactNative" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | * @lint-ignore-every XPLATJSCOPYRIGHT1 4 | */ 5 | 6 | import { AppRegistry } from "react-native"; 7 | import App from "./src/app/App"; 8 | import { name as appName } from "./app.json"; 9 | 10 | AppRegistry.registerComponent(appName, () => App); 11 | -------------------------------------------------------------------------------- /ios/BooksDemoReactNative-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/BooksDemoReactNative-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/BooksDemoReactNative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* BooksDemoReactNativeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* BooksDemoReactNativeTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* BooksDemoReactNativeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* BooksDemoReactNativeTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; }; 41 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED2971642150620600B7C4FE /* JavaScriptCore.framework */; }; 42 | 7E7BCA2AE6E9433CB5ADACA8 /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 220CDA8AB2AD480C892847CC /* libRNGestureHandler.a */; }; 43 | C31C2A435E1B40CDBFD9035D /* libRNGestureHandler-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CBC6A1A225184782B4A55C53 /* libRNGestureHandler-tvOS.a */; }; 44 | F22273BD9CB94DA2BFD35226 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40421B09E8BD4E43ACF9B1F4 /* libRNVectorIcons.a */; }; 45 | 0074FC3EB26A4BDDA0298F2F /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FA2038B9A8E4718BFCF9F77 /* libRNVectorIcons-tvOS.a */; }; 46 | E8EF28568D164AC4A379C9F8 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 62B30BB4E9744F12BCDB01E6 /* AntDesign.ttf */; }; 47 | 6972B96E0211499DA6E606EF /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ED32AE04A3AC43189B43DD31 /* Entypo.ttf */; }; 48 | BC11BCA07F1C45B28EB0F5D3 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 39AE0B39DC824644B53B7E80 /* EvilIcons.ttf */; }; 49 | 2F886C3E4BCB4FB8B7FF996D /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CAAE371F2D5D46DB83E09D4E /* Feather.ttf */; }; 50 | B2B013D165244A518ABD188E /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9B8CD9B835D34CF4B113B8FC /* FontAwesome.ttf */; }; 51 | E7E6D7B8D1384136B6216D50 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 550D116F9529426B9473C9BF /* FontAwesome5_Brands.ttf */; }; 52 | 6E6EB69C798F450AAA00726E /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A0EF2C7B10514A9BA9B50025 /* FontAwesome5_Regular.ttf */; }; 53 | 3973754CB7954DE486ABCE6E /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 443F4B9285764479BA73F63C /* FontAwesome5_Solid.ttf */; }; 54 | 9D6D35C5D0B7478DBFCB81DE /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EDE7841A5BF44E739AA61832 /* Foundation.ttf */; }; 55 | FE0C7730D0044AA08101E5D3 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E2CCFE80A4E446C4AADFFDCF /* Ionicons.ttf */; }; 56 | E9C3DCC3C8EB48F69EE1B97E /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D38A9D64D61044F68A1A45F9 /* MaterialCommunityIcons.ttf */; }; 57 | 2D3188E33ED54DB283105CE9 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D8F8296D25454DDABE0D2AD1 /* MaterialIcons.ttf */; }; 58 | EC43DD7E87FA4AF295F8A9BE /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C009656AB1C74E48AC2C0E15 /* Octicons.ttf */; }; 59 | 40F883EA0CA54A80B912DA61 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 41DB9382042049519CC005EB /* SimpleLineIcons.ttf */; }; 60 | A6DD0E56849942259E3E8770 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 59B50C098CC74838B4CAEC74 /* Zocial.ttf */; }; 61 | FC7711A8C4A94D96A2CB0432 /* libRNCAsyncStorage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 77DBC95E7E754F189AF8E2D4 /* libRNCAsyncStorage.a */; }; 62 | /* End PBXBuildFile section */ 63 | 64 | /* Begin PBXContainerItemProxy section */ 65 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 66 | isa = PBXContainerItemProxy; 67 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 68 | proxyType = 2; 69 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 70 | remoteInfo = RCTActionSheet; 71 | }; 72 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 73 | isa = PBXContainerItemProxy; 74 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 75 | proxyType = 2; 76 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 77 | remoteInfo = RCTGeolocation; 78 | }; 79 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 80 | isa = PBXContainerItemProxy; 81 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 82 | proxyType = 2; 83 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 84 | remoteInfo = RCTImage; 85 | }; 86 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 87 | isa = PBXContainerItemProxy; 88 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 89 | proxyType = 2; 90 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 91 | remoteInfo = RCTNetwork; 92 | }; 93 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 94 | isa = PBXContainerItemProxy; 95 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 96 | proxyType = 2; 97 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 98 | remoteInfo = RCTVibration; 99 | }; 100 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 101 | isa = PBXContainerItemProxy; 102 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 103 | proxyType = 1; 104 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 105 | remoteInfo = BooksDemoReactNative; 106 | }; 107 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 108 | isa = PBXContainerItemProxy; 109 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 110 | proxyType = 2; 111 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 112 | remoteInfo = RCTSettings; 113 | }; 114 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 115 | isa = PBXContainerItemProxy; 116 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 117 | proxyType = 2; 118 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 119 | remoteInfo = RCTWebSocket; 120 | }; 121 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 122 | isa = PBXContainerItemProxy; 123 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 124 | proxyType = 2; 125 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 126 | remoteInfo = React; 127 | }; 128 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 129 | isa = PBXContainerItemProxy; 130 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 131 | proxyType = 1; 132 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 133 | remoteInfo = "BooksDemoReactNative-tvOS"; 134 | }; 135 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 138 | proxyType = 2; 139 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 140 | remoteInfo = "RCTBlob-tvOS"; 141 | }; 142 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 145 | proxyType = 2; 146 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 147 | remoteInfo = fishhook; 148 | }; 149 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 150 | isa = PBXContainerItemProxy; 151 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 152 | proxyType = 2; 153 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 154 | remoteInfo = "fishhook-tvOS"; 155 | }; 156 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 157 | isa = PBXContainerItemProxy; 158 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 159 | proxyType = 2; 160 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 161 | remoteInfo = jsinspector; 162 | }; 163 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 164 | isa = PBXContainerItemProxy; 165 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 166 | proxyType = 2; 167 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 168 | remoteInfo = "jsinspector-tvOS"; 169 | }; 170 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 171 | isa = PBXContainerItemProxy; 172 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 173 | proxyType = 2; 174 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 175 | remoteInfo = "third-party"; 176 | }; 177 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 178 | isa = PBXContainerItemProxy; 179 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 180 | proxyType = 2; 181 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 182 | remoteInfo = "third-party-tvOS"; 183 | }; 184 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 185 | isa = PBXContainerItemProxy; 186 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 187 | proxyType = 2; 188 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 189 | remoteInfo = "double-conversion"; 190 | }; 191 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 192 | isa = PBXContainerItemProxy; 193 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 194 | proxyType = 2; 195 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 196 | remoteInfo = "double-conversion-tvOS"; 197 | }; 198 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 199 | isa = PBXContainerItemProxy; 200 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 201 | proxyType = 2; 202 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 203 | remoteInfo = privatedata; 204 | }; 205 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 206 | isa = PBXContainerItemProxy; 207 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 208 | proxyType = 2; 209 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 210 | remoteInfo = "privatedata-tvOS"; 211 | }; 212 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 213 | isa = PBXContainerItemProxy; 214 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 215 | proxyType = 2; 216 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 217 | remoteInfo = "RCTImage-tvOS"; 218 | }; 219 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 220 | isa = PBXContainerItemProxy; 221 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 222 | proxyType = 2; 223 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 224 | remoteInfo = "RCTLinking-tvOS"; 225 | }; 226 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 227 | isa = PBXContainerItemProxy; 228 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 229 | proxyType = 2; 230 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 231 | remoteInfo = "RCTNetwork-tvOS"; 232 | }; 233 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 234 | isa = PBXContainerItemProxy; 235 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 236 | proxyType = 2; 237 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 238 | remoteInfo = "RCTSettings-tvOS"; 239 | }; 240 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 241 | isa = PBXContainerItemProxy; 242 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 243 | proxyType = 2; 244 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 245 | remoteInfo = "RCTText-tvOS"; 246 | }; 247 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 248 | isa = PBXContainerItemProxy; 249 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 250 | proxyType = 2; 251 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 252 | remoteInfo = "RCTWebSocket-tvOS"; 253 | }; 254 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 255 | isa = PBXContainerItemProxy; 256 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 257 | proxyType = 2; 258 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 259 | remoteInfo = "React-tvOS"; 260 | }; 261 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 262 | isa = PBXContainerItemProxy; 263 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 264 | proxyType = 2; 265 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 266 | remoteInfo = yoga; 267 | }; 268 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 269 | isa = PBXContainerItemProxy; 270 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 271 | proxyType = 2; 272 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 273 | remoteInfo = "yoga-tvOS"; 274 | }; 275 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 276 | isa = PBXContainerItemProxy; 277 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 278 | proxyType = 2; 279 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 280 | remoteInfo = cxxreact; 281 | }; 282 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 283 | isa = PBXContainerItemProxy; 284 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 285 | proxyType = 2; 286 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 287 | remoteInfo = "cxxreact-tvOS"; 288 | }; 289 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 290 | isa = PBXContainerItemProxy; 291 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 292 | proxyType = 2; 293 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 294 | remoteInfo = jschelpers; 295 | }; 296 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 297 | isa = PBXContainerItemProxy; 298 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 299 | proxyType = 2; 300 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 301 | remoteInfo = "jschelpers-tvOS"; 302 | }; 303 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 304 | isa = PBXContainerItemProxy; 305 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 306 | proxyType = 2; 307 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 308 | remoteInfo = RCTAnimation; 309 | }; 310 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 311 | isa = PBXContainerItemProxy; 312 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 313 | proxyType = 2; 314 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 315 | remoteInfo = "RCTAnimation-tvOS"; 316 | }; 317 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 318 | isa = PBXContainerItemProxy; 319 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 320 | proxyType = 2; 321 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 322 | remoteInfo = RCTLinking; 323 | }; 324 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 325 | isa = PBXContainerItemProxy; 326 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 327 | proxyType = 2; 328 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 329 | remoteInfo = RCTText; 330 | }; 331 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 332 | isa = PBXContainerItemProxy; 333 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 334 | proxyType = 2; 335 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 336 | remoteInfo = RCTBlob; 337 | }; 338 | /* End PBXContainerItemProxy section */ 339 | 340 | /* Begin PBXFileReference section */ 341 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 342 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 343 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 344 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 345 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 346 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 347 | 00E356EE1AD99517003FC87E /* BooksDemoReactNativeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BooksDemoReactNativeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 348 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 349 | 00E356F21AD99517003FC87E /* BooksDemoReactNativeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BooksDemoReactNativeTests.m; sourceTree = ""; }; 350 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 351 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 352 | 13B07F961A680F5B00A75B9A /* BooksDemoReactNative.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BooksDemoReactNative.app; sourceTree = BUILT_PRODUCTS_DIR; }; 353 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = BooksDemoReactNative/AppDelegate.h; sourceTree = ""; }; 354 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = BooksDemoReactNative/AppDelegate.m; sourceTree = ""; }; 355 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 356 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = BooksDemoReactNative/Images.xcassets; sourceTree = ""; }; 357 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = BooksDemoReactNative/Info.plist; sourceTree = ""; }; 358 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = BooksDemoReactNative/main.m; sourceTree = ""; }; 359 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 360 | 2D02E47B1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "BooksDemoReactNative-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 361 | 2D02E4901E0B4A5D006451C7 /* BooksDemoReactNative-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "BooksDemoReactNative-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 362 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 363 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 364 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 365 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 366 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 367 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 368 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; 369 | 77559536F8AD4CBD92C8A22F /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; name = "RNGestureHandler.xcodeproj"; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 370 | 220CDA8AB2AD480C892847CC /* libRNGestureHandler.a */ = {isa = PBXFileReference; name = "libRNGestureHandler.a"; path = "libRNGestureHandler.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 371 | CBC6A1A225184782B4A55C53 /* libRNGestureHandler-tvOS.a */ = {isa = PBXFileReference; name = "libRNGestureHandler-tvOS.a"; path = "libRNGestureHandler-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 372 | 7109903C45684BCAAEF58A85 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 373 | 40421B09E8BD4E43ACF9B1F4 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 374 | 3FA2038B9A8E4718BFCF9F77 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; name = "libRNVectorIcons-tvOS.a"; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 375 | 62B30BB4E9744F12BCDB01E6 /* AntDesign.ttf */ = {isa = PBXFileReference; name = "AntDesign.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 376 | ED32AE04A3AC43189B43DD31 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 377 | 39AE0B39DC824644B53B7E80 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 378 | CAAE371F2D5D46DB83E09D4E /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 379 | 9B8CD9B835D34CF4B113B8FC /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 380 | 550D116F9529426B9473C9BF /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Brands.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 381 | A0EF2C7B10514A9BA9B50025 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Regular.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 382 | 443F4B9285764479BA73F63C /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; name = "FontAwesome5_Solid.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 383 | EDE7841A5BF44E739AA61832 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 384 | E2CCFE80A4E446C4AADFFDCF /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 385 | D38A9D64D61044F68A1A45F9 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 386 | D8F8296D25454DDABE0D2AD1 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 387 | C009656AB1C74E48AC2C0E15 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 388 | 41DB9382042049519CC005EB /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 389 | 59B50C098CC74838B4CAEC74 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 390 | 97C848211B7641ACB553834A /* RNCAsyncStorage.xcodeproj */ = {isa = PBXFileReference; name = "RNCAsyncStorage.xcodeproj"; path = "../node_modules/@react-native-community/async-storage/ios/RNCAsyncStorage.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 391 | 77DBC95E7E754F189AF8E2D4 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; name = "libRNCAsyncStorage.a"; path = "libRNCAsyncStorage.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 392 | /* End PBXFileReference section */ 393 | 394 | /* Begin PBXFrameworksBuildPhase section */ 395 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 396 | isa = PBXFrameworksBuildPhase; 397 | buildActionMask = 2147483647; 398 | files = ( 399 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 404 | isa = PBXFrameworksBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 408 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 409 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 410 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 411 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 412 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 413 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 414 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 415 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 416 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 417 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 418 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 419 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 420 | 7E7BCA2AE6E9433CB5ADACA8 /* libRNGestureHandler.a in Frameworks */, 421 | F22273BD9CB94DA2BFD35226 /* libRNVectorIcons.a in Frameworks */, 422 | FC7711A8C4A94D96A2CB0432 /* libRNCAsyncStorage.a in Frameworks */, 423 | ); 424 | runOnlyForDeploymentPostprocessing = 0; 425 | }; 426 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 427 | isa = PBXFrameworksBuildPhase; 428 | buildActionMask = 2147483647; 429 | files = ( 430 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 431 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 432 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 433 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 434 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 435 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 436 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 437 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 438 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 439 | C31C2A435E1B40CDBFD9035D /* libRNGestureHandler-tvOS.a in Frameworks */, 440 | 0074FC3EB26A4BDDA0298F2F /* libRNVectorIcons-tvOS.a in Frameworks */, 441 | ); 442 | runOnlyForDeploymentPostprocessing = 0; 443 | }; 444 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 445 | isa = PBXFrameworksBuildPhase; 446 | buildActionMask = 2147483647; 447 | files = ( 448 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 449 | ); 450 | runOnlyForDeploymentPostprocessing = 0; 451 | }; 452 | /* End PBXFrameworksBuildPhase section */ 453 | 454 | /* Begin PBXGroup section */ 455 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 456 | isa = PBXGroup; 457 | children = ( 458 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 459 | ); 460 | name = Products; 461 | sourceTree = ""; 462 | }; 463 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 464 | isa = PBXGroup; 465 | children = ( 466 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 467 | ); 468 | name = Products; 469 | sourceTree = ""; 470 | }; 471 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 472 | isa = PBXGroup; 473 | children = ( 474 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 475 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 476 | ); 477 | name = Products; 478 | sourceTree = ""; 479 | }; 480 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 481 | isa = PBXGroup; 482 | children = ( 483 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 484 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 485 | ); 486 | name = Products; 487 | sourceTree = ""; 488 | }; 489 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 490 | isa = PBXGroup; 491 | children = ( 492 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 493 | ); 494 | name = Products; 495 | sourceTree = ""; 496 | }; 497 | 00E356EF1AD99517003FC87E /* BooksDemoReactNativeTests */ = { 498 | isa = PBXGroup; 499 | children = ( 500 | 00E356F21AD99517003FC87E /* BooksDemoReactNativeTests.m */, 501 | 00E356F01AD99517003FC87E /* Supporting Files */, 502 | ); 503 | path = BooksDemoReactNativeTests; 504 | sourceTree = ""; 505 | }; 506 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 507 | isa = PBXGroup; 508 | children = ( 509 | 00E356F11AD99517003FC87E /* Info.plist */, 510 | ); 511 | name = "Supporting Files"; 512 | sourceTree = ""; 513 | }; 514 | 139105B71AF99BAD00B5F7CC /* Products */ = { 515 | isa = PBXGroup; 516 | children = ( 517 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 518 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 519 | ); 520 | name = Products; 521 | sourceTree = ""; 522 | }; 523 | 139FDEE71B06529A00C62182 /* Products */ = { 524 | isa = PBXGroup; 525 | children = ( 526 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 527 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 528 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 529 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 530 | ); 531 | name = Products; 532 | sourceTree = ""; 533 | }; 534 | 13B07FAE1A68108700A75B9A /* BooksDemoReactNative */ = { 535 | isa = PBXGroup; 536 | children = ( 537 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 538 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 539 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 540 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 541 | 13B07FB61A68108700A75B9A /* Info.plist */, 542 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 543 | 13B07FB71A68108700A75B9A /* main.m */, 544 | ); 545 | name = BooksDemoReactNative; 546 | sourceTree = ""; 547 | }; 548 | 146834001AC3E56700842450 /* Products */ = { 549 | isa = PBXGroup; 550 | children = ( 551 | 146834041AC3E56700842450 /* libReact.a */, 552 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 553 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 554 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 555 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 556 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 557 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 558 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 559 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 560 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 561 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 562 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 563 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 564 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 565 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 566 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 567 | ); 568 | name = Products; 569 | sourceTree = ""; 570 | }; 571 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 572 | isa = PBXGroup; 573 | children = ( 574 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 575 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 576 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 577 | ); 578 | name = Frameworks; 579 | sourceTree = ""; 580 | }; 581 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 582 | isa = PBXGroup; 583 | children = ( 584 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 585 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 586 | ); 587 | name = Products; 588 | sourceTree = ""; 589 | }; 590 | 78C398B11ACF4ADC00677621 /* Products */ = { 591 | isa = PBXGroup; 592 | children = ( 593 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 594 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 595 | ); 596 | name = Products; 597 | sourceTree = ""; 598 | }; 599 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 600 | isa = PBXGroup; 601 | children = ( 602 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 603 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 604 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 605 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 606 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 607 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 608 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 609 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 610 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 611 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 612 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 613 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 614 | 77559536F8AD4CBD92C8A22F /* RNGestureHandler.xcodeproj */, 615 | 7109903C45684BCAAEF58A85 /* RNVectorIcons.xcodeproj */, 616 | 97C848211B7641ACB553834A /* RNCAsyncStorage.xcodeproj */, 617 | ); 618 | name = Libraries; 619 | sourceTree = ""; 620 | }; 621 | 832341B11AAA6A8300B99B32 /* Products */ = { 622 | isa = PBXGroup; 623 | children = ( 624 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 625 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 626 | ); 627 | name = Products; 628 | sourceTree = ""; 629 | }; 630 | 83CBB9F61A601CBA00E9B192 = { 631 | isa = PBXGroup; 632 | children = ( 633 | 13B07FAE1A68108700A75B9A /* BooksDemoReactNative */, 634 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 635 | 00E356EF1AD99517003FC87E /* BooksDemoReactNativeTests */, 636 | 83CBBA001A601CBA00E9B192 /* Products */, 637 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 638 | 9BB202052D2A41EDAADFB400 /* Resources */, 639 | ); 640 | indentWidth = 2; 641 | sourceTree = ""; 642 | tabWidth = 2; 643 | usesTabs = 0; 644 | }; 645 | 83CBBA001A601CBA00E9B192 /* Products */ = { 646 | isa = PBXGroup; 647 | children = ( 648 | 13B07F961A680F5B00A75B9A /* BooksDemoReactNative.app */, 649 | 00E356EE1AD99517003FC87E /* BooksDemoReactNativeTests.xctest */, 650 | 2D02E47B1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS.app */, 651 | 2D02E4901E0B4A5D006451C7 /* BooksDemoReactNative-tvOSTests.xctest */, 652 | ); 653 | name = Products; 654 | sourceTree = ""; 655 | }; 656 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 657 | isa = PBXGroup; 658 | children = ( 659 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 660 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 661 | ); 662 | name = Products; 663 | sourceTree = ""; 664 | }; 665 | 9BB202052D2A41EDAADFB400 /* Resources */ = { 666 | isa = "PBXGroup"; 667 | children = ( 668 | 62B30BB4E9744F12BCDB01E6 /* AntDesign.ttf */, 669 | ED32AE04A3AC43189B43DD31 /* Entypo.ttf */, 670 | 39AE0B39DC824644B53B7E80 /* EvilIcons.ttf */, 671 | CAAE371F2D5D46DB83E09D4E /* Feather.ttf */, 672 | 9B8CD9B835D34CF4B113B8FC /* FontAwesome.ttf */, 673 | 550D116F9529426B9473C9BF /* FontAwesome5_Brands.ttf */, 674 | A0EF2C7B10514A9BA9B50025 /* FontAwesome5_Regular.ttf */, 675 | 443F4B9285764479BA73F63C /* FontAwesome5_Solid.ttf */, 676 | EDE7841A5BF44E739AA61832 /* Foundation.ttf */, 677 | E2CCFE80A4E446C4AADFFDCF /* Ionicons.ttf */, 678 | D38A9D64D61044F68A1A45F9 /* MaterialCommunityIcons.ttf */, 679 | D8F8296D25454DDABE0D2AD1 /* MaterialIcons.ttf */, 680 | C009656AB1C74E48AC2C0E15 /* Octicons.ttf */, 681 | 41DB9382042049519CC005EB /* SimpleLineIcons.ttf */, 682 | 59B50C098CC74838B4CAEC74 /* Zocial.ttf */, 683 | ); 684 | name = Resources; 685 | sourceTree = ""; 686 | path = ""; 687 | }; 688 | /* End PBXGroup section */ 689 | 690 | /* Begin PBXNativeTarget section */ 691 | 00E356ED1AD99517003FC87E /* BooksDemoReactNativeTests */ = { 692 | isa = PBXNativeTarget; 693 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "BooksDemoReactNativeTests" */; 694 | buildPhases = ( 695 | 00E356EA1AD99517003FC87E /* Sources */, 696 | 00E356EB1AD99517003FC87E /* Frameworks */, 697 | 00E356EC1AD99517003FC87E /* Resources */, 698 | ); 699 | buildRules = ( 700 | ); 701 | dependencies = ( 702 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 703 | ); 704 | name = BooksDemoReactNativeTests; 705 | productName = BooksDemoReactNativeTests; 706 | productReference = 00E356EE1AD99517003FC87E /* BooksDemoReactNativeTests.xctest */; 707 | productType = "com.apple.product-type.bundle.unit-test"; 708 | }; 709 | 13B07F861A680F5B00A75B9A /* BooksDemoReactNative */ = { 710 | isa = PBXNativeTarget; 711 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "BooksDemoReactNative" */; 712 | buildPhases = ( 713 | 13B07F871A680F5B00A75B9A /* Sources */, 714 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 715 | 13B07F8E1A680F5B00A75B9A /* Resources */, 716 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 717 | ); 718 | buildRules = ( 719 | ); 720 | dependencies = ( 721 | ); 722 | name = BooksDemoReactNative; 723 | productName = "Hello World"; 724 | productReference = 13B07F961A680F5B00A75B9A /* BooksDemoReactNative.app */; 725 | productType = "com.apple.product-type.application"; 726 | }; 727 | 2D02E47A1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS */ = { 728 | isa = PBXNativeTarget; 729 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "BooksDemoReactNative-tvOS" */; 730 | buildPhases = ( 731 | 2D02E4771E0B4A5D006451C7 /* Sources */, 732 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 733 | 2D02E4791E0B4A5D006451C7 /* Resources */, 734 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 735 | ); 736 | buildRules = ( 737 | ); 738 | dependencies = ( 739 | ); 740 | name = "BooksDemoReactNative-tvOS"; 741 | productName = "BooksDemoReactNative-tvOS"; 742 | productReference = 2D02E47B1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS.app */; 743 | productType = "com.apple.product-type.application"; 744 | }; 745 | 2D02E48F1E0B4A5D006451C7 /* BooksDemoReactNative-tvOSTests */ = { 746 | isa = PBXNativeTarget; 747 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "BooksDemoReactNative-tvOSTests" */; 748 | buildPhases = ( 749 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 750 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 751 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 752 | ); 753 | buildRules = ( 754 | ); 755 | dependencies = ( 756 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 757 | ); 758 | name = "BooksDemoReactNative-tvOSTests"; 759 | productName = "BooksDemoReactNative-tvOSTests"; 760 | productReference = 2D02E4901E0B4A5D006451C7 /* BooksDemoReactNative-tvOSTests.xctest */; 761 | productType = "com.apple.product-type.bundle.unit-test"; 762 | }; 763 | /* End PBXNativeTarget section */ 764 | 765 | /* Begin PBXProject section */ 766 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 767 | isa = PBXProject; 768 | attributes = { 769 | LastUpgradeCheck = 940; 770 | ORGANIZATIONNAME = Facebook; 771 | TargetAttributes = { 772 | 00E356ED1AD99517003FC87E = { 773 | CreatedOnToolsVersion = 6.2; 774 | TestTargetID = 13B07F861A680F5B00A75B9A; 775 | }; 776 | 2D02E47A1E0B4A5D006451C7 = { 777 | CreatedOnToolsVersion = 8.2.1; 778 | ProvisioningStyle = Automatic; 779 | }; 780 | 2D02E48F1E0B4A5D006451C7 = { 781 | CreatedOnToolsVersion = 8.2.1; 782 | ProvisioningStyle = Automatic; 783 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 784 | }; 785 | }; 786 | }; 787 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "BooksDemoReactNative" */; 788 | compatibilityVersion = "Xcode 3.2"; 789 | developmentRegion = English; 790 | hasScannedForEncodings = 0; 791 | knownRegions = ( 792 | en, 793 | Base, 794 | ); 795 | mainGroup = 83CBB9F61A601CBA00E9B192; 796 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 797 | projectDirPath = ""; 798 | projectReferences = ( 799 | { 800 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 801 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 802 | }, 803 | { 804 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 805 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 806 | }, 807 | { 808 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 809 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 810 | }, 811 | { 812 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 813 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 814 | }, 815 | { 816 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 817 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 818 | }, 819 | { 820 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 821 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 822 | }, 823 | { 824 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 825 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 826 | }, 827 | { 828 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 829 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 830 | }, 831 | { 832 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 833 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 834 | }, 835 | { 836 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 837 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 838 | }, 839 | { 840 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 841 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 842 | }, 843 | { 844 | ProductGroup = 146834001AC3E56700842450 /* Products */; 845 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 846 | }, 847 | ); 848 | projectRoot = ""; 849 | targets = ( 850 | 13B07F861A680F5B00A75B9A /* BooksDemoReactNative */, 851 | 00E356ED1AD99517003FC87E /* BooksDemoReactNativeTests */, 852 | 2D02E47A1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS */, 853 | 2D02E48F1E0B4A5D006451C7 /* BooksDemoReactNative-tvOSTests */, 854 | ); 855 | }; 856 | /* End PBXProject section */ 857 | 858 | /* Begin PBXReferenceProxy section */ 859 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 860 | isa = PBXReferenceProxy; 861 | fileType = archive.ar; 862 | path = libRCTActionSheet.a; 863 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 864 | sourceTree = BUILT_PRODUCTS_DIR; 865 | }; 866 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 867 | isa = PBXReferenceProxy; 868 | fileType = archive.ar; 869 | path = libRCTGeolocation.a; 870 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 871 | sourceTree = BUILT_PRODUCTS_DIR; 872 | }; 873 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 874 | isa = PBXReferenceProxy; 875 | fileType = archive.ar; 876 | path = libRCTImage.a; 877 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 878 | sourceTree = BUILT_PRODUCTS_DIR; 879 | }; 880 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 881 | isa = PBXReferenceProxy; 882 | fileType = archive.ar; 883 | path = libRCTNetwork.a; 884 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 885 | sourceTree = BUILT_PRODUCTS_DIR; 886 | }; 887 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 888 | isa = PBXReferenceProxy; 889 | fileType = archive.ar; 890 | path = libRCTVibration.a; 891 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 892 | sourceTree = BUILT_PRODUCTS_DIR; 893 | }; 894 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 895 | isa = PBXReferenceProxy; 896 | fileType = archive.ar; 897 | path = libRCTSettings.a; 898 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 899 | sourceTree = BUILT_PRODUCTS_DIR; 900 | }; 901 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 902 | isa = PBXReferenceProxy; 903 | fileType = archive.ar; 904 | path = libRCTWebSocket.a; 905 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 906 | sourceTree = BUILT_PRODUCTS_DIR; 907 | }; 908 | 146834041AC3E56700842450 /* libReact.a */ = { 909 | isa = PBXReferenceProxy; 910 | fileType = archive.ar; 911 | path = libReact.a; 912 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 913 | sourceTree = BUILT_PRODUCTS_DIR; 914 | }; 915 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 916 | isa = PBXReferenceProxy; 917 | fileType = archive.ar; 918 | path = "libRCTBlob-tvOS.a"; 919 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 920 | sourceTree = BUILT_PRODUCTS_DIR; 921 | }; 922 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 923 | isa = PBXReferenceProxy; 924 | fileType = archive.ar; 925 | path = libfishhook.a; 926 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 927 | sourceTree = BUILT_PRODUCTS_DIR; 928 | }; 929 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 930 | isa = PBXReferenceProxy; 931 | fileType = archive.ar; 932 | path = "libfishhook-tvOS.a"; 933 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 934 | sourceTree = BUILT_PRODUCTS_DIR; 935 | }; 936 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 937 | isa = PBXReferenceProxy; 938 | fileType = archive.ar; 939 | path = libjsinspector.a; 940 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 941 | sourceTree = BUILT_PRODUCTS_DIR; 942 | }; 943 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 944 | isa = PBXReferenceProxy; 945 | fileType = archive.ar; 946 | path = "libjsinspector-tvOS.a"; 947 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 948 | sourceTree = BUILT_PRODUCTS_DIR; 949 | }; 950 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 951 | isa = PBXReferenceProxy; 952 | fileType = archive.ar; 953 | path = "libthird-party.a"; 954 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 955 | sourceTree = BUILT_PRODUCTS_DIR; 956 | }; 957 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 958 | isa = PBXReferenceProxy; 959 | fileType = archive.ar; 960 | path = "libthird-party.a"; 961 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 962 | sourceTree = BUILT_PRODUCTS_DIR; 963 | }; 964 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 965 | isa = PBXReferenceProxy; 966 | fileType = archive.ar; 967 | path = "libdouble-conversion.a"; 968 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 969 | sourceTree = BUILT_PRODUCTS_DIR; 970 | }; 971 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 972 | isa = PBXReferenceProxy; 973 | fileType = archive.ar; 974 | path = "libdouble-conversion.a"; 975 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 976 | sourceTree = BUILT_PRODUCTS_DIR; 977 | }; 978 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 979 | isa = PBXReferenceProxy; 980 | fileType = archive.ar; 981 | path = libprivatedata.a; 982 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 983 | sourceTree = BUILT_PRODUCTS_DIR; 984 | }; 985 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 986 | isa = PBXReferenceProxy; 987 | fileType = archive.ar; 988 | path = "libprivatedata-tvOS.a"; 989 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 990 | sourceTree = BUILT_PRODUCTS_DIR; 991 | }; 992 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 993 | isa = PBXReferenceProxy; 994 | fileType = archive.ar; 995 | path = "libRCTImage-tvOS.a"; 996 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 997 | sourceTree = BUILT_PRODUCTS_DIR; 998 | }; 999 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1000 | isa = PBXReferenceProxy; 1001 | fileType = archive.ar; 1002 | path = "libRCTLinking-tvOS.a"; 1003 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1004 | sourceTree = BUILT_PRODUCTS_DIR; 1005 | }; 1006 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1007 | isa = PBXReferenceProxy; 1008 | fileType = archive.ar; 1009 | path = "libRCTNetwork-tvOS.a"; 1010 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1011 | sourceTree = BUILT_PRODUCTS_DIR; 1012 | }; 1013 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1014 | isa = PBXReferenceProxy; 1015 | fileType = archive.ar; 1016 | path = "libRCTSettings-tvOS.a"; 1017 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1018 | sourceTree = BUILT_PRODUCTS_DIR; 1019 | }; 1020 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1021 | isa = PBXReferenceProxy; 1022 | fileType = archive.ar; 1023 | path = "libRCTText-tvOS.a"; 1024 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1025 | sourceTree = BUILT_PRODUCTS_DIR; 1026 | }; 1027 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1028 | isa = PBXReferenceProxy; 1029 | fileType = archive.ar; 1030 | path = "libRCTWebSocket-tvOS.a"; 1031 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1032 | sourceTree = BUILT_PRODUCTS_DIR; 1033 | }; 1034 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1035 | isa = PBXReferenceProxy; 1036 | fileType = archive.ar; 1037 | path = libReact.a; 1038 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1039 | sourceTree = BUILT_PRODUCTS_DIR; 1040 | }; 1041 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1042 | isa = PBXReferenceProxy; 1043 | fileType = archive.ar; 1044 | path = libyoga.a; 1045 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1046 | sourceTree = BUILT_PRODUCTS_DIR; 1047 | }; 1048 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1049 | isa = PBXReferenceProxy; 1050 | fileType = archive.ar; 1051 | path = libyoga.a; 1052 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1053 | sourceTree = BUILT_PRODUCTS_DIR; 1054 | }; 1055 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1056 | isa = PBXReferenceProxy; 1057 | fileType = archive.ar; 1058 | path = libcxxreact.a; 1059 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1060 | sourceTree = BUILT_PRODUCTS_DIR; 1061 | }; 1062 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1063 | isa = PBXReferenceProxy; 1064 | fileType = archive.ar; 1065 | path = libcxxreact.a; 1066 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1067 | sourceTree = BUILT_PRODUCTS_DIR; 1068 | }; 1069 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1070 | isa = PBXReferenceProxy; 1071 | fileType = archive.ar; 1072 | path = libjschelpers.a; 1073 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1074 | sourceTree = BUILT_PRODUCTS_DIR; 1075 | }; 1076 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1077 | isa = PBXReferenceProxy; 1078 | fileType = archive.ar; 1079 | path = libjschelpers.a; 1080 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1081 | sourceTree = BUILT_PRODUCTS_DIR; 1082 | }; 1083 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1084 | isa = PBXReferenceProxy; 1085 | fileType = archive.ar; 1086 | path = libRCTAnimation.a; 1087 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1088 | sourceTree = BUILT_PRODUCTS_DIR; 1089 | }; 1090 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1091 | isa = PBXReferenceProxy; 1092 | fileType = archive.ar; 1093 | path = libRCTAnimation.a; 1094 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1095 | sourceTree = BUILT_PRODUCTS_DIR; 1096 | }; 1097 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1098 | isa = PBXReferenceProxy; 1099 | fileType = archive.ar; 1100 | path = libRCTLinking.a; 1101 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1102 | sourceTree = BUILT_PRODUCTS_DIR; 1103 | }; 1104 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1105 | isa = PBXReferenceProxy; 1106 | fileType = archive.ar; 1107 | path = libRCTText.a; 1108 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1109 | sourceTree = BUILT_PRODUCTS_DIR; 1110 | }; 1111 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1112 | isa = PBXReferenceProxy; 1113 | fileType = archive.ar; 1114 | path = libRCTBlob.a; 1115 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1116 | sourceTree = BUILT_PRODUCTS_DIR; 1117 | }; 1118 | /* End PBXReferenceProxy section */ 1119 | 1120 | /* Begin PBXResourcesBuildPhase section */ 1121 | 00E356EC1AD99517003FC87E /* Resources */ = { 1122 | isa = PBXResourcesBuildPhase; 1123 | buildActionMask = 2147483647; 1124 | files = ( 1125 | ); 1126 | runOnlyForDeploymentPostprocessing = 0; 1127 | }; 1128 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1129 | isa = PBXResourcesBuildPhase; 1130 | buildActionMask = 2147483647; 1131 | files = ( 1132 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1133 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1134 | E8EF28568D164AC4A379C9F8 /* AntDesign.ttf in Resources */, 1135 | 6972B96E0211499DA6E606EF /* Entypo.ttf in Resources */, 1136 | BC11BCA07F1C45B28EB0F5D3 /* EvilIcons.ttf in Resources */, 1137 | 2F886C3E4BCB4FB8B7FF996D /* Feather.ttf in Resources */, 1138 | B2B013D165244A518ABD188E /* FontAwesome.ttf in Resources */, 1139 | E7E6D7B8D1384136B6216D50 /* FontAwesome5_Brands.ttf in Resources */, 1140 | 6E6EB69C798F450AAA00726E /* FontAwesome5_Regular.ttf in Resources */, 1141 | 3973754CB7954DE486ABCE6E /* FontAwesome5_Solid.ttf in Resources */, 1142 | 9D6D35C5D0B7478DBFCB81DE /* Foundation.ttf in Resources */, 1143 | FE0C7730D0044AA08101E5D3 /* Ionicons.ttf in Resources */, 1144 | E9C3DCC3C8EB48F69EE1B97E /* MaterialCommunityIcons.ttf in Resources */, 1145 | 2D3188E33ED54DB283105CE9 /* MaterialIcons.ttf in Resources */, 1146 | EC43DD7E87FA4AF295F8A9BE /* Octicons.ttf in Resources */, 1147 | 40F883EA0CA54A80B912DA61 /* SimpleLineIcons.ttf in Resources */, 1148 | A6DD0E56849942259E3E8770 /* Zocial.ttf in Resources */, 1149 | ); 1150 | runOnlyForDeploymentPostprocessing = 0; 1151 | }; 1152 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1153 | isa = PBXResourcesBuildPhase; 1154 | buildActionMask = 2147483647; 1155 | files = ( 1156 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1157 | ); 1158 | runOnlyForDeploymentPostprocessing = 0; 1159 | }; 1160 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1161 | isa = PBXResourcesBuildPhase; 1162 | buildActionMask = 2147483647; 1163 | files = ( 1164 | ); 1165 | runOnlyForDeploymentPostprocessing = 0; 1166 | }; 1167 | /* End PBXResourcesBuildPhase section */ 1168 | 1169 | /* Begin PBXShellScriptBuildPhase section */ 1170 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1171 | isa = PBXShellScriptBuildPhase; 1172 | buildActionMask = 2147483647; 1173 | files = ( 1174 | ); 1175 | inputPaths = ( 1176 | ); 1177 | name = "Bundle React Native code and images"; 1178 | outputPaths = ( 1179 | ); 1180 | runOnlyForDeploymentPostprocessing = 0; 1181 | shellPath = /bin/sh; 1182 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1183 | }; 1184 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1185 | isa = PBXShellScriptBuildPhase; 1186 | buildActionMask = 2147483647; 1187 | files = ( 1188 | ); 1189 | inputPaths = ( 1190 | ); 1191 | name = "Bundle React Native Code And Images"; 1192 | outputPaths = ( 1193 | ); 1194 | runOnlyForDeploymentPostprocessing = 0; 1195 | shellPath = /bin/sh; 1196 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1197 | }; 1198 | /* End PBXShellScriptBuildPhase section */ 1199 | 1200 | /* Begin PBXSourcesBuildPhase section */ 1201 | 00E356EA1AD99517003FC87E /* Sources */ = { 1202 | isa = PBXSourcesBuildPhase; 1203 | buildActionMask = 2147483647; 1204 | files = ( 1205 | 00E356F31AD99517003FC87E /* BooksDemoReactNativeTests.m in Sources */, 1206 | ); 1207 | runOnlyForDeploymentPostprocessing = 0; 1208 | }; 1209 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1210 | isa = PBXSourcesBuildPhase; 1211 | buildActionMask = 2147483647; 1212 | files = ( 1213 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1214 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1215 | ); 1216 | runOnlyForDeploymentPostprocessing = 0; 1217 | }; 1218 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1219 | isa = PBXSourcesBuildPhase; 1220 | buildActionMask = 2147483647; 1221 | files = ( 1222 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1223 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1224 | ); 1225 | runOnlyForDeploymentPostprocessing = 0; 1226 | }; 1227 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1228 | isa = PBXSourcesBuildPhase; 1229 | buildActionMask = 2147483647; 1230 | files = ( 1231 | 2DCD954D1E0B4F2C00145EB5 /* BooksDemoReactNativeTests.m in Sources */, 1232 | ); 1233 | runOnlyForDeploymentPostprocessing = 0; 1234 | }; 1235 | /* End PBXSourcesBuildPhase section */ 1236 | 1237 | /* Begin PBXTargetDependency section */ 1238 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1239 | isa = PBXTargetDependency; 1240 | target = 13B07F861A680F5B00A75B9A /* BooksDemoReactNative */; 1241 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1242 | }; 1243 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1244 | isa = PBXTargetDependency; 1245 | target = 2D02E47A1E0B4A5D006451C7 /* BooksDemoReactNative-tvOS */; 1246 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1247 | }; 1248 | /* End PBXTargetDependency section */ 1249 | 1250 | /* Begin PBXVariantGroup section */ 1251 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1252 | isa = PBXVariantGroup; 1253 | children = ( 1254 | 13B07FB21A68108700A75B9A /* Base */, 1255 | ); 1256 | name = LaunchScreen.xib; 1257 | path = BooksDemoReactNative; 1258 | sourceTree = ""; 1259 | }; 1260 | /* End PBXVariantGroup section */ 1261 | 1262 | /* Begin XCBuildConfiguration section */ 1263 | 00E356F61AD99517003FC87E /* Debug */ = { 1264 | isa = XCBuildConfiguration; 1265 | buildSettings = { 1266 | BUNDLE_LOADER = "$(TEST_HOST)"; 1267 | GCC_PREPROCESSOR_DEFINITIONS = ( 1268 | "DEBUG=1", 1269 | "$(inherited)", 1270 | ); 1271 | INFOPLIST_FILE = BooksDemoReactNativeTests/Info.plist; 1272 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1273 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1274 | OTHER_LDFLAGS = ( 1275 | "-ObjC", 1276 | "-lc++", 1277 | ); 1278 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1279 | PRODUCT_NAME = "$(TARGET_NAME)"; 1280 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BooksDemoReactNative.app/BooksDemoReactNative"; 1281 | LIBRARY_SEARCH_PATHS = ( 1282 | "$(inherited)", 1283 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1284 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1285 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1286 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1287 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1288 | ); 1289 | HEADER_SEARCH_PATHS = ( 1290 | "$(inherited)", 1291 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1292 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1293 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1294 | ); 1295 | }; 1296 | name = Debug; 1297 | }; 1298 | 00E356F71AD99517003FC87E /* Release */ = { 1299 | isa = XCBuildConfiguration; 1300 | buildSettings = { 1301 | BUNDLE_LOADER = "$(TEST_HOST)"; 1302 | COPY_PHASE_STRIP = NO; 1303 | INFOPLIST_FILE = BooksDemoReactNativeTests/Info.plist; 1304 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1305 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1306 | OTHER_LDFLAGS = ( 1307 | "-ObjC", 1308 | "-lc++", 1309 | ); 1310 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1311 | PRODUCT_NAME = "$(TARGET_NAME)"; 1312 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BooksDemoReactNative.app/BooksDemoReactNative"; 1313 | LIBRARY_SEARCH_PATHS = ( 1314 | "$(inherited)", 1315 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1316 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1317 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1318 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1319 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1320 | ); 1321 | HEADER_SEARCH_PATHS = ( 1322 | "$(inherited)", 1323 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1324 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1325 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1326 | ); 1327 | }; 1328 | name = Release; 1329 | }; 1330 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1331 | isa = XCBuildConfiguration; 1332 | buildSettings = { 1333 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1334 | CURRENT_PROJECT_VERSION = 1; 1335 | DEAD_CODE_STRIPPING = NO; 1336 | INFOPLIST_FILE = BooksDemoReactNative/Info.plist; 1337 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1338 | OTHER_LDFLAGS = ( 1339 | "$(inherited)", 1340 | "-ObjC", 1341 | "-lc++", 1342 | ); 1343 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1344 | PRODUCT_NAME = BooksDemoReactNative; 1345 | VERSIONING_SYSTEM = "apple-generic"; 1346 | HEADER_SEARCH_PATHS = ( 1347 | "$(inherited)", 1348 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1349 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1350 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1351 | ); 1352 | }; 1353 | name = Debug; 1354 | }; 1355 | 13B07F951A680F5B00A75B9A /* Release */ = { 1356 | isa = XCBuildConfiguration; 1357 | buildSettings = { 1358 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1359 | CURRENT_PROJECT_VERSION = 1; 1360 | INFOPLIST_FILE = BooksDemoReactNative/Info.plist; 1361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1362 | OTHER_LDFLAGS = ( 1363 | "$(inherited)", 1364 | "-ObjC", 1365 | "-lc++", 1366 | ); 1367 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1368 | PRODUCT_NAME = BooksDemoReactNative; 1369 | VERSIONING_SYSTEM = "apple-generic"; 1370 | HEADER_SEARCH_PATHS = ( 1371 | "$(inherited)", 1372 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1373 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1374 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1375 | ); 1376 | }; 1377 | name = Release; 1378 | }; 1379 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1380 | isa = XCBuildConfiguration; 1381 | buildSettings = { 1382 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1383 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1384 | CLANG_ANALYZER_NONNULL = YES; 1385 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1386 | CLANG_WARN_INFINITE_RECURSION = YES; 1387 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1388 | DEBUG_INFORMATION_FORMAT = dwarf; 1389 | ENABLE_TESTABILITY = YES; 1390 | GCC_NO_COMMON_BLOCKS = YES; 1391 | INFOPLIST_FILE = "BooksDemoReactNative-tvOS/Info.plist"; 1392 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1393 | OTHER_LDFLAGS = ( 1394 | "-ObjC", 1395 | "-lc++", 1396 | ); 1397 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.BooksDemoReactNative-tvOS"; 1398 | PRODUCT_NAME = "$(TARGET_NAME)"; 1399 | SDKROOT = appletvos; 1400 | TARGETED_DEVICE_FAMILY = 3; 1401 | TVOS_DEPLOYMENT_TARGET = 9.2; 1402 | LIBRARY_SEARCH_PATHS = ( 1403 | "$(inherited)", 1404 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1405 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1406 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1407 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1408 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1409 | ); 1410 | HEADER_SEARCH_PATHS = ( 1411 | "$(inherited)", 1412 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1413 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1414 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1415 | ); 1416 | }; 1417 | name = Debug; 1418 | }; 1419 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1420 | isa = XCBuildConfiguration; 1421 | buildSettings = { 1422 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1423 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1424 | CLANG_ANALYZER_NONNULL = YES; 1425 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1426 | CLANG_WARN_INFINITE_RECURSION = YES; 1427 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1428 | COPY_PHASE_STRIP = NO; 1429 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1430 | GCC_NO_COMMON_BLOCKS = YES; 1431 | INFOPLIST_FILE = "BooksDemoReactNative-tvOS/Info.plist"; 1432 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1433 | OTHER_LDFLAGS = ( 1434 | "-ObjC", 1435 | "-lc++", 1436 | ); 1437 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.BooksDemoReactNative-tvOS"; 1438 | PRODUCT_NAME = "$(TARGET_NAME)"; 1439 | SDKROOT = appletvos; 1440 | TARGETED_DEVICE_FAMILY = 3; 1441 | TVOS_DEPLOYMENT_TARGET = 9.2; 1442 | LIBRARY_SEARCH_PATHS = ( 1443 | "$(inherited)", 1444 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1445 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1446 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1447 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1448 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1449 | ); 1450 | HEADER_SEARCH_PATHS = ( 1451 | "$(inherited)", 1452 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1453 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1454 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1455 | ); 1456 | }; 1457 | name = Release; 1458 | }; 1459 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1460 | isa = XCBuildConfiguration; 1461 | buildSettings = { 1462 | BUNDLE_LOADER = "$(TEST_HOST)"; 1463 | CLANG_ANALYZER_NONNULL = YES; 1464 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1465 | CLANG_WARN_INFINITE_RECURSION = YES; 1466 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1467 | DEBUG_INFORMATION_FORMAT = dwarf; 1468 | ENABLE_TESTABILITY = YES; 1469 | GCC_NO_COMMON_BLOCKS = YES; 1470 | INFOPLIST_FILE = "BooksDemoReactNative-tvOSTests/Info.plist"; 1471 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1472 | OTHER_LDFLAGS = ( 1473 | "-ObjC", 1474 | "-lc++", 1475 | ); 1476 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.BooksDemoReactNative-tvOSTests"; 1477 | PRODUCT_NAME = "$(TARGET_NAME)"; 1478 | SDKROOT = appletvos; 1479 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BooksDemoReactNative-tvOS.app/BooksDemoReactNative-tvOS"; 1480 | TVOS_DEPLOYMENT_TARGET = 10.1; 1481 | LIBRARY_SEARCH_PATHS = ( 1482 | "$(inherited)", 1483 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1484 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1485 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1486 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1487 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1488 | ); 1489 | HEADER_SEARCH_PATHS = ( 1490 | "$(inherited)", 1491 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1492 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1493 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1494 | ); 1495 | }; 1496 | name = Debug; 1497 | }; 1498 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1499 | isa = XCBuildConfiguration; 1500 | buildSettings = { 1501 | BUNDLE_LOADER = "$(TEST_HOST)"; 1502 | CLANG_ANALYZER_NONNULL = YES; 1503 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1504 | CLANG_WARN_INFINITE_RECURSION = YES; 1505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1506 | COPY_PHASE_STRIP = NO; 1507 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1508 | GCC_NO_COMMON_BLOCKS = YES; 1509 | INFOPLIST_FILE = "BooksDemoReactNative-tvOSTests/Info.plist"; 1510 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1511 | OTHER_LDFLAGS = ( 1512 | "-ObjC", 1513 | "-lc++", 1514 | ); 1515 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.BooksDemoReactNative-tvOSTests"; 1516 | PRODUCT_NAME = "$(TARGET_NAME)"; 1517 | SDKROOT = appletvos; 1518 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/BooksDemoReactNative-tvOS.app/BooksDemoReactNative-tvOS"; 1519 | TVOS_DEPLOYMENT_TARGET = 10.1; 1520 | LIBRARY_SEARCH_PATHS = ( 1521 | "$(inherited)", 1522 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1523 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1524 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1525 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1526 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1527 | ); 1528 | HEADER_SEARCH_PATHS = ( 1529 | "$(inherited)", 1530 | "$(SRCROOT)/../node_modules/react-native-gesture-handler/ios/**", 1531 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1532 | "$(SRCROOT)/../node_modules/@react-native-community/async-storage/ios", 1533 | ); 1534 | }; 1535 | name = Release; 1536 | }; 1537 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1538 | isa = XCBuildConfiguration; 1539 | buildSettings = { 1540 | ALWAYS_SEARCH_USER_PATHS = NO; 1541 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1542 | CLANG_CXX_LIBRARY = "libc++"; 1543 | CLANG_ENABLE_MODULES = YES; 1544 | CLANG_ENABLE_OBJC_ARC = YES; 1545 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1546 | CLANG_WARN_BOOL_CONVERSION = YES; 1547 | CLANG_WARN_COMMA = YES; 1548 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1549 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1550 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1551 | CLANG_WARN_EMPTY_BODY = YES; 1552 | CLANG_WARN_ENUM_CONVERSION = YES; 1553 | CLANG_WARN_INFINITE_RECURSION = YES; 1554 | CLANG_WARN_INT_CONVERSION = YES; 1555 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1556 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1557 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1558 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1559 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1560 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1561 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1562 | CLANG_WARN_UNREACHABLE_CODE = YES; 1563 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1564 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1565 | COPY_PHASE_STRIP = NO; 1566 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1567 | ENABLE_TESTABILITY = YES; 1568 | GCC_C_LANGUAGE_STANDARD = gnu99; 1569 | GCC_DYNAMIC_NO_PIC = NO; 1570 | GCC_NO_COMMON_BLOCKS = YES; 1571 | GCC_OPTIMIZATION_LEVEL = 0; 1572 | GCC_PREPROCESSOR_DEFINITIONS = ( 1573 | "DEBUG=1", 1574 | "$(inherited)", 1575 | ); 1576 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1577 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1578 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1579 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1580 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1581 | GCC_WARN_UNUSED_FUNCTION = YES; 1582 | GCC_WARN_UNUSED_VARIABLE = YES; 1583 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1584 | MTL_ENABLE_DEBUG_INFO = YES; 1585 | ONLY_ACTIVE_ARCH = YES; 1586 | SDKROOT = iphoneos; 1587 | }; 1588 | name = Debug; 1589 | }; 1590 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1591 | isa = XCBuildConfiguration; 1592 | buildSettings = { 1593 | ALWAYS_SEARCH_USER_PATHS = NO; 1594 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1595 | CLANG_CXX_LIBRARY = "libc++"; 1596 | CLANG_ENABLE_MODULES = YES; 1597 | CLANG_ENABLE_OBJC_ARC = YES; 1598 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1599 | CLANG_WARN_BOOL_CONVERSION = YES; 1600 | CLANG_WARN_COMMA = YES; 1601 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1602 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1603 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1604 | CLANG_WARN_EMPTY_BODY = YES; 1605 | CLANG_WARN_ENUM_CONVERSION = YES; 1606 | CLANG_WARN_INFINITE_RECURSION = YES; 1607 | CLANG_WARN_INT_CONVERSION = YES; 1608 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1609 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1610 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1611 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1612 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1613 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1614 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1615 | CLANG_WARN_UNREACHABLE_CODE = YES; 1616 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1617 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1618 | COPY_PHASE_STRIP = YES; 1619 | ENABLE_NS_ASSERTIONS = NO; 1620 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1621 | GCC_C_LANGUAGE_STANDARD = gnu99; 1622 | GCC_NO_COMMON_BLOCKS = YES; 1623 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1624 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1625 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1626 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1627 | GCC_WARN_UNUSED_FUNCTION = YES; 1628 | GCC_WARN_UNUSED_VARIABLE = YES; 1629 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1630 | MTL_ENABLE_DEBUG_INFO = NO; 1631 | SDKROOT = iphoneos; 1632 | VALIDATE_PRODUCT = YES; 1633 | }; 1634 | name = Release; 1635 | }; 1636 | /* End XCBuildConfiguration section */ 1637 | 1638 | /* Begin XCConfigurationList section */ 1639 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "BooksDemoReactNativeTests" */ = { 1640 | isa = XCConfigurationList; 1641 | buildConfigurations = ( 1642 | 00E356F61AD99517003FC87E /* Debug */, 1643 | 00E356F71AD99517003FC87E /* Release */, 1644 | ); 1645 | defaultConfigurationIsVisible = 0; 1646 | defaultConfigurationName = Release; 1647 | }; 1648 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "BooksDemoReactNative" */ = { 1649 | isa = XCConfigurationList; 1650 | buildConfigurations = ( 1651 | 13B07F941A680F5B00A75B9A /* Debug */, 1652 | 13B07F951A680F5B00A75B9A /* Release */, 1653 | ); 1654 | defaultConfigurationIsVisible = 0; 1655 | defaultConfigurationName = Release; 1656 | }; 1657 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "BooksDemoReactNative-tvOS" */ = { 1658 | isa = XCConfigurationList; 1659 | buildConfigurations = ( 1660 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1661 | 2D02E4981E0B4A5E006451C7 /* Release */, 1662 | ); 1663 | defaultConfigurationIsVisible = 0; 1664 | defaultConfigurationName = Release; 1665 | }; 1666 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "BooksDemoReactNative-tvOSTests" */ = { 1667 | isa = XCConfigurationList; 1668 | buildConfigurations = ( 1669 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1670 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1671 | ); 1672 | defaultConfigurationIsVisible = 0; 1673 | defaultConfigurationName = Release; 1674 | }; 1675 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "BooksDemoReactNative" */ = { 1676 | isa = XCConfigurationList; 1677 | buildConfigurations = ( 1678 | 83CBBA201A601CBA00E9B192 /* Debug */, 1679 | 83CBBA211A601CBA00E9B192 /* Release */, 1680 | ); 1681 | defaultConfigurationIsVisible = 0; 1682 | defaultConfigurationName = Release; 1683 | }; 1684 | /* End XCConfigurationList section */ 1685 | }; 1686 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1687 | } 1688 | -------------------------------------------------------------------------------- /ios/BooksDemoReactNative.xcodeproj/xcshareddata/xcschemes/BooksDemoReactNative-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/BooksDemoReactNative.xcodeproj/xcshareddata/xcschemes/BooksDemoReactNative.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/BooksDemoReactNative/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 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/BooksDemoReactNative/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 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:@"BooksDemoReactNative" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [UIColor blackColor]; 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/BooksDemoReactNative/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/BooksDemoReactNative/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/BooksDemoReactNative/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/BooksDemoReactNative/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | BooksDemoReactNative 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSAppTransportSecurity 44 | 45 | NSAllowsArbitraryLoads 46 | 47 | NSExceptionDomains 48 | 49 | localhost 50 | 51 | NSExceptionAllowsInsecureHTTPLoads 52 | 53 | 54 | 55 | 56 | UIAppFonts 57 | 58 | AntDesign.ttf 59 | Entypo.ttf 60 | EvilIcons.ttf 61 | Feather.ttf 62 | FontAwesome.ttf 63 | FontAwesome5_Brands.ttf 64 | FontAwesome5_Regular.ttf 65 | FontAwesome5_Solid.ttf 66 | Foundation.ttf 67 | Ionicons.ttf 68 | MaterialCommunityIcons.ttf 69 | MaterialIcons.ttf 70 | Octicons.ttf 71 | SimpleLineIcons.ttf 72 | Zocial.ttf 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ios/BooksDemoReactNative/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 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/BooksDemoReactNativeTests/BooksDemoReactNativeTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 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 BooksDemoReactNativeTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation BooksDemoReactNativeTests 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 | -------------------------------------------------------------------------------- /ios/BooksDemoReactNativeTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /lib/app/App.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | import { 4 | createStackNavigator, 5 | createSwitchNavigator, 6 | createAppContainer 7 | } from "react-navigation"; 8 | import HomeScreen from "../screen/home"; 9 | import LoginScreen from "../screen/login"; 10 | import SignUpScreen from "../screen/signup"; 11 | 12 | import LoadingPage from "../screen/loading"; 13 | import React, { Component } from "react"; 14 | 15 | const AppStack = createStackNavigator( 16 | { 17 | Home: HomeScreen 18 | }, 19 | { 20 | initialRouteName: "Home", 21 | headerMode: "none" 22 | } 23 | ); 24 | 25 | const AuthStack = createStackNavigator( 26 | { 27 | Login: LoginScreen, 28 | SignUp: SignUpScreen 29 | }, 30 | { 31 | initialRouteName: "Login", 32 | headerMode: "none" 33 | } 34 | ); 35 | const RootSwitch = createSwitchNavigator( 36 | { 37 | Loading: LoadingPage, 38 | Auth: AuthStack, 39 | App: AppStack 40 | }, 41 | { 42 | initialRouteName: "Loading", 43 | headerMode: "none" 44 | } 45 | ); 46 | 47 | const App = createAppContainer(RootSwitch); 48 | export default App; 49 | 50 | const AppContainer = createAppContainer(RootSwitch); 51 | // export default class App extends Component { 52 | // render() { 53 | // return ; 54 | // } 55 | // } 56 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BooksDemo", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "build": "babel src/ -d lib/", 7 | "prepublish": "npm run build", 8 | "start": "node node_modules/react-native/local-cli/cli.js start", 9 | "test": "jest", 10 | "reset-start": "npm start -- --reset-cache", 11 | "clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean", 12 | "clean-start": "npm run clean && npm run rc-start", 13 | "fresh-install": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && npm cache clean && npm install", 14 | "fresh-start": "npm run fresh-install && npm run rc-start", 15 | "tron": "node_modules/.bin/reactotron", 16 | "storybook": "watch rnstl ./src --wait=100 | storybook start | yarn start --projectRoot storybook --watchFolders $PWD" 17 | }, 18 | "dependencies": { 19 | "@react-native-community/async-storage": "^1.3.3", 20 | "await-to-js": "^2.1.1", 21 | "axios": "^0.18.1", 22 | "react": "16.8.6", 23 | "react-native": "^0.59.6", 24 | "react-native-config": "^0.11.7", 25 | "react-native-elements": "^1.1.0", 26 | "react-native-gesture-handler": "^1.1.0", 27 | "react-native-vector-icons": "^6.4.2", 28 | "react-navigation": "^3.9.1", 29 | "styled-components": "^4.2.0" 30 | }, 31 | "devDependencies": { 32 | "@storybook/addon-actions": "^5.0.10", 33 | "@storybook/addon-links": "^5.0.10", 34 | "@storybook/addons": "^5.0.10", 35 | "babel-cli": "^6.26.0", 36 | "babel-core": "^7.0.0-bridge.0", 37 | "babel-eslint": "^10.0.1", 38 | "babel-jest": "24.7.1", 39 | "babel-preset-react-native": "^5", 40 | "babel-runtime": "^6.26.0", 41 | "eslint": "^5.16.0", 42 | "eslint-plugin-react-native": "^3.7.0", 43 | "jest": "24.7.1", 44 | "metro-react-native-babel-preset": "0.53.1", 45 | "prop-types": "^15.7.2", 46 | "react-dom": "16.8.6", 47 | "react-test-renderer": "16.8.6" 48 | }, 49 | "jest": { 50 | "preset": "react-native" 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/app/App.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | import {createAppContainer, createStackNavigator, createSwitchNavigator} from "react-navigation"; 4 | import HomeScreen from "../screen/home"; 5 | import LoginScreen from "../screen/login"; 6 | import SignUpScreen from "../screen/signup"; 7 | 8 | import LoadingPage from "../screen/loading"; 9 | import React from "react"; 10 | 11 | const AppStack = createStackNavigator( 12 | { 13 | Home: HomeScreen 14 | }, 15 | { 16 | initialRouteName: "Home", 17 | headerMode: "none" 18 | } 19 | ); 20 | 21 | const AuthStack = createStackNavigator( 22 | { 23 | Login: LoginScreen, 24 | SignUp: SignUpScreen 25 | }, 26 | { 27 | initialRouteName: "Login", 28 | headerMode: "none" 29 | } 30 | ); 31 | const RootSwitch = createSwitchNavigator( 32 | { 33 | Loading: LoadingPage, 34 | Auth: AuthStack, 35 | App: AppStack 36 | }, 37 | { 38 | initialRouteName: "Loading", 39 | headerMode: "none" 40 | } 41 | ); 42 | 43 | const App = createAppContainer(RootSwitch); 44 | export default App; 45 | 46 | const AppContainer = createAppContainer(RootSwitch); 47 | 48 | -------------------------------------------------------------------------------- /src/screen/home.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | * @flow 7 | */ 8 | "use strict"; 9 | 10 | 11 | import React, {Component} from "react"; 12 | import {_get} from "../shared/api/server"; 13 | import bindAll, {basicState} from "../shared/util/Statehelper"; 14 | import {ActivityIndicator, FlatList, StyleSheet, View} from "react-native"; 15 | import {colors} from "../shared/constant/constant"; 16 | import {MyListItem} from "../view/myListItem"; 17 | 18 | export default class HomeScreen extends Component { 19 | static navigationOptions = { 20 | title: "Books" 21 | }; 22 | 23 | constructor(props) { 24 | super(props); 25 | this.state = { 26 | ...basicState, 27 | data: [] 28 | }; 29 | } 30 | 31 | componentDidMount() { 32 | bindAll(this); 33 | this._getFood(); 34 | } 35 | 36 | _getFood = async () => { 37 | let that = this; 38 | try { 39 | this.loading(); 40 | let result = await _get(`books`); 41 | //console.log("_retrieveFood "+JSON.stringify(result)); 42 | if (result) { 43 | that.notLoading(); 44 | that.setState({ 45 | data: result 46 | }); 47 | } 48 | } catch (error) { 49 | console.log(error); 50 | } 51 | }; 52 | 53 | _keyExtractor = (item, index) => item.id; 54 | _onPressItem = (id: string) => { 55 | // updater functions are preferred for transactional updates 56 | this.setState((state) => { 57 | // copy the map rather than modifying state. 58 | const selected = new Map(state.selected); 59 | selected.set(id, !selected.get(id)); // toggle 60 | return {selected}; 61 | }); 62 | }; 63 | _renderItem = ({item}) => ( 64 | 69 | ); 70 | 71 | 72 | render() { 73 | console.log(JSON.stringify(this.state.data)); 74 | if (this.state.loading) { 75 | return ( 76 | 77 | 78 | 79 | ); 80 | } else { 81 | return ( 82 | 83 | 89 | 90 | ); 91 | } 92 | } 93 | } 94 | 95 | const styles = StyleSheet.create({ 96 | content: { 97 | alignItems: "center", 98 | display: "flex", 99 | justifyContent: "center", 100 | height: "100%", 101 | backgroundColor: colors.WHITE 102 | }, 103 | 104 | listContainer: { 105 | display: "flex", 106 | backgroundColor: colors.WHITE, 107 | flex: 1, 108 | justifyContent: "space-between", 109 | alignItems: "stretch", 110 | marginTop: 30, 111 | padding: 16, 112 | } 113 | }); 114 | -------------------------------------------------------------------------------- /src/screen/loading.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from "react"; 2 | import AsyncStorage from "@react-native-community/async-storage"; 3 | import {ActivityIndicator, StyleSheet, View} from "react-native"; 4 | import {colors} from "../shared/constant/constant"; 5 | 6 | export default class LoadingPage extends Component { 7 | constructor(props) { 8 | super(props); 9 | } 10 | 11 | componentDidMount() { 12 | setTimeout(e => { 13 | this._bootstrap(); 14 | }, 500); 15 | } 16 | 17 | _bootstrap = async () => { 18 | let token = await AsyncStorage.getItem("token"); 19 | this.props.navigation.navigate(token ? "App" : "Auth"); 20 | }; 21 | 22 | render() { 23 | return ( 24 | 25 | 26 | 27 | ); 28 | } 29 | } 30 | 31 | const styles = StyleSheet.create({ 32 | loadingPage: { 33 | display: "flex", 34 | alignItems: "center", 35 | justifyContent: "center", 36 | height: "100%", 37 | backgroundColor: colors.WHITE 38 | } 39 | }); 40 | -------------------------------------------------------------------------------- /src/screen/login.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | import React, {Component} from "react"; 4 | import AsyncStorage from "@react-native-community/async-storage"; 5 | import {ActivityIndicator, Button, Keyboard, StyleSheet, Text, TextInput, View} from "react-native"; 6 | import bindAll, {basicState} from "../shared/util/Statehelper"; 7 | import {colors, sizes} from "../shared/constant/constant"; 8 | import {url} from "../shared/constant/credential"; 9 | import axios from "axios"; 10 | import to from "await-to-js"; 11 | 12 | export default class LoginScreen extends Component { 13 | constructor(props) { 14 | super(props); 15 | this.state = { 16 | ...basicState, 17 | email: "", 18 | password: "" 19 | }; 20 | } 21 | 22 | componentDidMount() { 23 | bindAll(this); 24 | } 25 | 26 | _signUp() { 27 | this.props.navigation.navigate("SignUp"); 28 | } 29 | 30 | _login = async () => { 31 | if (!this.state.userName && !this.state.password) return false; 32 | this.loading(); 33 | let payload = { 34 | email: this.state.email.toLowerCase(), 35 | password: this.state.password 36 | }; 37 | 38 | let [error, result] = await to(axios.post(`${url}login`, payload)); 39 | console.log(error, JSON.stringify(result)); 40 | this.notLoading(); 41 | if (error) { 42 | alert(error.response); 43 | } else { 44 | await AsyncStorage.setItem("token", result.data.token); 45 | this.props.navigation.navigate("Main"); 46 | 47 | } 48 | }; 49 | 50 | render() { 51 | if (this.state.loading) { 52 | return ( 53 | 54 | 55 | 56 | ); 57 | } else { 58 | return ( 59 | 60 | Email 61 | this.setState({email})} 64 | onBlur={e => Keyboard.dismiss()} 65 | /> 66 | Password 67 | this.setState({password})} 71 | onBlur={e => Keyboard.dismiss()} 72 | /> 73 | 74 | 75 | 20 | )) 21 | .add('with some emoji', () => ( 22 | 25 | )); 26 | --------------------------------------------------------------------------------