├── .eslintrc.js ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── app.json ├── assets ├── icon.png ├── logo.png └── splash.png ├── babel.config.js ├── example ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── 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 │ │ │ └── index.android.bundle │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── 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 ├── assets │ ├── cryptocurrency │ │ ├── AquariusCoin.png │ │ ├── Augur.png │ │ ├── BitConnect.png │ │ ├── BitShares.png │ │ ├── Bitcoin.png │ │ ├── ByteCoin.png │ │ ├── Dash.png │ │ ├── Decred.png │ │ ├── EOS.png │ │ ├── Ethereum.png │ │ ├── Golem.png │ │ ├── IOTA.png │ │ ├── Iconomi.png │ │ ├── LanaCoin.png │ │ ├── Litecoin.png │ │ ├── Monero.png │ │ ├── NEM.png │ │ ├── Netko-coin.png │ │ ├── NevaCoin.png │ │ ├── Ripple.png │ │ ├── Siacoin.png │ │ ├── Steem.png │ │ ├── Stratis.png │ │ ├── Suncontract.png │ │ ├── TajCoin.png │ │ ├── Waves.png │ │ ├── Xaurum.png │ │ ├── Zcash.png │ │ └── default.png │ └── states │ │ ├── state.jpg │ │ ├── state2.jpg │ │ └── state3.jpg ├── babel.config.js ├── index.js ├── ios │ ├── example-tvOS │ │ └── Info.plist │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── example-tvOS.xcscheme │ │ │ └── example.xcscheme │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── metro.config.js ├── package.json ├── src │ └── data │ │ └── staticData.js └── yarn.lock ├── lib └── src │ └── components │ └── CustomLayoutAnimations.js └── package.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: "babel-eslint", 3 | extends: "airbnb", 4 | plugins: ["react", "react-native"], 5 | env: { 6 | jest: true, 7 | "react-native/react-native": true 8 | }, 9 | rules: { 10 | // allow js file extension 11 | "react/jsx-filename-extension": [ 12 | "error", 13 | { 14 | extensions: [".js", ".jsx"] 15 | } 16 | ], 17 | // for post defining style object in react-native 18 | "no-use-before-define": ["error", { variables: false }], 19 | // react-native rules 20 | "react-native/no-unused-styles": 2, 21 | "react-native/split-platform-components": 2, 22 | "react-native/no-inline-styles": 2, 23 | "react-native/no-raw-text": 2 24 | } 25 | }; 26 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | open-pull-requests-limit: 10 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | package-lock.json 6 | 7 | node_modules 8 | 9 | # Xcode 10 | # 11 | build/ 12 | *.pbxuser 13 | !default.pbxuser 14 | *.mode1v3 15 | !default.mode1v3 16 | *.mode2v3 17 | !default.mode2v3 18 | *.perspectivev3 19 | !default.perspectivev3 20 | xcuserdata 21 | *.xccheckout 22 | *.moved-aside 23 | DerivedData 24 | *.hmap 25 | *.ipa 26 | *.xcuserstate 27 | project.xcworkspace 28 | 29 | # Android/IntelliJ 30 | # 31 | build/ 32 | .idea 33 | .gradle 34 | local.properties 35 | *.iml 36 | 37 | # node.js 38 | # 39 | node_modules/ 40 | npm-debug.log 41 | yarn-error.log 42 | 43 | # BUCK 44 | buck-out/ 45 | \.buckd/ 46 | *.keystore 47 | 48 | # fastlane 49 | # 50 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 51 | # screenshots whenever they are needed. 52 | # For more information about the recommended setup visit: 53 | # https://docs.fastlane.tools/best-practices/source-control/ 54 | 55 | */fastlane/report.xml 56 | */fastlane/Preview.html 57 | */fastlane/screenshots 58 | 59 | # Bundle artifact 60 | *.jsbundle 61 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Node Modules 2 | **/node_modules 3 | node_modules 4 | # Example 5 | example 6 | # Assets 7 | Assets 8 | assets -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 FreakyCoder 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | React Native Animation Layout 2 | 3 | Custom & Ready to GO partially customizable Animation Layouts for React Native. 4 | 5 | [![npm version](https://img.shields.io/npm/v/react-native-animation-layout.svg)](https://www.npmjs.com/package/react-native-animation-layout) 6 | [![npm](https://img.shields.io/npm/dt/react-native-animation-layout.svg)](https://www.npmjs.com/package/react-native-animation-layout) 7 | ![Platform - Android and iOS](https://img.shields.io/badge/platform-Android%20%7C%20iOS-blue.svg) 8 | [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) 9 | [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) 10 | 11 |

12 | React Native Animation Layout 13 |

14 | 15 | ## Installation 16 | 17 | Add the dependency: 18 | 19 | ### React Native: 20 | 21 | ```ruby 22 | npm i react-native-animation-layout 23 | ``` 24 | 25 | 26 | ## Peer Dependencies 27 | 28 | ###### IMPORTANT! You need install them. 29 | 30 | ``` 31 | "react": ">= 16.x.x", 32 | "react-native": ">= 0.55.x", 33 | ``` 34 | 35 | ## Important Note for Android : 36 | If you want to use LayoutAnimation on Android, you need to enable LayoutAnimations for Android. Here is how to do it: 37 | 38 | ```ruby 39 | import {UIManager} from 'react-native'; 40 | 41 | constructor() { 42 | super(); 43 | 44 | if (Platform.OS === 'android') { 45 | UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true); 46 | } 47 | } 48 | ``` 49 | 50 | ## Basic Usage 51 | 52 | ```ruby 53 | import { CustomLayoutSpring } from "react-native-animation-layout"; 54 | 55 | // Simpliest way of adding the layout animation 56 | componentWillUpdate() { 57 | LayoutAnimation.configureNext(CustomLayoutSpring()); 58 | } 59 | 60 | OR 61 | 62 | // Put this code where you need to update your list or component 63 | LayoutAnimation.configureNext(CustomLayoutSpring()); 64 | 65 | ``` 66 | 67 | ## Configuration - Props 68 | 69 | ### CustomLayoutSpring: 70 | 71 | 72 | | Property | Type | Default | Description | 73 | | ------------------- | :-------: | :---------------: | --------------------------------------------------------------------------------- | 74 | | duration | number | 700 | change the animation duration as millisecond | 75 | | springDamping | number | 13 | change the font size | 76 | 77 | ### CustomLayoutLinear : 78 | 79 | 80 | | Property | Type | Default | Description | 81 | | ------------------- | :-------: | :---------------: | --------------------------------------------------------------------------------- | 82 | | duration | number | 700 | change the animation duration as millisecond | 83 | 84 | 85 | 86 | ### ToDos 87 | 88 | - [x] LICENSE 89 | - [ ] Write an article about the lib on Medium 90 | 91 | 92 | ## Author 93 | 94 | FreakyCoder, kurayogun@gmail.com 95 | 96 | ## License 97 | 98 | React Native Animation Layout Library is available under the MIT license. See the LICENSE file for more info. 99 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "name": "react-native-animation-layout", 4 | "slug": "react-native-animation-layout", 5 | "privacy": "public", 6 | "sdkVersion": "32.0.0", 7 | "platforms": [ 8 | "ios", 9 | "android" 10 | ], 11 | "version": "1.0.0", 12 | "orientation": "portrait", 13 | "icon": "./assets/icon.png", 14 | "splash": { 15 | "image": "./assets/splash.png", 16 | "resizeMode": "contain", 17 | "backgroundColor": "#ffffff" 18 | }, 19 | "updates": { 20 | "fallbackToCacheTimeout": 0 21 | }, 22 | "assetBundlePatterns": [ 23 | "**/*" 24 | ], 25 | "ios": { 26 | "supportsTablet": true 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/assets/icon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/assets/logo.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | 28 | [options] 29 | emoji=true 30 | 31 | esproposal.optional_chaining=enable 32 | esproposal.nullish_coalescing=enable 33 | 34 | module.system=haste 35 | module.system.haste.use_name_reducers=true 36 | # get basename 37 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 38 | # strip .js or .js.flow suffix 39 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 40 | # strip .ios suffix 41 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 42 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 44 | module.system.haste.paths.blacklist=.*/__tests__/.* 45 | module.system.haste.paths.blacklist=.*/__mocks__/.* 46 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 47 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 48 | 49 | munge_underscores=true 50 | 51 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 52 | 53 | module.file_ext=.js 54 | module.file_ext=.jsx 55 | module.file_ext=.json 56 | module.file_ext=.native.js 57 | 58 | suppress_type=$FlowIssue 59 | suppress_type=$FlowFixMe 60 | suppress_type=$FlowFixMeProps 61 | suppress_type=$FlowFixMeState 62 | 63 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 67 | 68 | [version] 69 | ^0.92.0 70 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.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 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import { 3 | FlatList, 4 | LayoutAnimation, 5 | SafeAreaView, 6 | StatusBar, 7 | Platform, 8 | Dimensions, 9 | View 10 | } from "react-native"; 11 | import GradientCard from "react-native-gradient-card-view"; 12 | import { LineChart } from "react-native-svg-charts"; 13 | import SearchBar from "react-native-dynamic-search-bar"; 14 | import { 15 | CustomLayoutLinear, 16 | CustomLayoutSpring, 17 | CustomLayoutEaseIn, 18 | CustomLayoutEaseOut, 19 | CustomLayoutKeyboard, 20 | CustomLayoutEaseInEaseOut 21 | } from "react-native-animation-layout"; 22 | import { UIManager } from "react-native"; 23 | 24 | // Static Data 25 | import staticData from "./src/data/staticData"; 26 | 27 | const { width } = Dimensions.get("window"); 28 | 29 | export default class App extends Component { 30 | constructor(props) { 31 | super(props); 32 | this.state = { 33 | query: "", 34 | dataSource: staticData, 35 | dataBackup: staticData, 36 | isLoading: true, 37 | page: 1, 38 | seed: 1, 39 | refreshing: false 40 | }; 41 | if (Platform.OS === "android") { 42 | UIManager.setLayoutAnimationEnabledExperimental && 43 | UIManager.setLayoutAnimationEnabledExperimental(true); 44 | } 45 | } 46 | 47 | filterList = text => { 48 | var newData = this.state.dataBackup; 49 | newData = this.state.dataBackup.filter(item => { 50 | const itemData = item.name.toLowerCase(); 51 | const textData = text.toLowerCase(); 52 | return itemData.indexOf(textData) > -1; 53 | }); 54 | LayoutAnimation.configureNext(CustomLayoutSpring(850, 0.7, "opacity")); 55 | this.setState({ 56 | query: text, 57 | dataSource: newData 58 | }); 59 | }; 60 | 61 | renderItem(item) { 62 | return ( 63 | 109 | } 110 | /> 111 | ); 112 | } 113 | 114 | onRefresh = () => { 115 | this.setState({ 116 | dataSource: [], 117 | isLoading: false, 118 | refreshing: true, 119 | seed: 1, 120 | page: 1 121 | }); 122 | // this.fetchData(); 123 | }; 124 | 125 | loadMore = () => { 126 | this.setState({ 127 | // refreshing: true, 128 | page: this.state.page + 1 129 | }); 130 | // this.fetchData(); 131 | }; 132 | 133 | render() { 134 | return ( 135 | 136 | 137 | 138 | { 147 | this.filterList(text); 148 | }} 149 | onPressCancel={() => { 150 | this.filterList(""); 151 | }} 152 | onPress={() => alert("onPress")} 153 | /> 154 | 155 | this.renderItem(item)} 158 | onEndReached={this.loadMore} 159 | onRefresh={this.onRefresh} 160 | refreshing={this.state.refreshing} 161 | /> 162 | 163 | 164 | 165 | ); 166 | } 167 | } 168 | 169 | const styles = { 170 | container: { 171 | ...Platform.select({ 172 | android: { 173 | top: 24 174 | } 175 | }), 176 | flex: 1, 177 | justifyContent: "center", 178 | alignItems: "center", 179 | backgroundColor: "#21283d" 180 | }, 181 | welcome: { 182 | fontSize: 20, 183 | textAlign: "center", 184 | margin: 10 185 | }, 186 | instructions: { 187 | textAlign: "center", 188 | color: "#333333", 189 | marginBottom: 5 190 | }, 191 | chartStyle: { 192 | height: 100, 193 | width: 100 194 | }, 195 | chartContentInset: { 196 | top: 30, 197 | bottom: 30 198 | } 199 | }; 200 | -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /example/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.example", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.example", 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 | -------------------------------------------------------------------------------- /example/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 | 99 | compileOptions { 100 | sourceCompatibility JavaVersion.VERSION_1_8 101 | targetCompatibility JavaVersion.VERSION_1_8 102 | } 103 | 104 | defaultConfig { 105 | applicationId "com.example" 106 | minSdkVersion rootProject.ext.minSdkVersion 107 | targetSdkVersion rootProject.ext.targetSdkVersion 108 | versionCode 1 109 | versionName "1.0" 110 | } 111 | splits { 112 | abi { 113 | reset() 114 | enable enableSeparateBuildPerCPUArchitecture 115 | universalApk false // If true, also generate a universal APK 116 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 117 | } 118 | } 119 | buildTypes { 120 | release { 121 | minifyEnabled enableProguardInReleaseBuilds 122 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 123 | } 124 | } 125 | // applicationVariants are e.g. debug, release 126 | applicationVariants.all { variant -> 127 | variant.outputs.each { output -> 128 | // For each separate APK per architecture, set a unique version code as described here: 129 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 130 | def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4] 131 | def abi = output.getFilter(OutputFile.ABI) 132 | if (abi != null) { // null for the universal-debug, universal-release variants 133 | output.versionCodeOverride = 134 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 135 | } 136 | } 137 | } 138 | } 139 | 140 | dependencies { 141 | implementation project(':react-native-vector-icons') 142 | implementation project(':react-native-svg') 143 | implementation project(':react-native-linear-gradient') 144 | implementation project(':react-native-fast-image') 145 | implementation fileTree(dir: "libs", include: ["*.jar"]) 146 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 147 | implementation "com.facebook.react:react-native:+" // From node_modules 148 | } 149 | 150 | // Run this once to be able to run the application with BUCK 151 | // puts all compile dependencies into folder libs for BUCK to use 152 | task copyDownloadableDepsToLibs(type: Copy) { 153 | from configurations.compile 154 | into 'libs' 155 | } 156 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "example"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.horcrux.svg.SvgPackage; 8 | import com.BV.LinearGradient.LinearGradientPackage; 9 | import com.dylanvann.fastimage.FastImageViewPackage; 10 | import com.facebook.react.ReactNativeHost; 11 | import com.facebook.react.ReactPackage; 12 | import com.facebook.react.shell.MainReactPackage; 13 | import com.facebook.soloader.SoLoader; 14 | 15 | import java.util.Arrays; 16 | import java.util.List; 17 | 18 | public class MainApplication extends Application implements ReactApplication { 19 | 20 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 21 | @Override 22 | public boolean getUseDeveloperSupport() { 23 | return BuildConfig.DEBUG; 24 | } 25 | 26 | @Override 27 | protected List getPackages() { 28 | return Arrays.asList( 29 | new MainReactPackage(), 30 | new VectorIconsPackage(), 31 | new SvgPackage(), 32 | new LinearGradientPackage(), 33 | new FastImageViewPackage() 34 | ); 35 | } 36 | 37 | @Override 38 | protected String getJSMainModuleName() { 39 | return "index"; 40 | } 41 | }; 42 | 43 | @Override 44 | public ReactNativeHost getReactNativeHost() { 45 | return mReactNativeHost; 46 | } 47 | 48 | @Override 49 | public void onCreate() { 50 | super.onCreate(); 51 | SoLoader.init(this, /* native exopackage */ false); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | example 3 | 4 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | supportLibVersion = "28.0.0" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.3.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 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/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.10.2-all.zip 6 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /example/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 | -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | include ':react-native-svg' 5 | project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android') 6 | include ':react-native-linear-gradient' 7 | project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android') 8 | include ':react-native-fast-image' 9 | project(':react-native-fast-image').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fast-image/android') 10 | 11 | include ':app' 12 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "displayName": "example" 4 | } -------------------------------------------------------------------------------- /example/assets/cryptocurrency/AquariusCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/AquariusCoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Augur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Augur.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/BitConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/BitConnect.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/BitShares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/BitShares.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Bitcoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/ByteCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/ByteCoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Dash.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Decred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Decred.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/EOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/EOS.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Ethereum.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Golem.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/IOTA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/IOTA.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Iconomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Iconomi.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/LanaCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/LanaCoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Litecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Litecoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Monero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Monero.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/NEM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/NEM.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Netko-coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Netko-coin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/NevaCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/NevaCoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Ripple.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Siacoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Siacoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Steem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Steem.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Stratis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Stratis.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Suncontract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Suncontract.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/TajCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/TajCoin.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Waves.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Xaurum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Xaurum.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/Zcash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/Zcash.png -------------------------------------------------------------------------------- /example/assets/cryptocurrency/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/cryptocurrency/default.png -------------------------------------------------------------------------------- /example/assets/states/state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/states/state.jpg -------------------------------------------------------------------------------- /example/assets/states/state2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/states/state2.jpg -------------------------------------------------------------------------------- /example/assets/states/state3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-animation-layout/13e566413650cdab1fafdfdfe1b7050a59bc8a11/example/assets/states/state3.jpg -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import { AppRegistry } from "react-native"; 6 | import App from "./App"; 7 | import { name as appName } from "./app.json"; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /example/ios/example-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 | -------------------------------------------------------------------------------- /example/ios/example-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 | -------------------------------------------------------------------------------- /example/ios/example.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 /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.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 /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.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 | C8E19B7CD35C47DE94C5EA56 /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7CCAD7DBE97840BDBE8C934A /* AntDesign.ttf */; }; 43 | 9B00D3E28C5542BA808A69F0 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 09144B4382444A3E9626A66E /* Entypo.ttf */; }; 44 | 13D75B5052774880BC685C13 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D258AC1AA59C46ACA86EF988 /* EvilIcons.ttf */; }; 45 | F4D65D4167B24560A87F61A5 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AD0EB3922BA84650BC6D6066 /* Feather.ttf */; }; 46 | BA0E9ABB8D2F4BF5826008C5 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CCD778FF97B243A59310A0E7 /* FontAwesome.ttf */; }; 47 | 0A817E3742584D2ABCC1A325 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ADD45BD718E44D0381443C0B /* FontAwesome5_Brands.ttf */; }; 48 | 366648C6DDD546F9878E16BA /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1C392400351C4A9688F38702 /* FontAwesome5_Regular.ttf */; }; 49 | 18F9D7F0B5B046AB914A58ED /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2162B66B9E9348529619EE2C /* FontAwesome5_Solid.ttf */; }; 50 | EDBE5771AF5543E7B92A68D8 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9E35811E21D2408AA1D82823 /* Foundation.ttf */; }; 51 | C39803AD2FCC49A78D45E884 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 619712E1AA2F416388F09758 /* Ionicons.ttf */; }; 52 | 1C32D2124F464EA8A4DA6652 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 07622A51E2D242549DBAF20B /* MaterialCommunityIcons.ttf */; }; 53 | 7D9B21C7D7F74F54A61E7E2A /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6533F91FD739408395596D5D /* MaterialIcons.ttf */; }; 54 | 41F892A85C1242BC8DED9083 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6CE23A3AF83E47B2A8CD16A3 /* Octicons.ttf */; }; 55 | 906007D6A31540D483F8571A /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CF6AD4D40A674CF18DD1D7E1 /* SimpleLineIcons.ttf */; }; 56 | 00525A0C6F5943DCAD8043F6 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5D29ACA1FBDC48779A6B0C03 /* Zocial.ttf */; }; 57 | 19DBC725335E4DBBA2E9DDE9 /* libFastImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EBAF3A9A52E44666B2706B52 /* libFastImage.a */; }; 58 | A3C59832823D41F197AEB318 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BF6215255B1B4DED8F3D3EE2 /* libBVLinearGradient.a */; }; 59 | F6C200A175CD4793B07108C3 /* libRNSVG.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 74C73A06260241A09902A523 /* libRNSVG.a */; }; 60 | 780E37A487AF496F9B7460F1 /* libRNSVG-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B38301220F84476BA0E8D9A /* libRNSVG-tvOS.a */; }; 61 | 05F5FE9F8CA54EDB94A20289 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F18BD9C671746EBAF7BE2BE /* libRNVectorIcons.a */; }; 62 | 2E67A6E629C34B9CB2BDE067 /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 092B509AD1934F1491F9E883 /* libRNVectorIcons-tvOS.a */; }; 63 | /* End PBXBuildFile section */ 64 | 65 | /* Begin PBXContainerItemProxy section */ 66 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 71 | remoteInfo = RCTActionSheet; 72 | }; 73 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 78 | remoteInfo = RCTGeolocation; 79 | }; 80 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 83 | proxyType = 2; 84 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 85 | remoteInfo = RCTImage; 86 | }; 87 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 90 | proxyType = 2; 91 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 92 | remoteInfo = RCTNetwork; 93 | }; 94 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 99 | remoteInfo = RCTVibration; 100 | }; 101 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 104 | proxyType = 1; 105 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 106 | remoteInfo = example; 107 | }; 108 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 111 | proxyType = 2; 112 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 113 | remoteInfo = RCTSettings; 114 | }; 115 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 118 | proxyType = 2; 119 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 120 | remoteInfo = RCTWebSocket; 121 | }; 122 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 127 | remoteInfo = React; 128 | }; 129 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 132 | proxyType = 1; 133 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 134 | remoteInfo = "example-tvOS"; 135 | }; 136 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 141 | remoteInfo = "RCTBlob-tvOS"; 142 | }; 143 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 148 | remoteInfo = fishhook; 149 | }; 150 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 153 | proxyType = 2; 154 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 155 | remoteInfo = "fishhook-tvOS"; 156 | }; 157 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 162 | remoteInfo = jsinspector; 163 | }; 164 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 169 | remoteInfo = "jsinspector-tvOS"; 170 | }; 171 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 176 | remoteInfo = "third-party"; 177 | }; 178 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 183 | remoteInfo = "third-party-tvOS"; 184 | }; 185 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 190 | remoteInfo = "double-conversion"; 191 | }; 192 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 197 | remoteInfo = "double-conversion-tvOS"; 198 | }; 199 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 204 | remoteInfo = privatedata; 205 | }; 206 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 211 | remoteInfo = "privatedata-tvOS"; 212 | }; 213 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 218 | remoteInfo = "RCTImage-tvOS"; 219 | }; 220 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 225 | remoteInfo = "RCTLinking-tvOS"; 226 | }; 227 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 232 | remoteInfo = "RCTNetwork-tvOS"; 233 | }; 234 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 239 | remoteInfo = "RCTSettings-tvOS"; 240 | }; 241 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 242 | isa = PBXContainerItemProxy; 243 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 244 | proxyType = 2; 245 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 246 | remoteInfo = "RCTText-tvOS"; 247 | }; 248 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 249 | isa = PBXContainerItemProxy; 250 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 251 | proxyType = 2; 252 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 253 | remoteInfo = "RCTWebSocket-tvOS"; 254 | }; 255 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 256 | isa = PBXContainerItemProxy; 257 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 258 | proxyType = 2; 259 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 260 | remoteInfo = "React-tvOS"; 261 | }; 262 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 263 | isa = PBXContainerItemProxy; 264 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 265 | proxyType = 2; 266 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 267 | remoteInfo = yoga; 268 | }; 269 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 270 | isa = PBXContainerItemProxy; 271 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 272 | proxyType = 2; 273 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 274 | remoteInfo = "yoga-tvOS"; 275 | }; 276 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 277 | isa = PBXContainerItemProxy; 278 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 279 | proxyType = 2; 280 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 281 | remoteInfo = cxxreact; 282 | }; 283 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 284 | isa = PBXContainerItemProxy; 285 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 286 | proxyType = 2; 287 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 288 | remoteInfo = "cxxreact-tvOS"; 289 | }; 290 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 291 | isa = PBXContainerItemProxy; 292 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 293 | proxyType = 2; 294 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 295 | remoteInfo = jschelpers; 296 | }; 297 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 298 | isa = PBXContainerItemProxy; 299 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 300 | proxyType = 2; 301 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 302 | remoteInfo = "jschelpers-tvOS"; 303 | }; 304 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 305 | isa = PBXContainerItemProxy; 306 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 307 | proxyType = 2; 308 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 309 | remoteInfo = RCTAnimation; 310 | }; 311 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 312 | isa = PBXContainerItemProxy; 313 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 314 | proxyType = 2; 315 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 316 | remoteInfo = "RCTAnimation-tvOS"; 317 | }; 318 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 319 | isa = PBXContainerItemProxy; 320 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 321 | proxyType = 2; 322 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 323 | remoteInfo = RCTLinking; 324 | }; 325 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 326 | isa = PBXContainerItemProxy; 327 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 328 | proxyType = 2; 329 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 330 | remoteInfo = RCTText; 331 | }; 332 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 333 | isa = PBXContainerItemProxy; 334 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 335 | proxyType = 2; 336 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 337 | remoteInfo = RCTBlob; 338 | }; 339 | /* End PBXContainerItemProxy section */ 340 | 341 | /* Begin PBXFileReference section */ 342 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 343 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 344 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 345 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 346 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 347 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 348 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 349 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 350 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; }; 351 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 352 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 353 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 354 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; }; 355 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; }; 356 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 357 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; }; 358 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; }; 359 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; }; 360 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 361 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "example-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 362 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "example-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 363 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 364 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 365 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 366 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 367 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 368 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 369 | 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; }; 370 | 7CCAD7DBE97840BDBE8C934A /* 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; }; 371 | 09144B4382444A3E9626A66E /* 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; }; 372 | D258AC1AA59C46ACA86EF988 /* 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; }; 373 | AD0EB3922BA84650BC6D6066 /* 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; }; 374 | CCD778FF97B243A59310A0E7 /* 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; }; 375 | ADD45BD718E44D0381443C0B /* 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; }; 376 | 1C392400351C4A9688F38702 /* 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; }; 377 | 2162B66B9E9348529619EE2C /* 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; }; 378 | 9E35811E21D2408AA1D82823 /* 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; }; 379 | 619712E1AA2F416388F09758 /* 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; }; 380 | 07622A51E2D242549DBAF20B /* 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; }; 381 | 6533F91FD739408395596D5D /* 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; }; 382 | 6CE23A3AF83E47B2A8CD16A3 /* 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; }; 383 | CF6AD4D40A674CF18DD1D7E1 /* 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; }; 384 | 5D29ACA1FBDC48779A6B0C03 /* 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; }; 385 | EC6B4DD4DD2D4910A0AF80D8 /* FastImage.xcodeproj */ = {isa = PBXFileReference; name = "FastImage.xcodeproj"; path = "../node_modules/react-native-fast-image/ios/FastImage.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 386 | EBAF3A9A52E44666B2706B52 /* libFastImage.a */ = {isa = PBXFileReference; name = "libFastImage.a"; path = "libFastImage.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 387 | EC6285FF4BA542E6AA225C99 /* BVLinearGradient.xcodeproj */ = {isa = PBXFileReference; name = "BVLinearGradient.xcodeproj"; path = "../node_modules/react-native-linear-gradient/BVLinearGradient.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 388 | BF6215255B1B4DED8F3D3EE2 /* libBVLinearGradient.a */ = {isa = PBXFileReference; name = "libBVLinearGradient.a"; path = "libBVLinearGradient.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 389 | 68C12BB5F3B14B228F522F19 /* RNSVG.xcodeproj */ = {isa = PBXFileReference; name = "RNSVG.xcodeproj"; path = "../node_modules/react-native-svg/ios/RNSVG.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 390 | 74C73A06260241A09902A523 /* libRNSVG.a */ = {isa = PBXFileReference; name = "libRNSVG.a"; path = "libRNSVG.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 391 | 6B38301220F84476BA0E8D9A /* libRNSVG-tvOS.a */ = {isa = PBXFileReference; name = "libRNSVG-tvOS.a"; path = "libRNSVG-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 392 | C31002A0FAA34E949EC6A44B /* 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; }; 393 | 4F18BD9C671746EBAF7BE2BE /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 394 | 092B509AD1934F1491F9E883 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; name = "libRNVectorIcons-tvOS.a"; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 395 | /* End PBXFileReference section */ 396 | 397 | /* Begin PBXFrameworksBuildPhase section */ 398 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 399 | isa = PBXFrameworksBuildPhase; 400 | buildActionMask = 2147483647; 401 | files = ( 402 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 403 | ); 404 | runOnlyForDeploymentPostprocessing = 0; 405 | }; 406 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 407 | isa = PBXFrameworksBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 411 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 412 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 413 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 414 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 415 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 416 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 417 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 418 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 419 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 420 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 421 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 422 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 423 | 19DBC725335E4DBBA2E9DDE9 /* libFastImage.a in Frameworks */, 424 | A3C59832823D41F197AEB318 /* libBVLinearGradient.a in Frameworks */, 425 | F6C200A175CD4793B07108C3 /* libRNSVG.a in Frameworks */, 426 | 05F5FE9F8CA54EDB94A20289 /* libRNVectorIcons.a in Frameworks */, 427 | ); 428 | runOnlyForDeploymentPostprocessing = 0; 429 | }; 430 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 431 | isa = PBXFrameworksBuildPhase; 432 | buildActionMask = 2147483647; 433 | files = ( 434 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 435 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 436 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 437 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 438 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 439 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 440 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 441 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 442 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 443 | 780E37A487AF496F9B7460F1 /* libRNSVG-tvOS.a in Frameworks */, 444 | 2E67A6E629C34B9CB2BDE067 /* libRNVectorIcons-tvOS.a in Frameworks */, 445 | ); 446 | runOnlyForDeploymentPostprocessing = 0; 447 | }; 448 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 449 | isa = PBXFrameworksBuildPhase; 450 | buildActionMask = 2147483647; 451 | files = ( 452 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 453 | ); 454 | runOnlyForDeploymentPostprocessing = 0; 455 | }; 456 | /* End PBXFrameworksBuildPhase section */ 457 | 458 | /* Begin PBXGroup section */ 459 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 460 | isa = PBXGroup; 461 | children = ( 462 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 463 | ); 464 | name = Products; 465 | sourceTree = ""; 466 | }; 467 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 468 | isa = PBXGroup; 469 | children = ( 470 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 471 | ); 472 | name = Products; 473 | sourceTree = ""; 474 | }; 475 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 479 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 480 | ); 481 | name = Products; 482 | sourceTree = ""; 483 | }; 484 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 485 | isa = PBXGroup; 486 | children = ( 487 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 488 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 489 | ); 490 | name = Products; 491 | sourceTree = ""; 492 | }; 493 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 497 | ); 498 | name = Products; 499 | sourceTree = ""; 500 | }; 501 | 00E356EF1AD99517003FC87E /* exampleTests */ = { 502 | isa = PBXGroup; 503 | children = ( 504 | 00E356F21AD99517003FC87E /* exampleTests.m */, 505 | 00E356F01AD99517003FC87E /* Supporting Files */, 506 | ); 507 | path = exampleTests; 508 | sourceTree = ""; 509 | }; 510 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 511 | isa = PBXGroup; 512 | children = ( 513 | 00E356F11AD99517003FC87E /* Info.plist */, 514 | ); 515 | name = "Supporting Files"; 516 | sourceTree = ""; 517 | }; 518 | 139105B71AF99BAD00B5F7CC /* Products */ = { 519 | isa = PBXGroup; 520 | children = ( 521 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 522 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 523 | ); 524 | name = Products; 525 | sourceTree = ""; 526 | }; 527 | 139FDEE71B06529A00C62182 /* Products */ = { 528 | isa = PBXGroup; 529 | children = ( 530 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 531 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 532 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 533 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 534 | ); 535 | name = Products; 536 | sourceTree = ""; 537 | }; 538 | 13B07FAE1A68108700A75B9A /* example */ = { 539 | isa = PBXGroup; 540 | children = ( 541 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 542 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 543 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 544 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 545 | 13B07FB61A68108700A75B9A /* Info.plist */, 546 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 547 | 13B07FB71A68108700A75B9A /* main.m */, 548 | ); 549 | name = example; 550 | sourceTree = ""; 551 | }; 552 | 146834001AC3E56700842450 /* Products */ = { 553 | isa = PBXGroup; 554 | children = ( 555 | 146834041AC3E56700842450 /* libReact.a */, 556 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 557 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 558 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 559 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 560 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 561 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 562 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 563 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 564 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 565 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 566 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 567 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 568 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 569 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 570 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 571 | ); 572 | name = Products; 573 | sourceTree = ""; 574 | }; 575 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 576 | isa = PBXGroup; 577 | children = ( 578 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 579 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 580 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 581 | ); 582 | name = Frameworks; 583 | sourceTree = ""; 584 | }; 585 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 586 | isa = PBXGroup; 587 | children = ( 588 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 589 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 590 | ); 591 | name = Products; 592 | sourceTree = ""; 593 | }; 594 | 78C398B11ACF4ADC00677621 /* Products */ = { 595 | isa = PBXGroup; 596 | children = ( 597 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 598 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 599 | ); 600 | name = Products; 601 | sourceTree = ""; 602 | }; 603 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 604 | isa = PBXGroup; 605 | children = ( 606 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 607 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 608 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 609 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 610 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 611 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 612 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 613 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 614 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 615 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 616 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 617 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 618 | EC6B4DD4DD2D4910A0AF80D8 /* FastImage.xcodeproj */, 619 | EC6285FF4BA542E6AA225C99 /* BVLinearGradient.xcodeproj */, 620 | 68C12BB5F3B14B228F522F19 /* RNSVG.xcodeproj */, 621 | C31002A0FAA34E949EC6A44B /* RNVectorIcons.xcodeproj */, 622 | ); 623 | name = Libraries; 624 | sourceTree = ""; 625 | }; 626 | 832341B11AAA6A8300B99B32 /* Products */ = { 627 | isa = PBXGroup; 628 | children = ( 629 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 630 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 631 | ); 632 | name = Products; 633 | sourceTree = ""; 634 | }; 635 | 83CBB9F61A601CBA00E9B192 = { 636 | isa = PBXGroup; 637 | children = ( 638 | 13B07FAE1A68108700A75B9A /* example */, 639 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 640 | 00E356EF1AD99517003FC87E /* exampleTests */, 641 | 83CBBA001A601CBA00E9B192 /* Products */, 642 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 643 | AB7701A01D98492F96340906 /* Resources */, 644 | ); 645 | indentWidth = 2; 646 | sourceTree = ""; 647 | tabWidth = 2; 648 | usesTabs = 0; 649 | }; 650 | 83CBBA001A601CBA00E9B192 /* Products */ = { 651 | isa = PBXGroup; 652 | children = ( 653 | 13B07F961A680F5B00A75B9A /* example.app */, 654 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */, 655 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */, 656 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */, 657 | ); 658 | name = Products; 659 | sourceTree = ""; 660 | }; 661 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 662 | isa = PBXGroup; 663 | children = ( 664 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 665 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 666 | ); 667 | name = Products; 668 | sourceTree = ""; 669 | }; 670 | AB7701A01D98492F96340906 /* Resources */ = { 671 | isa = "PBXGroup"; 672 | children = ( 673 | 7CCAD7DBE97840BDBE8C934A /* AntDesign.ttf */, 674 | 09144B4382444A3E9626A66E /* Entypo.ttf */, 675 | D258AC1AA59C46ACA86EF988 /* EvilIcons.ttf */, 676 | AD0EB3922BA84650BC6D6066 /* Feather.ttf */, 677 | CCD778FF97B243A59310A0E7 /* FontAwesome.ttf */, 678 | ADD45BD718E44D0381443C0B /* FontAwesome5_Brands.ttf */, 679 | 1C392400351C4A9688F38702 /* FontAwesome5_Regular.ttf */, 680 | 2162B66B9E9348529619EE2C /* FontAwesome5_Solid.ttf */, 681 | 9E35811E21D2408AA1D82823 /* Foundation.ttf */, 682 | 619712E1AA2F416388F09758 /* Ionicons.ttf */, 683 | 07622A51E2D242549DBAF20B /* MaterialCommunityIcons.ttf */, 684 | 6533F91FD739408395596D5D /* MaterialIcons.ttf */, 685 | 6CE23A3AF83E47B2A8CD16A3 /* Octicons.ttf */, 686 | CF6AD4D40A674CF18DD1D7E1 /* SimpleLineIcons.ttf */, 687 | 5D29ACA1FBDC48779A6B0C03 /* Zocial.ttf */, 688 | ); 689 | name = Resources; 690 | sourceTree = ""; 691 | path = ""; 692 | }; 693 | /* End PBXGroup section */ 694 | 695 | /* Begin PBXNativeTarget section */ 696 | 00E356ED1AD99517003FC87E /* exampleTests */ = { 697 | isa = PBXNativeTarget; 698 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */; 699 | buildPhases = ( 700 | 00E356EA1AD99517003FC87E /* Sources */, 701 | 00E356EB1AD99517003FC87E /* Frameworks */, 702 | 00E356EC1AD99517003FC87E /* Resources */, 703 | ); 704 | buildRules = ( 705 | ); 706 | dependencies = ( 707 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 708 | ); 709 | name = exampleTests; 710 | productName = exampleTests; 711 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */; 712 | productType = "com.apple.product-type.bundle.unit-test"; 713 | }; 714 | 13B07F861A680F5B00A75B9A /* example */ = { 715 | isa = PBXNativeTarget; 716 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */; 717 | buildPhases = ( 718 | 13B07F871A680F5B00A75B9A /* Sources */, 719 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 720 | 13B07F8E1A680F5B00A75B9A /* Resources */, 721 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 722 | ); 723 | buildRules = ( 724 | ); 725 | dependencies = ( 726 | ); 727 | name = example; 728 | productName = "Hello World"; 729 | productReference = 13B07F961A680F5B00A75B9A /* example.app */; 730 | productType = "com.apple.product-type.application"; 731 | }; 732 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */ = { 733 | isa = PBXNativeTarget; 734 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */; 735 | buildPhases = ( 736 | 2D02E4771E0B4A5D006451C7 /* Sources */, 737 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 738 | 2D02E4791E0B4A5D006451C7 /* Resources */, 739 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 740 | ); 741 | buildRules = ( 742 | ); 743 | dependencies = ( 744 | ); 745 | name = "example-tvOS"; 746 | productName = "example-tvOS"; 747 | productReference = 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */; 748 | productType = "com.apple.product-type.application"; 749 | }; 750 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */ = { 751 | isa = PBXNativeTarget; 752 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */; 753 | buildPhases = ( 754 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 755 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 756 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 757 | ); 758 | buildRules = ( 759 | ); 760 | dependencies = ( 761 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 762 | ); 763 | name = "example-tvOSTests"; 764 | productName = "example-tvOSTests"; 765 | productReference = 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */; 766 | productType = "com.apple.product-type.bundle.unit-test"; 767 | }; 768 | /* End PBXNativeTarget section */ 769 | 770 | /* Begin PBXProject section */ 771 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 772 | isa = PBXProject; 773 | attributes = { 774 | LastUpgradeCheck = 940; 775 | ORGANIZATIONNAME = Facebook; 776 | TargetAttributes = { 777 | 00E356ED1AD99517003FC87E = { 778 | CreatedOnToolsVersion = 6.2; 779 | TestTargetID = 13B07F861A680F5B00A75B9A; 780 | }; 781 | 2D02E47A1E0B4A5D006451C7 = { 782 | CreatedOnToolsVersion = 8.2.1; 783 | ProvisioningStyle = Automatic; 784 | }; 785 | 2D02E48F1E0B4A5D006451C7 = { 786 | CreatedOnToolsVersion = 8.2.1; 787 | ProvisioningStyle = Automatic; 788 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 789 | }; 790 | }; 791 | }; 792 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */; 793 | compatibilityVersion = "Xcode 3.2"; 794 | developmentRegion = English; 795 | hasScannedForEncodings = 0; 796 | knownRegions = ( 797 | en, 798 | Base, 799 | ); 800 | mainGroup = 83CBB9F61A601CBA00E9B192; 801 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 802 | projectDirPath = ""; 803 | projectReferences = ( 804 | { 805 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 806 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 807 | }, 808 | { 809 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 810 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 811 | }, 812 | { 813 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 814 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 815 | }, 816 | { 817 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 818 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 819 | }, 820 | { 821 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 822 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 823 | }, 824 | { 825 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 826 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 827 | }, 828 | { 829 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 830 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 831 | }, 832 | { 833 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 834 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 835 | }, 836 | { 837 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 838 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 839 | }, 840 | { 841 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 842 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 843 | }, 844 | { 845 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 846 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 847 | }, 848 | { 849 | ProductGroup = 146834001AC3E56700842450 /* Products */; 850 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 851 | }, 852 | ); 853 | projectRoot = ""; 854 | targets = ( 855 | 13B07F861A680F5B00A75B9A /* example */, 856 | 00E356ED1AD99517003FC87E /* exampleTests */, 857 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */, 858 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */, 859 | ); 860 | }; 861 | /* End PBXProject section */ 862 | 863 | /* Begin PBXReferenceProxy section */ 864 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 865 | isa = PBXReferenceProxy; 866 | fileType = archive.ar; 867 | path = libRCTActionSheet.a; 868 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 869 | sourceTree = BUILT_PRODUCTS_DIR; 870 | }; 871 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 872 | isa = PBXReferenceProxy; 873 | fileType = archive.ar; 874 | path = libRCTGeolocation.a; 875 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 876 | sourceTree = BUILT_PRODUCTS_DIR; 877 | }; 878 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 879 | isa = PBXReferenceProxy; 880 | fileType = archive.ar; 881 | path = libRCTImage.a; 882 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 883 | sourceTree = BUILT_PRODUCTS_DIR; 884 | }; 885 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 886 | isa = PBXReferenceProxy; 887 | fileType = archive.ar; 888 | path = libRCTNetwork.a; 889 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 890 | sourceTree = BUILT_PRODUCTS_DIR; 891 | }; 892 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 893 | isa = PBXReferenceProxy; 894 | fileType = archive.ar; 895 | path = libRCTVibration.a; 896 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 897 | sourceTree = BUILT_PRODUCTS_DIR; 898 | }; 899 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 900 | isa = PBXReferenceProxy; 901 | fileType = archive.ar; 902 | path = libRCTSettings.a; 903 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 904 | sourceTree = BUILT_PRODUCTS_DIR; 905 | }; 906 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 907 | isa = PBXReferenceProxy; 908 | fileType = archive.ar; 909 | path = libRCTWebSocket.a; 910 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 911 | sourceTree = BUILT_PRODUCTS_DIR; 912 | }; 913 | 146834041AC3E56700842450 /* libReact.a */ = { 914 | isa = PBXReferenceProxy; 915 | fileType = archive.ar; 916 | path = libReact.a; 917 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 918 | sourceTree = BUILT_PRODUCTS_DIR; 919 | }; 920 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 921 | isa = PBXReferenceProxy; 922 | fileType = archive.ar; 923 | path = "libRCTBlob-tvOS.a"; 924 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 925 | sourceTree = BUILT_PRODUCTS_DIR; 926 | }; 927 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 928 | isa = PBXReferenceProxy; 929 | fileType = archive.ar; 930 | path = libfishhook.a; 931 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 932 | sourceTree = BUILT_PRODUCTS_DIR; 933 | }; 934 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 935 | isa = PBXReferenceProxy; 936 | fileType = archive.ar; 937 | path = "libfishhook-tvOS.a"; 938 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 939 | sourceTree = BUILT_PRODUCTS_DIR; 940 | }; 941 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 942 | isa = PBXReferenceProxy; 943 | fileType = archive.ar; 944 | path = libjsinspector.a; 945 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 946 | sourceTree = BUILT_PRODUCTS_DIR; 947 | }; 948 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 949 | isa = PBXReferenceProxy; 950 | fileType = archive.ar; 951 | path = "libjsinspector-tvOS.a"; 952 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 953 | sourceTree = BUILT_PRODUCTS_DIR; 954 | }; 955 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 956 | isa = PBXReferenceProxy; 957 | fileType = archive.ar; 958 | path = "libthird-party.a"; 959 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 960 | sourceTree = BUILT_PRODUCTS_DIR; 961 | }; 962 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 963 | isa = PBXReferenceProxy; 964 | fileType = archive.ar; 965 | path = "libthird-party.a"; 966 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 967 | sourceTree = BUILT_PRODUCTS_DIR; 968 | }; 969 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 970 | isa = PBXReferenceProxy; 971 | fileType = archive.ar; 972 | path = "libdouble-conversion.a"; 973 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 974 | sourceTree = BUILT_PRODUCTS_DIR; 975 | }; 976 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 977 | isa = PBXReferenceProxy; 978 | fileType = archive.ar; 979 | path = "libdouble-conversion.a"; 980 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 981 | sourceTree = BUILT_PRODUCTS_DIR; 982 | }; 983 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 984 | isa = PBXReferenceProxy; 985 | fileType = archive.ar; 986 | path = libprivatedata.a; 987 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 988 | sourceTree = BUILT_PRODUCTS_DIR; 989 | }; 990 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 991 | isa = PBXReferenceProxy; 992 | fileType = archive.ar; 993 | path = "libprivatedata-tvOS.a"; 994 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 995 | sourceTree = BUILT_PRODUCTS_DIR; 996 | }; 997 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 998 | isa = PBXReferenceProxy; 999 | fileType = archive.ar; 1000 | path = "libRCTImage-tvOS.a"; 1001 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 1002 | sourceTree = BUILT_PRODUCTS_DIR; 1003 | }; 1004 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 1005 | isa = PBXReferenceProxy; 1006 | fileType = archive.ar; 1007 | path = "libRCTLinking-tvOS.a"; 1008 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1009 | sourceTree = BUILT_PRODUCTS_DIR; 1010 | }; 1011 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1012 | isa = PBXReferenceProxy; 1013 | fileType = archive.ar; 1014 | path = "libRCTNetwork-tvOS.a"; 1015 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1016 | sourceTree = BUILT_PRODUCTS_DIR; 1017 | }; 1018 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1019 | isa = PBXReferenceProxy; 1020 | fileType = archive.ar; 1021 | path = "libRCTSettings-tvOS.a"; 1022 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1023 | sourceTree = BUILT_PRODUCTS_DIR; 1024 | }; 1025 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1026 | isa = PBXReferenceProxy; 1027 | fileType = archive.ar; 1028 | path = "libRCTText-tvOS.a"; 1029 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1030 | sourceTree = BUILT_PRODUCTS_DIR; 1031 | }; 1032 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1033 | isa = PBXReferenceProxy; 1034 | fileType = archive.ar; 1035 | path = "libRCTWebSocket-tvOS.a"; 1036 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1037 | sourceTree = BUILT_PRODUCTS_DIR; 1038 | }; 1039 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1040 | isa = PBXReferenceProxy; 1041 | fileType = archive.ar; 1042 | path = libReact.a; 1043 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1044 | sourceTree = BUILT_PRODUCTS_DIR; 1045 | }; 1046 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1047 | isa = PBXReferenceProxy; 1048 | fileType = archive.ar; 1049 | path = libyoga.a; 1050 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1051 | sourceTree = BUILT_PRODUCTS_DIR; 1052 | }; 1053 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1054 | isa = PBXReferenceProxy; 1055 | fileType = archive.ar; 1056 | path = libyoga.a; 1057 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1058 | sourceTree = BUILT_PRODUCTS_DIR; 1059 | }; 1060 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1061 | isa = PBXReferenceProxy; 1062 | fileType = archive.ar; 1063 | path = libcxxreact.a; 1064 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1065 | sourceTree = BUILT_PRODUCTS_DIR; 1066 | }; 1067 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1068 | isa = PBXReferenceProxy; 1069 | fileType = archive.ar; 1070 | path = libcxxreact.a; 1071 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1072 | sourceTree = BUILT_PRODUCTS_DIR; 1073 | }; 1074 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1075 | isa = PBXReferenceProxy; 1076 | fileType = archive.ar; 1077 | path = libjschelpers.a; 1078 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1079 | sourceTree = BUILT_PRODUCTS_DIR; 1080 | }; 1081 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1082 | isa = PBXReferenceProxy; 1083 | fileType = archive.ar; 1084 | path = libjschelpers.a; 1085 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1086 | sourceTree = BUILT_PRODUCTS_DIR; 1087 | }; 1088 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1089 | isa = PBXReferenceProxy; 1090 | fileType = archive.ar; 1091 | path = libRCTAnimation.a; 1092 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1093 | sourceTree = BUILT_PRODUCTS_DIR; 1094 | }; 1095 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1096 | isa = PBXReferenceProxy; 1097 | fileType = archive.ar; 1098 | path = libRCTAnimation.a; 1099 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1100 | sourceTree = BUILT_PRODUCTS_DIR; 1101 | }; 1102 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1103 | isa = PBXReferenceProxy; 1104 | fileType = archive.ar; 1105 | path = libRCTLinking.a; 1106 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1107 | sourceTree = BUILT_PRODUCTS_DIR; 1108 | }; 1109 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1110 | isa = PBXReferenceProxy; 1111 | fileType = archive.ar; 1112 | path = libRCTText.a; 1113 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1114 | sourceTree = BUILT_PRODUCTS_DIR; 1115 | }; 1116 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1117 | isa = PBXReferenceProxy; 1118 | fileType = archive.ar; 1119 | path = libRCTBlob.a; 1120 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1121 | sourceTree = BUILT_PRODUCTS_DIR; 1122 | }; 1123 | /* End PBXReferenceProxy section */ 1124 | 1125 | /* Begin PBXResourcesBuildPhase section */ 1126 | 00E356EC1AD99517003FC87E /* Resources */ = { 1127 | isa = PBXResourcesBuildPhase; 1128 | buildActionMask = 2147483647; 1129 | files = ( 1130 | ); 1131 | runOnlyForDeploymentPostprocessing = 0; 1132 | }; 1133 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1134 | isa = PBXResourcesBuildPhase; 1135 | buildActionMask = 2147483647; 1136 | files = ( 1137 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1138 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1139 | C8E19B7CD35C47DE94C5EA56 /* AntDesign.ttf in Resources */, 1140 | 9B00D3E28C5542BA808A69F0 /* Entypo.ttf in Resources */, 1141 | 13D75B5052774880BC685C13 /* EvilIcons.ttf in Resources */, 1142 | F4D65D4167B24560A87F61A5 /* Feather.ttf in Resources */, 1143 | BA0E9ABB8D2F4BF5826008C5 /* FontAwesome.ttf in Resources */, 1144 | 0A817E3742584D2ABCC1A325 /* FontAwesome5_Brands.ttf in Resources */, 1145 | 366648C6DDD546F9878E16BA /* FontAwesome5_Regular.ttf in Resources */, 1146 | 18F9D7F0B5B046AB914A58ED /* FontAwesome5_Solid.ttf in Resources */, 1147 | EDBE5771AF5543E7B92A68D8 /* Foundation.ttf in Resources */, 1148 | C39803AD2FCC49A78D45E884 /* Ionicons.ttf in Resources */, 1149 | 1C32D2124F464EA8A4DA6652 /* MaterialCommunityIcons.ttf in Resources */, 1150 | 7D9B21C7D7F74F54A61E7E2A /* MaterialIcons.ttf in Resources */, 1151 | 41F892A85C1242BC8DED9083 /* Octicons.ttf in Resources */, 1152 | 906007D6A31540D483F8571A /* SimpleLineIcons.ttf in Resources */, 1153 | 00525A0C6F5943DCAD8043F6 /* Zocial.ttf in Resources */, 1154 | ); 1155 | runOnlyForDeploymentPostprocessing = 0; 1156 | }; 1157 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1158 | isa = PBXResourcesBuildPhase; 1159 | buildActionMask = 2147483647; 1160 | files = ( 1161 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1162 | ); 1163 | runOnlyForDeploymentPostprocessing = 0; 1164 | }; 1165 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1166 | isa = PBXResourcesBuildPhase; 1167 | buildActionMask = 2147483647; 1168 | files = ( 1169 | ); 1170 | runOnlyForDeploymentPostprocessing = 0; 1171 | }; 1172 | /* End PBXResourcesBuildPhase section */ 1173 | 1174 | /* Begin PBXShellScriptBuildPhase section */ 1175 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1176 | isa = PBXShellScriptBuildPhase; 1177 | buildActionMask = 2147483647; 1178 | files = ( 1179 | ); 1180 | inputPaths = ( 1181 | ); 1182 | name = "Bundle React Native code and images"; 1183 | outputPaths = ( 1184 | ); 1185 | runOnlyForDeploymentPostprocessing = 0; 1186 | shellPath = /bin/sh; 1187 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1188 | }; 1189 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1190 | isa = PBXShellScriptBuildPhase; 1191 | buildActionMask = 2147483647; 1192 | files = ( 1193 | ); 1194 | inputPaths = ( 1195 | ); 1196 | name = "Bundle React Native Code And Images"; 1197 | outputPaths = ( 1198 | ); 1199 | runOnlyForDeploymentPostprocessing = 0; 1200 | shellPath = /bin/sh; 1201 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1202 | }; 1203 | /* End PBXShellScriptBuildPhase section */ 1204 | 1205 | /* Begin PBXSourcesBuildPhase section */ 1206 | 00E356EA1AD99517003FC87E /* Sources */ = { 1207 | isa = PBXSourcesBuildPhase; 1208 | buildActionMask = 2147483647; 1209 | files = ( 1210 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */, 1211 | ); 1212 | runOnlyForDeploymentPostprocessing = 0; 1213 | }; 1214 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1215 | isa = PBXSourcesBuildPhase; 1216 | buildActionMask = 2147483647; 1217 | files = ( 1218 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1219 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1220 | ); 1221 | runOnlyForDeploymentPostprocessing = 0; 1222 | }; 1223 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1224 | isa = PBXSourcesBuildPhase; 1225 | buildActionMask = 2147483647; 1226 | files = ( 1227 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1228 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1229 | ); 1230 | runOnlyForDeploymentPostprocessing = 0; 1231 | }; 1232 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1233 | isa = PBXSourcesBuildPhase; 1234 | buildActionMask = 2147483647; 1235 | files = ( 1236 | 2DCD954D1E0B4F2C00145EB5 /* exampleTests.m in Sources */, 1237 | ); 1238 | runOnlyForDeploymentPostprocessing = 0; 1239 | }; 1240 | /* End PBXSourcesBuildPhase section */ 1241 | 1242 | /* Begin PBXTargetDependency section */ 1243 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1244 | isa = PBXTargetDependency; 1245 | target = 13B07F861A680F5B00A75B9A /* example */; 1246 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1247 | }; 1248 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1249 | isa = PBXTargetDependency; 1250 | target = 2D02E47A1E0B4A5D006451C7 /* example-tvOS */; 1251 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1252 | }; 1253 | /* End PBXTargetDependency section */ 1254 | 1255 | /* Begin PBXVariantGroup section */ 1256 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1257 | isa = PBXVariantGroup; 1258 | children = ( 1259 | 13B07FB21A68108700A75B9A /* Base */, 1260 | ); 1261 | name = LaunchScreen.xib; 1262 | path = example; 1263 | sourceTree = ""; 1264 | }; 1265 | /* End PBXVariantGroup section */ 1266 | 1267 | /* Begin XCBuildConfiguration section */ 1268 | 00E356F61AD99517003FC87E /* Debug */ = { 1269 | isa = XCBuildConfiguration; 1270 | buildSettings = { 1271 | BUNDLE_LOADER = "$(TEST_HOST)"; 1272 | GCC_PREPROCESSOR_DEFINITIONS = ( 1273 | "DEBUG=1", 1274 | "$(inherited)", 1275 | ); 1276 | INFOPLIST_FILE = exampleTests/Info.plist; 1277 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1278 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1279 | OTHER_LDFLAGS = ( 1280 | "-ObjC", 1281 | "-lc++", 1282 | ); 1283 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1284 | PRODUCT_NAME = "$(TARGET_NAME)"; 1285 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 1286 | LIBRARY_SEARCH_PATHS = ( 1287 | "$(inherited)", 1288 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1289 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1290 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1291 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1292 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1293 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1294 | ); 1295 | HEADER_SEARCH_PATHS = ( 1296 | "$(inherited)", 1297 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1298 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1299 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1300 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1301 | ); 1302 | }; 1303 | name = Debug; 1304 | }; 1305 | 00E356F71AD99517003FC87E /* Release */ = { 1306 | isa = XCBuildConfiguration; 1307 | buildSettings = { 1308 | BUNDLE_LOADER = "$(TEST_HOST)"; 1309 | COPY_PHASE_STRIP = NO; 1310 | INFOPLIST_FILE = exampleTests/Info.plist; 1311 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1312 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1313 | OTHER_LDFLAGS = ( 1314 | "-ObjC", 1315 | "-lc++", 1316 | ); 1317 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1318 | PRODUCT_NAME = "$(TARGET_NAME)"; 1319 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 1320 | LIBRARY_SEARCH_PATHS = ( 1321 | "$(inherited)", 1322 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1323 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1324 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1325 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1326 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1327 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1328 | ); 1329 | HEADER_SEARCH_PATHS = ( 1330 | "$(inherited)", 1331 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1332 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1333 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1334 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1335 | ); 1336 | }; 1337 | name = Release; 1338 | }; 1339 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1340 | isa = XCBuildConfiguration; 1341 | buildSettings = { 1342 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1343 | CURRENT_PROJECT_VERSION = 1; 1344 | DEAD_CODE_STRIPPING = NO; 1345 | INFOPLIST_FILE = example/Info.plist; 1346 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1347 | OTHER_LDFLAGS = ( 1348 | "$(inherited)", 1349 | "-ObjC", 1350 | "-lc++", 1351 | ); 1352 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1353 | PRODUCT_NAME = example; 1354 | VERSIONING_SYSTEM = "apple-generic"; 1355 | HEADER_SEARCH_PATHS = ( 1356 | "$(inherited)", 1357 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1358 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1359 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1360 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1361 | ); 1362 | }; 1363 | name = Debug; 1364 | }; 1365 | 13B07F951A680F5B00A75B9A /* Release */ = { 1366 | isa = XCBuildConfiguration; 1367 | buildSettings = { 1368 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1369 | CURRENT_PROJECT_VERSION = 1; 1370 | INFOPLIST_FILE = example/Info.plist; 1371 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1372 | OTHER_LDFLAGS = ( 1373 | "$(inherited)", 1374 | "-ObjC", 1375 | "-lc++", 1376 | ); 1377 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1378 | PRODUCT_NAME = example; 1379 | VERSIONING_SYSTEM = "apple-generic"; 1380 | HEADER_SEARCH_PATHS = ( 1381 | "$(inherited)", 1382 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1383 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1384 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1385 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1386 | ); 1387 | }; 1388 | name = Release; 1389 | }; 1390 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1391 | isa = XCBuildConfiguration; 1392 | buildSettings = { 1393 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1394 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1395 | CLANG_ANALYZER_NONNULL = YES; 1396 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1397 | CLANG_WARN_INFINITE_RECURSION = YES; 1398 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1399 | DEBUG_INFORMATION_FORMAT = dwarf; 1400 | ENABLE_TESTABILITY = YES; 1401 | GCC_NO_COMMON_BLOCKS = YES; 1402 | INFOPLIST_FILE = "example-tvOS/Info.plist"; 1403 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1404 | OTHER_LDFLAGS = ( 1405 | "-ObjC", 1406 | "-lc++", 1407 | ); 1408 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS"; 1409 | PRODUCT_NAME = "$(TARGET_NAME)"; 1410 | SDKROOT = appletvos; 1411 | TARGETED_DEVICE_FAMILY = 3; 1412 | TVOS_DEPLOYMENT_TARGET = 9.2; 1413 | LIBRARY_SEARCH_PATHS = ( 1414 | "$(inherited)", 1415 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1416 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1417 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1418 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1419 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1420 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1421 | ); 1422 | HEADER_SEARCH_PATHS = ( 1423 | "$(inherited)", 1424 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1425 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1426 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1427 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1428 | ); 1429 | }; 1430 | name = Debug; 1431 | }; 1432 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1433 | isa = XCBuildConfiguration; 1434 | buildSettings = { 1435 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1436 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1437 | CLANG_ANALYZER_NONNULL = YES; 1438 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1439 | CLANG_WARN_INFINITE_RECURSION = YES; 1440 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1441 | COPY_PHASE_STRIP = NO; 1442 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1443 | GCC_NO_COMMON_BLOCKS = YES; 1444 | INFOPLIST_FILE = "example-tvOS/Info.plist"; 1445 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1446 | OTHER_LDFLAGS = ( 1447 | "-ObjC", 1448 | "-lc++", 1449 | ); 1450 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS"; 1451 | PRODUCT_NAME = "$(TARGET_NAME)"; 1452 | SDKROOT = appletvos; 1453 | TARGETED_DEVICE_FAMILY = 3; 1454 | TVOS_DEPLOYMENT_TARGET = 9.2; 1455 | LIBRARY_SEARCH_PATHS = ( 1456 | "$(inherited)", 1457 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1458 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1459 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1460 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1461 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1462 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1463 | ); 1464 | HEADER_SEARCH_PATHS = ( 1465 | "$(inherited)", 1466 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1467 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1468 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1469 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1470 | ); 1471 | }; 1472 | name = Release; 1473 | }; 1474 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1475 | isa = XCBuildConfiguration; 1476 | buildSettings = { 1477 | BUNDLE_LOADER = "$(TEST_HOST)"; 1478 | CLANG_ANALYZER_NONNULL = YES; 1479 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1480 | CLANG_WARN_INFINITE_RECURSION = YES; 1481 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1482 | DEBUG_INFORMATION_FORMAT = dwarf; 1483 | ENABLE_TESTABILITY = YES; 1484 | GCC_NO_COMMON_BLOCKS = YES; 1485 | INFOPLIST_FILE = "example-tvOSTests/Info.plist"; 1486 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1487 | OTHER_LDFLAGS = ( 1488 | "-ObjC", 1489 | "-lc++", 1490 | ); 1491 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests"; 1492 | PRODUCT_NAME = "$(TARGET_NAME)"; 1493 | SDKROOT = appletvos; 1494 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS"; 1495 | TVOS_DEPLOYMENT_TARGET = 10.1; 1496 | LIBRARY_SEARCH_PATHS = ( 1497 | "$(inherited)", 1498 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1499 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1500 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1501 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1502 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1503 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1504 | ); 1505 | HEADER_SEARCH_PATHS = ( 1506 | "$(inherited)", 1507 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1508 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1509 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1510 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1511 | ); 1512 | }; 1513 | name = Debug; 1514 | }; 1515 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1516 | isa = XCBuildConfiguration; 1517 | buildSettings = { 1518 | BUNDLE_LOADER = "$(TEST_HOST)"; 1519 | CLANG_ANALYZER_NONNULL = YES; 1520 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1521 | CLANG_WARN_INFINITE_RECURSION = YES; 1522 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1523 | COPY_PHASE_STRIP = NO; 1524 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1525 | GCC_NO_COMMON_BLOCKS = YES; 1526 | INFOPLIST_FILE = "example-tvOSTests/Info.plist"; 1527 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1528 | OTHER_LDFLAGS = ( 1529 | "-ObjC", 1530 | "-lc++", 1531 | ); 1532 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests"; 1533 | PRODUCT_NAME = "$(TARGET_NAME)"; 1534 | SDKROOT = appletvos; 1535 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS"; 1536 | TVOS_DEPLOYMENT_TARGET = 10.1; 1537 | LIBRARY_SEARCH_PATHS = ( 1538 | "$(inherited)", 1539 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1540 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1541 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1542 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1543 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1544 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1545 | ); 1546 | HEADER_SEARCH_PATHS = ( 1547 | "$(inherited)", 1548 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1549 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1550 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1551 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1552 | ); 1553 | }; 1554 | name = Release; 1555 | }; 1556 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1557 | isa = XCBuildConfiguration; 1558 | buildSettings = { 1559 | ALWAYS_SEARCH_USER_PATHS = NO; 1560 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1561 | CLANG_CXX_LIBRARY = "libc++"; 1562 | CLANG_ENABLE_MODULES = YES; 1563 | CLANG_ENABLE_OBJC_ARC = YES; 1564 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1565 | CLANG_WARN_BOOL_CONVERSION = YES; 1566 | CLANG_WARN_COMMA = YES; 1567 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1568 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1569 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1570 | CLANG_WARN_EMPTY_BODY = YES; 1571 | CLANG_WARN_ENUM_CONVERSION = YES; 1572 | CLANG_WARN_INFINITE_RECURSION = YES; 1573 | CLANG_WARN_INT_CONVERSION = YES; 1574 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1575 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1576 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1577 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1578 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1579 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1580 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1581 | CLANG_WARN_UNREACHABLE_CODE = YES; 1582 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1583 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1584 | COPY_PHASE_STRIP = NO; 1585 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1586 | ENABLE_TESTABILITY = YES; 1587 | GCC_C_LANGUAGE_STANDARD = gnu99; 1588 | GCC_DYNAMIC_NO_PIC = NO; 1589 | GCC_NO_COMMON_BLOCKS = YES; 1590 | GCC_OPTIMIZATION_LEVEL = 0; 1591 | GCC_PREPROCESSOR_DEFINITIONS = ( 1592 | "DEBUG=1", 1593 | "$(inherited)", 1594 | ); 1595 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1596 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1597 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1598 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1599 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1600 | GCC_WARN_UNUSED_FUNCTION = YES; 1601 | GCC_WARN_UNUSED_VARIABLE = YES; 1602 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1603 | MTL_ENABLE_DEBUG_INFO = YES; 1604 | ONLY_ACTIVE_ARCH = YES; 1605 | SDKROOT = iphoneos; 1606 | }; 1607 | name = Debug; 1608 | }; 1609 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1610 | isa = XCBuildConfiguration; 1611 | buildSettings = { 1612 | ALWAYS_SEARCH_USER_PATHS = NO; 1613 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1614 | CLANG_CXX_LIBRARY = "libc++"; 1615 | CLANG_ENABLE_MODULES = YES; 1616 | CLANG_ENABLE_OBJC_ARC = YES; 1617 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1618 | CLANG_WARN_BOOL_CONVERSION = YES; 1619 | CLANG_WARN_COMMA = YES; 1620 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1621 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1622 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1623 | CLANG_WARN_EMPTY_BODY = YES; 1624 | CLANG_WARN_ENUM_CONVERSION = YES; 1625 | CLANG_WARN_INFINITE_RECURSION = YES; 1626 | CLANG_WARN_INT_CONVERSION = YES; 1627 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1628 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1629 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1630 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1631 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1632 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1633 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1634 | CLANG_WARN_UNREACHABLE_CODE = YES; 1635 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1636 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1637 | COPY_PHASE_STRIP = YES; 1638 | ENABLE_NS_ASSERTIONS = NO; 1639 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1640 | GCC_C_LANGUAGE_STANDARD = gnu99; 1641 | GCC_NO_COMMON_BLOCKS = YES; 1642 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1643 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1644 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1645 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1646 | GCC_WARN_UNUSED_FUNCTION = YES; 1647 | GCC_WARN_UNUSED_VARIABLE = YES; 1648 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1649 | MTL_ENABLE_DEBUG_INFO = NO; 1650 | SDKROOT = iphoneos; 1651 | VALIDATE_PRODUCT = YES; 1652 | }; 1653 | name = Release; 1654 | }; 1655 | /* End XCBuildConfiguration section */ 1656 | 1657 | /* Begin XCConfigurationList section */ 1658 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = { 1659 | isa = XCConfigurationList; 1660 | buildConfigurations = ( 1661 | 00E356F61AD99517003FC87E /* Debug */, 1662 | 00E356F71AD99517003FC87E /* Release */, 1663 | ); 1664 | defaultConfigurationIsVisible = 0; 1665 | defaultConfigurationName = Release; 1666 | }; 1667 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = { 1668 | isa = XCConfigurationList; 1669 | buildConfigurations = ( 1670 | 13B07F941A680F5B00A75B9A /* Debug */, 1671 | 13B07F951A680F5B00A75B9A /* Release */, 1672 | ); 1673 | defaultConfigurationIsVisible = 0; 1674 | defaultConfigurationName = Release; 1675 | }; 1676 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */ = { 1677 | isa = XCConfigurationList; 1678 | buildConfigurations = ( 1679 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1680 | 2D02E4981E0B4A5E006451C7 /* Release */, 1681 | ); 1682 | defaultConfigurationIsVisible = 0; 1683 | defaultConfigurationName = Release; 1684 | }; 1685 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */ = { 1686 | isa = XCConfigurationList; 1687 | buildConfigurations = ( 1688 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1689 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1690 | ); 1691 | defaultConfigurationIsVisible = 0; 1692 | defaultConfigurationName = Release; 1693 | }; 1694 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = { 1695 | isa = XCConfigurationList; 1696 | buildConfigurations = ( 1697 | 83CBBA201A601CBA00E9B192 /* Debug */, 1698 | 83CBBA211A601CBA00E9B192 /* Release */, 1699 | ); 1700 | defaultConfigurationIsVisible = 0; 1701 | defaultConfigurationName = Release; 1702 | }; 1703 | /* End XCConfigurationList section */ 1704 | }; 1705 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1706 | } 1707 | -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example-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 | -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.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 | -------------------------------------------------------------------------------- /example/ios/example/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 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (nonatomic, strong) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /example/ios/example/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 | #import 13 | 14 | @implementation AppDelegate 15 | 16 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 17 | { 18 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 19 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 20 | moduleName:@"example" 21 | initialProperties:nil]; 22 | 23 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 24 | 25 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 26 | UIViewController *rootViewController = [UIViewController new]; 27 | rootViewController.view = rootView; 28 | self.window.rootViewController = rootViewController; 29 | [self.window makeKeyAndVisible]; 30 | return YES; 31 | } 32 | 33 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 34 | { 35 | #if DEBUG 36 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 37 | #else 38 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 39 | #endif 40 | } 41 | 42 | @end 43 | -------------------------------------------------------------------------------- /example/ios/example/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 | -------------------------------------------------------------------------------- /example/ios/example/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 | } -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | example 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 | -------------------------------------------------------------------------------- /example/ios/example/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 | -------------------------------------------------------------------------------- /example/ios/exampleTests/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 | -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.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 exampleTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation exampleTests 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 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: false, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest", 8 | "lint": "eslint ." 9 | }, 10 | "dependencies": { 11 | "react": "16.8.3", 12 | "react-native": "0.62.3", 13 | "react-native-animation-layout": "0.0.13", 14 | "react-native-dynamic-search-bar": "0.0.17", 15 | "react-native-dynamic-vector-icons": "0.0.3", 16 | "react-native-fast-image": "^8.3.0", 17 | "react-native-gradient-card-view": "0.0.15", 18 | "react-native-iphone-x-helper": "^1.2.0", 19 | "react-native-linear-gradient": "^2.5.4", 20 | "react-native-material-ripple": "^0.8.0", 21 | "react-native-svg": "^9.3.6", 22 | "react-native-svg-charts": "^5.2.0", 23 | "react-native-vector-icons": "^6.4.2" 24 | }, 25 | "devDependencies": { 26 | "@babel/core": "^7.4.0", 27 | "@babel/runtime": "^7.4.2", 28 | "@react-native-community/eslint-config": "^0.0.3", 29 | "babel-jest": "^24.5.0", 30 | "eslint": "^5.16.0", 31 | "jest": "^24.5.0", 32 | "metro-react-native-babel-preset": "^0.53.1", 33 | "react-test-renderer": "16.8.3" 34 | }, 35 | "jest": { 36 | "preset": "react-native" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /example/src/data/staticData.js: -------------------------------------------------------------------------------- 1 | export default (staticData = [ 2 | { 3 | name: "Bitcoin", 4 | shortName: "BTC", 5 | value: "$ 4081,95", 6 | change: "+ 1,48 ↑", 7 | fillColor: "rgba(163, 224, 97, 0.2)", 8 | strokeColor: "rgba(163, 224, 97, 1.0)", 9 | image: require("../../assets/cryptocurrency/BitConnect.png"), 10 | data: [ 11 | Math.random() * 10, 12 | Math.random() * 10, 13 | Math.random() * 10, 14 | Math.random() * 10, 15 | Math.random() * 10, 16 | Math.random() * 10, 17 | Math.random() * 10, 18 | Math.random() * 10, 19 | Math.random() * 10, 20 | Math.random() * 10, 21 | Math.random() * 10, 22 | Math.random() * 10 23 | ] 24 | }, 25 | { 26 | name: "Ethereum", 27 | shortName: "ETH", 28 | value: "$ 141.39", 29 | change: "+ 0,59 ↓", 30 | fillColor: "rgba(234, 53, 53, 0.2)", 31 | strokeColor: "rgba(234, 53, 53, 1.0)", 32 | image: require("../../assets/cryptocurrency/Ethereum.png"), 33 | data: [ 34 | Math.random() * 10, 35 | Math.random() * 10, 36 | Math.random() * 10, 37 | Math.random() * 10, 38 | Math.random() * 10, 39 | Math.random() * 10, 40 | Math.random() * 10, 41 | Math.random() * 10, 42 | Math.random() * 10, 43 | Math.random() * 10, 44 | Math.random() * 10, 45 | Math.random() * 10 46 | ] 47 | }, 48 | { 49 | name: "Litecoin", 50 | shortName: "BCH", 51 | value: "$ 1535.39", 52 | change: "+ 1,51 ↓", 53 | fillColor: "rgba(234, 53, 53, 0.2)", 54 | strokeColor: "rgba(234, 53, 53, 1.0)", 55 | image: require("../../assets/cryptocurrency/Litecoin.png"), 56 | data: [ 57 | Math.random() * 10, 58 | Math.random() * 10, 59 | Math.random() * 10, 60 | Math.random() * 10, 61 | Math.random() * 10, 62 | Math.random() * 10, 63 | Math.random() * 10, 64 | Math.random() * 10, 65 | Math.random() * 10, 66 | Math.random() * 10, 67 | Math.random() * 10, 68 | Math.random() * 10 69 | ] 70 | }, 71 | { 72 | name: "Ripple", 73 | shortName: "XRP", 74 | value: "$ 4081,95", 75 | change: "+ 1,48 ↑", 76 | fillColor: "rgba(163, 224, 97, 0.2)", 77 | strokeColor: "rgba(163, 224, 97, 1.0)", 78 | image: require("../../assets/cryptocurrency/Ripple.png"), 79 | data: [ 80 | Math.random() * 10, 81 | Math.random() * 10, 82 | Math.random() * 10, 83 | Math.random() * 10, 84 | Math.random() * 10, 85 | Math.random() * 10, 86 | Math.random() * 10, 87 | Math.random() * 10, 88 | Math.random() * 10, 89 | Math.random() * 10, 90 | Math.random() * 10, 91 | Math.random() * 10 92 | ] 93 | }, 94 | { 95 | name: "Dash", 96 | shortName: "DSH", 97 | value: "$ 141.39", 98 | change: "+ 0,59 ↓", 99 | fillColor: "rgba(234, 53, 53, 0.2)", 100 | strokeColor: "rgba(234, 53, 53, 1.0)", 101 | image: require("../../assets/cryptocurrency/Dash.png"), 102 | data: [ 103 | Math.random() * 10, 104 | Math.random() * 10, 105 | Math.random() * 10, 106 | Math.random() * 10, 107 | Math.random() * 10, 108 | Math.random() * 10, 109 | Math.random() * 10, 110 | Math.random() * 10, 111 | Math.random() * 10, 112 | Math.random() * 10, 113 | Math.random() * 10, 114 | Math.random() * 10 115 | ] 116 | }, 117 | { 118 | name: "Iota", 119 | shortName: "MIOTA", 120 | value: "$ 141.39", 121 | change: "+ 0,59 ↓", 122 | fillColor: "rgba(234, 53, 53, 0.2)", 123 | strokeColor: "rgba(234, 53, 53, 1.0)", 124 | image: require("../../assets/cryptocurrency/IOTA.png"), 125 | data: [ 126 | Math.random() * 10, 127 | Math.random() * 10, 128 | Math.random() * 10, 129 | Math.random() * 10, 130 | Math.random() * 10, 131 | Math.random() * 10, 132 | Math.random() * 10, 133 | Math.random() * 10, 134 | Math.random() * 10, 135 | Math.random() * 10, 136 | Math.random() * 10, 137 | Math.random() * 10 138 | ] 139 | }, 140 | { 141 | name: "Eos", 142 | shortName: "EOS", 143 | value: "$ 4081,95", 144 | change: "+ 1,48 ↑", 145 | fillColor: "rgba(163, 224, 97, 0.2)", 146 | strokeColor: "rgba(163, 224, 97, 1.0)", 147 | image: require("../../assets/cryptocurrency/EOS.png"), 148 | data: [ 149 | Math.random() * 10, 150 | Math.random() * 10, 151 | Math.random() * 10, 152 | Math.random() * 10, 153 | Math.random() * 10, 154 | Math.random() * 10, 155 | Math.random() * 10, 156 | Math.random() * 10, 157 | Math.random() * 10, 158 | Math.random() * 10, 159 | Math.random() * 10, 160 | Math.random() * 10 161 | ] 162 | }, 163 | { 164 | name: "Neo", 165 | shortName: "NEO", 166 | value: "$ 141.39", 167 | change: "+ 0,59 ↓", 168 | fillColor: "rgba(234, 53, 53, 0.2)", 169 | strokeColor: "rgba(234, 53, 53, 1.0)", 170 | image: require("../../assets/cryptocurrency/Netko-coin.png"), 171 | data: [ 172 | Math.random() * 10, 173 | Math.random() * 10, 174 | Math.random() * 10, 175 | Math.random() * 10, 176 | Math.random() * 10, 177 | Math.random() * 10, 178 | Math.random() * 10, 179 | Math.random() * 10, 180 | Math.random() * 10, 181 | Math.random() * 10, 182 | Math.random() * 10, 183 | Math.random() * 10 184 | ] 185 | } 186 | ]); 187 | -------------------------------------------------------------------------------- /lib/src/components/CustomLayoutAnimations.js: -------------------------------------------------------------------------------- 1 | import { LayoutAnimation } from "react-native"; 2 | 3 | function setAnimationType(animationType) { 4 | if (animationType) { 5 | switch (animationType) { 6 | case "opacity": 7 | return LayoutAnimation.Properties.opacity; 8 | case "scaleXY": 9 | return LayoutAnimation.Properties.scaleXY; 10 | default: 11 | return LayoutAnimation.Properties.opacity; 12 | } 13 | } 14 | return LayoutAnimation.Properties.opacity; 15 | } 16 | 17 | // Spring 18 | export function CustomLayoutSpring(duration, springDamping, animationType) { 19 | return { 20 | duration: duration || 700, 21 | create: { 22 | type: LayoutAnimation.Types.spring, 23 | property: setAnimationType(animationType), 24 | springDamping: springDamping || 0.7 25 | }, 26 | delete: { 27 | type: LayoutAnimation.Types.spring, 28 | property: setAnimationType(animationType), 29 | springDamping: springDamping || 0.7 30 | } 31 | }; 32 | } 33 | 34 | // Linear with easing 35 | export function CustomLayoutLinear(duration, animationType) { 36 | return { 37 | duration: duration || 500, 38 | create: { 39 | type: LayoutAnimation.Types.linear, 40 | property: setAnimationType(animationType) 41 | }, 42 | update: { 43 | type: LayoutAnimation.Types.curveEaseInEaseOut, 44 | property: setAnimationType(animationType) 45 | }, 46 | delete: { 47 | type: LayoutAnimation.Types.linear, 48 | property: setAnimationType(animationType) 49 | } 50 | }; 51 | } 52 | 53 | // Animation Type : EaseIn 54 | export function CustomLayoutEaseIn(duration, animationType) { 55 | return { 56 | duration: duration || 500, 57 | create: { 58 | type: LayoutAnimation.Types.easeIn, 59 | property: setAnimationType(animationType) 60 | }, 61 | update: { 62 | type: LayoutAnimation.Types.curveEaseInEaseOut, 63 | property: setAnimationType(animationType) 64 | }, 65 | delete: { 66 | type: LayoutAnimation.Types.easeIn, 67 | property: setAnimationType(animationType) 68 | } 69 | }; 70 | } 71 | 72 | // Animation Type : EaseOut 73 | export function CustomLayoutEaseOut(duration, animationType) { 74 | return { 75 | duration: duration || 500, 76 | create: { 77 | type: LayoutAnimation.Types.easeOut, 78 | property: setAnimationType(animationType) 79 | }, 80 | update: { 81 | type: LayoutAnimation.Types.curveEaseInEaseOut, 82 | property: setAnimationType(animationType) 83 | }, 84 | delete: { 85 | type: LayoutAnimation.Types.easeOut, 86 | property: setAnimationType(animationType) 87 | } 88 | }; 89 | } 90 | 91 | // Animation Type : EaseInEaseOut 92 | export function CustomLayoutEaseInEaseOut(duration, animationType) { 93 | return { 94 | duration: duration || 500, 95 | create: { 96 | type: LayoutAnimation.Types.curveEaseInEaseOut, 97 | property: setAnimationType(animationType) 98 | }, 99 | update: { 100 | type: LayoutAnimation.Types.spring, 101 | property: setAnimationType(animationType) 102 | }, 103 | delete: { 104 | type: LayoutAnimation.Types.curveEaseInEaseOut, 105 | property: setAnimationType(animationType) 106 | } 107 | }; 108 | } 109 | 110 | // Animation Type : Keyboard 111 | export function CustomLayoutKeyboard(duration, animationType) { 112 | return { 113 | duration: duration || 500, 114 | create: { 115 | type: LayoutAnimation.Types.keyboard, 116 | property: setAnimationType(animationType) 117 | }, 118 | update: { 119 | type: LayoutAnimation.Types.spring, 120 | property: setAnimationType(animationType) 121 | }, 122 | delete: { 123 | type: LayoutAnimation.Types.keyboard, 124 | property: setAnimationType(animationType) 125 | } 126 | }; 127 | } 128 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-animation-layout", 3 | "version": "0.0.13", 4 | "description": "Fully customizable Animation Layouts for React Native.", 5 | "keywords": [ 6 | "gradient", 7 | "card", 8 | "search", 9 | "search-bar", 10 | "dynamic", 11 | "dynamic-search-bar", 12 | "FreakyCoder", 13 | "freakycoder", 14 | "kuray", 15 | "Kuray", 16 | "react", 17 | "react-native", 18 | "javascript", 19 | "ui-lib", 20 | "rn" 21 | ], 22 | "homepage": "https://www.freakycoder.com", 23 | "bugs": "https://github.com/WrathChaos/react-native-dynamic-search-bar/issues", 24 | "main": "./lib/src/components/CustomLayoutAnimations.js", 25 | "repository": "git@github.com:WrathChaos/react-native-dynamic-search-bar.git", 26 | "author": "Kuray (FreakyCoder) ", 27 | "license": "MIT", 28 | "peerDependencies": { 29 | "react": ">= 16.x.x", 30 | "react-native": ">= 0.55.x" 31 | } 32 | } 33 | --------------------------------------------------------------------------------