├── .watchmanconfig ├── example ├── .watchmanconfig ├── .gitattributes ├── app.json ├── babel.config.js ├── android │ ├── app │ │ ├── src │ │ │ ├── main │ │ │ │ ├── res │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── assets │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ │ ├── Zocial.ttf │ │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ │ └── MaterialCommunityIcons.ttf │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ └── AndroidManifest.xml │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ ├── BUCK │ │ └── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── keystores │ │ ├── debug.keystore.properties │ │ └── BUCK │ ├── settings.gradle │ ├── gradle.properties │ ├── build.gradle │ ├── gradlew.bat │ └── gradlew ├── assets │ └── parabol_logo.png ├── ios │ ├── example │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── AppDelegate.h │ │ ├── main.m │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── Base.lproj │ │ │ └── LaunchScreen.xib │ ├── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example-tvOS │ │ └── Info.plist │ └── example.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example.xcscheme │ │ │ └── example-tvOS.xcscheme │ │ └── project.pbxproj ├── .buckconfig ├── index.js ├── __tests__ │ └── App-test.js ├── metro.config.js ├── package.json ├── .gitignore ├── .flowconfig └── App.js ├── .gitattributes ├── assets ├── icon.png ├── splash.png ├── op_logo.png └── Screenshots │ └── example.png ├── .npmignore ├── babel.config.js ├── .eslintrc.js ├── lib └── src │ └── components │ ├── styles │ ├── colors.js │ └── CardButton.style.js │ └── CardButton.js ├── .gitignore ├── package.json └── README.md /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "displayName": "example" 4 | } -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/op_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/assets/op_logo.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Node Modules 2 | **/node_modules 3 | node_modules 4 | # Example 5 | example 6 | # Assets 7 | Assets 8 | assets -------------------------------------------------------------------------------- /assets/Screenshots/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/assets/Screenshots/example.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | example 3 | 4 | -------------------------------------------------------------------------------- /example/assets/parabol_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/assets/parabol_logo.png -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /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/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /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/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paraboly/react-native-card-button/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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/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/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/__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/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/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/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/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/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | include ':react-native-fast-image' 3 | project(':react-native-fast-image').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fast-image/android') 4 | include ':react-native-linear-gradient' 5 | project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android') 6 | include ':react-native-vector-icons' 7 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 8 | 9 | include ':app' 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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/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/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/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 | }, 9 | "dependencies": { 10 | "react": "16.8.3", 11 | "react-native": "0.62.3", 12 | "react-native-dynamic-vector-icons": "0.0.3", 13 | "react-native-fast-image": "^8.3.0", 14 | "react-native-linear-gradient": "^2.5.4", 15 | "react-native-material-ripple": "^0.8.0", 16 | "react-native-vector-icons": "^6.4.2" 17 | }, 18 | "devDependencies": { 19 | "@babel/core": "^7.4.4", 20 | "@babel/runtime": "^7.4.4", 21 | "babel-jest": "^24.8.0", 22 | "jest": "^24.8.0", 23 | "metro-react-native-babel-preset": "^0.54.0", 24 | "react-test-renderer": "16.8.3" 25 | }, 26 | "jest": { 27 | "preset": "react-native" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/src/components/styles/colors.js: -------------------------------------------------------------------------------- 1 | export default { 2 | theme: { 3 | light: { 4 | white: "#fff", 5 | black: "#000", 6 | primary: "#678fee", 7 | iconColor: "#b3b6c3", 8 | primaryGrey: "#b3b6c3", 9 | shadowColor: "#757575", 10 | lightenGrey: "#cdcfd6", 11 | primaryDark: "#455478", 12 | primaryWhite: "#fbfbfb", 13 | primaryBackground: "#fbfbfd", 14 | drawingColor: "rgba(0, 47, 124, 0.7)", 15 | dividerColor: "rgba(174, 190, 250, 0.3)" 16 | } 17 | } 18 | }; 19 | 20 | export const bottomBarTheme = { 21 | default: { 22 | shapeColor: "#fbfbfd", 23 | mainButtonGradient: ["#4370d6", "#678fee", "#a7c0fb"], 24 | buttonColor: "#b2b6c4" 25 | }, 26 | blue: { 27 | shapeColor: "rgba(110, 157, 251, 1.0)", 28 | mainButtonGradient: ["#eceff8", "#f9fbff", "#fff"], 29 | buttonColor: "#fbfbfd" 30 | } 31 | }; 32 | -------------------------------------------------------------------------------- /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/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/.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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@paraboly/react-native-card-button", 3 | "description": "Customizable Card Button via Paraboly for React Native.", 4 | "version": "0.0.16", 5 | "keywords": [ 6 | "react-native", 7 | "icons", 8 | "javascript", 9 | "ui-lib", 10 | "rn", 11 | "generic", 12 | "card", 13 | "card-button", 14 | "view" 15 | ], 16 | "homepage": "https://www.freakycoder.com", 17 | "bugs": "https://github.com/Paraboly/react-native-card-button/issues", 18 | "main": "./lib/src/components/CardButton.js", 19 | "repository": "git@github.com:Paraboly/react-native-card-button.git", 20 | "author": "Kuray (FreakyCoder) ", 21 | "license": "MIT", 22 | "devDependencies": { 23 | "babel-preset-expo": "^5.0.0" 24 | }, 25 | "peerDependencies": { 26 | "react": ">= 16.x", 27 | "react-native": ">= 0.55.x", 28 | "react-native-vector-icons": ">= 6.x.x", 29 | "react-native-linear-gradient": ">= 0.2.x", 30 | "react-native-material-ripple": ">= 0.8.x", 31 | "react-native-dynamic-vector-icons": ">= x.x.x" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/src/components/styles/CardButton.style.js: -------------------------------------------------------------------------------- 1 | import { Platform } from "react-native"; 2 | import colors from "./colors"; 3 | 4 | export function functionTextStyle(textSize, textColor) { 5 | return { 6 | textAlign: "center", 7 | fontSize: textSize || 12, 8 | color: textColor || colors.theme.light.lightenGrey 9 | }; 10 | } 11 | 12 | export function container(height, width, borderRadius) { 13 | return { 14 | width: width, 15 | height: height, 16 | alignItems: "center", 17 | justifyContent: "center", 18 | borderRadius: borderRadius 19 | }; 20 | } 21 | 22 | export function normalTypeContainer( 23 | height, 24 | width, 25 | borderRadius, 26 | backgroundColor 27 | ) { 28 | return { 29 | width: width, 30 | height: height, 31 | alignItems: "center", 32 | justifyContent: "center", 33 | borderRadius: borderRadius, 34 | backgroundColor: backgroundColor 35 | }; 36 | } 37 | 38 | export default { 39 | shadowStyle: { 40 | ...Platform.select({ 41 | ios: { 42 | shadowRadius: 7, 43 | shadowOpacity: 1, 44 | shadowColor: "rgba(93, 93, 93, 0.25)", 45 | shadowOffset: { 46 | width: 2, 47 | height: 2 48 | } 49 | }, 50 | android: { 51 | elevation: 2 52 | } 53 | }) 54 | }, 55 | column: { flexDirection: "column" } 56 | }; 57 | -------------------------------------------------------------------------------- /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/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.dylanvann.fastimage.FastImageViewPackage; 7 | import com.BV.LinearGradient.LinearGradientPackage; 8 | import com.oblador.vectoricons.VectorIconsPackage; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | 14 | import java.util.Arrays; 15 | import java.util.List; 16 | 17 | public class MainApplication extends Application implements ReactApplication { 18 | 19 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | return Arrays.asList( 28 | new MainReactPackage(), 29 | new FastImageViewPackage(), 30 | new LinearGradientPackage(), 31 | new VectorIconsPackage() 32 | ); 33 | } 34 | 35 | @Override 36 | protected String getJSMainModuleName() { 37 | return "index"; 38 | } 39 | }; 40 | 41 | @Override 42 | public ReactNativeHost getReactNativeHost() { 43 | return mReactNativeHost; 44 | } 45 | 46 | @Override 47 | public void onCreate() { 48 | super.onCreate(); 49 | SoLoader.init(this, /* native exopackage */ false); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /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-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/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/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/.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/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/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import FastImage from "react-native-fast-image"; 3 | import { StyleSheet, View } from "react-native"; 4 | import CardButton from "./lib/src/components/CardButton"; 5 | import LinearGradient from "react-native-linear-gradient"; 6 | 7 | export default class App extends Component { 8 | render() { 9 | return ( 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 33 | 44 | 45 | 46 | 58 | 69 | 70 | 71 | 72 | 73 | ); 74 | } 75 | } 76 | 77 | const styles = StyleSheet.create({ 78 | container: { 79 | flex: 1, 80 | alignItems: "center", 81 | backgroundColor: "#F5FCFF" 82 | }, 83 | containerGlue: { 84 | flex: 1, 85 | marginTop: "35%", 86 | flexDirection: "column" 87 | }, 88 | buttonContainer: { 89 | height: 350, 90 | flexDirection: "column", 91 | justifyContent: "space-evenly" 92 | }, 93 | logoStyle: { 94 | height: 150, 95 | width: 350 96 | }, 97 | rowStyle: { 98 | width: 350, 99 | alignSelf: "center", 100 | flexDirection: "row", 101 | alignContent: "center", 102 | justifyContent: "space-around" 103 | } 104 | }); 105 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/src/components/CardButton.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import PropTypes from "prop-types"; 3 | import colors from "./styles/colors"; 4 | import { Text, View } from "react-native"; 5 | import Ripple from "react-native-material-ripple"; 6 | import Icon from "react-native-dynamic-vector-icons"; 7 | import LinearGradient from "react-native-linear-gradient"; 8 | import styles, { 9 | container, 10 | functionTextStyle, 11 | normalTypeContainer 12 | } from "./styles/CardButton.style"; 13 | 14 | const CardButton = props => { 15 | function renderContainer() { 16 | const { 17 | text, 18 | iconName, 19 | iconSize, 20 | iconType, 21 | iconColor, 22 | textSize, 23 | textColor, 24 | iconComponent, 25 | textComponent, 26 | customTextStyle 27 | } = props; 28 | return ( 29 | 30 | {iconComponent || ( 31 | 37 | 43 | 44 | )} 45 | {textComponent || ( 46 | 49 | {text} 50 | 51 | )} 52 | 53 | ); 54 | } 55 | 56 | function renderGradient() { 57 | const { 58 | end, 59 | start, 60 | width, 61 | height, 62 | onPress, 63 | locations, 64 | rippleColor, 65 | shadowStyle, 66 | borderRadius, 67 | gradientColors, 68 | rippleContainerBorderRadius 69 | } = props; 70 | return ( 71 | 77 | 84 | {renderContainer()} 85 | 86 | 87 | ); 88 | } 89 | 90 | function renderNormal() { 91 | const { 92 | width, 93 | height, 94 | onPress, 95 | rippleColor, 96 | shadowStyle, 97 | borderRadius, 98 | backgroundColor, 99 | rippleContainerBorderRadius 100 | } = props; 101 | return ( 102 | 107 | 113 | {renderContainer()} 114 | 115 | 116 | ); 117 | } 118 | 119 | const { gradient } = props; 120 | const renderCardButton = gradient ? renderGradient() : renderNormal(); 121 | return renderCardButton; 122 | }; 123 | 124 | CardButton.propTypes = { 125 | end: PropTypes.object, 126 | text: PropTypes.string, 127 | start: PropTypes.object, 128 | width: PropTypes.number, 129 | gradient: PropTypes.bool, 130 | height: PropTypes.number, 131 | iconName: PropTypes.string, 132 | iconSize: PropTypes.number, 133 | iconType: PropTypes.string, 134 | iconColor: PropTypes.string, 135 | rippleColor: PropTypes.string, 136 | borderRadius: PropTypes.number, 137 | gradientColors: PropTypes.array, 138 | backgroundColor: PropTypes.string, 139 | rippleContainerBorderRadius: PropTypes.number 140 | }; 141 | 142 | CardButton.defaultProps = { 143 | width: 90, 144 | height: 90, 145 | text: "Test", 146 | iconSize: 36, 147 | gradient: true, 148 | borderRadius: 20, 149 | iconName: "traffic", 150 | end: { x: 0, y: 1 }, 151 | start: { x: 0.5, y: 0 }, 152 | iconType: "MaterialIcons", 153 | backgroundColor: "#fcfcfc", 154 | rippleContainerBorderRadius: 20, 155 | rippleColor: colors.theme.light.primary, 156 | iconColor: colors.theme.light.lightenGrey, 157 | gradientColors: ["#f9f7b4", "#f7c77e", "#e8ba6b"] 158 | }; 159 | 160 | export default CardButton; 161 | -------------------------------------------------------------------------------- /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.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Paraboly React Native Card Button 2 | 3 | Fully customizable Card Button via Paraboly for React Native. 4 | 5 | [![npm version](https://img.shields.io/npm/v/@paraboly/react-native-card-button.svg)](https://www.npmjs.com/package/@paraboly/react-native-card-button) 6 | [![npm](https://img.shields.io/npm/dt/@paraboly/react-native-card-button.svg)](https://www.npmjs.com/package/@paraboly/react-native-card-button) 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 Card Button 13 |

14 | 15 | 16 | ## Installation 17 | 18 | Add the dependency: 19 | 20 | ```ruby 21 | npm i @paraboly/react-native-card-button 22 | ``` 23 | 24 | ## Peer Dependencies 25 | 26 | ##### IMPORTANT! You need install them. 27 | 28 | ``` 29 | "react": ">= 16.x", 30 | "react-native": ">= 0.55.x", 31 | "react-native-vector-icons": ">= 6.x.x", 32 | "react-native-linear-gradient": ">= 0.2.x", 33 | "react-native-material-ripple": ">= 0.8.x", 34 | "react-native-dynamic-vector-icons": ">= x.x.x" 35 | ``` 36 | 37 | ## Basic Usage 38 | 39 | ```js 40 | 41 | ``` 42 | 43 | ## Solid Background (Non Gradient) Usage 44 | ```js 45 | 46 | ``` 47 | 48 | 49 | ## Advanced Usage 50 | 51 | ```js 52 | 65 | 69 | 70 | } 71 | /> 72 | ``` 73 | 74 | ### Configuration - Props 75 | 76 | 77 | | Property | Type | Default | Description | 78 | | --------------------------- | :---------: | :-------------------------------: | ------------------------------------------------------------------------------- | 79 | | gradient | boolean | true | if you do not want to use card button with gradient color, simply make it false | 80 | | width | number | 90 | change the card button's width | 81 | | height | number | 90 | change the card button's height | 82 | | start | object | { x: 0, y: 1 } | change the gradient's start way | 83 | | end | object | { x: 0, y: 1 } | change the gradient's end way | 84 | | text | string | Test | use this to set card button's below text | 85 | | gradientColors | color array | ["#f9f7b4", "#f7c77e", "#e8ba6b"] | use this to set your own gradient colors | 86 | | modalBottom | number | height * 0.6 | use this to change where modal will be appear depends on the bottom | 87 | | borderRadius | number | 20 | change the border radius | 88 | | iconName | string | traffic | change the icon itself | 89 | | iconSize | number | 36 | change the icon's size | 90 | | iconType | string | MaterialIcons | change the icon's type | 91 | | iconColor | color | "#cdcfd6" | change the icon's color | 92 | | rippleColor | color | "#678fee" | change the ripple color | 93 | | fontFamily | font family | default | use this to set your own font family | 94 | | backgroundColor | color | "#fcfcfc" | change the background color if you want to use solid color | 95 | | rippleContainerBorderRadius | number | 20 | change the ripple's border radius | 96 | 97 | ## Author 98 | 99 | FreakyCoder, kuray.ogun@paraboly.com || kurayogun@gmail.com 100 | 101 | ## License 102 | 103 | React Native Card Button Library is available under the MIT license. See the LICENSE file for more info. 104 | -------------------------------------------------------------------------------- /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/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-fast-image') 142 | implementation project(':react-native-linear-gradient') 143 | implementation project(':react-native-vector-icons') 144 | implementation fileTree(dir: "libs", include: ["*.jar"]) 145 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 146 | implementation "com.facebook.react:react-native:+" // From node_modules 147 | } 148 | 149 | // Run this once to be able to run the application with BUCK 150 | // puts all compile dependencies into folder libs for BUCK to use 151 | task copyDownloadableDepsToLibs(type: Copy) { 152 | from configurations.compile 153 | into 'libs' 154 | } 155 | -------------------------------------------------------------------------------- /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 | CA5A809F7BDD4176B134B81C /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 693305E12DA74994AA18498A /* libRNVectorIcons.a */; }; 43 | B0061FD88AC240639C35A81E /* libRNVectorIcons-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4141359E11CB4B7A986F1692 /* libRNVectorIcons-tvOS.a */; }; 44 | 914199FDC879464F8795DAAD /* AntDesign.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 52B17AE311E14015AB66981C /* AntDesign.ttf */; }; 45 | 24B1F6FA4442452AA4649387 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = ED5E5265708A4655B404F18C /* Entypo.ttf */; }; 46 | 0464B779AC914D0CBC9787A3 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7E627358B74C4649A9657F3D /* EvilIcons.ttf */; }; 47 | 3F5CDF5523B7446C9E71440D /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7FC82E96AB9D4965A0D72934 /* Feather.ttf */; }; 48 | 04A98B1E854145D3A6DE7427 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 16D56850C80E479BABA67107 /* FontAwesome.ttf */; }; 49 | 6F52C885FB314DF4B36D76E3 /* FontAwesome5_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F435B4E478D14340AD139C97 /* FontAwesome5_Brands.ttf */; }; 50 | BF9BFC77C7B84C6E9AF73AAF /* FontAwesome5_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2780CCCF67DC4FF2B215DF61 /* FontAwesome5_Regular.ttf */; }; 51 | EF8E4592322E4732A086B173 /* FontAwesome5_Solid.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BABA80C9CDBD47D4A339AF75 /* FontAwesome5_Solid.ttf */; }; 52 | 14B93B14F391405AB501A2A0 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 63D179552CC24F65939CB969 /* Foundation.ttf */; }; 53 | 8B733431D94F41D289BEB5FD /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 04FAA57FABA54CD4AD850CCC /* Ionicons.ttf */; }; 54 | 29BB7D45796246A0BE1649AD /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 380B3CECA4284FD8AB26B0B0 /* MaterialCommunityIcons.ttf */; }; 55 | 5917193AFB3546B09E2FF54F /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D5AC3A873E7B433B9F857EAC /* MaterialIcons.ttf */; }; 56 | 914FA8E2A31547E2AFC7D199 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 44A5D3F8D1C343698179900A /* Octicons.ttf */; }; 57 | DC8B280FD1B8444A9DCA3F48 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 097A48FDCF7D4D4A97D3D568 /* SimpleLineIcons.ttf */; }; 58 | BDB3FC080B834EEB84CABBE0 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CECF77FD30E046E08421304B /* Zocial.ttf */; }; 59 | B97DAD11B37A4928B9A8CBE8 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 42D0E6BDB0C7477585C9CBD7 /* libBVLinearGradient.a */; }; 60 | AC03D993B24245749B2171D5 /* libFastImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FE2BE74A65D4C91A2AD037A /* libFastImage.a */; }; 61 | /* End PBXBuildFile section */ 62 | 63 | /* Begin PBXContainerItemProxy section */ 64 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 69 | remoteInfo = RCTActionSheet; 70 | }; 71 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 76 | remoteInfo = RCTGeolocation; 77 | }; 78 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 83 | remoteInfo = RCTImage; 84 | }; 85 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 90 | remoteInfo = RCTNetwork; 91 | }; 92 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 97 | remoteInfo = RCTVibration; 98 | }; 99 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 102 | proxyType = 1; 103 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 104 | remoteInfo = example; 105 | }; 106 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 109 | proxyType = 2; 110 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 111 | remoteInfo = RCTSettings; 112 | }; 113 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 118 | remoteInfo = RCTWebSocket; 119 | }; 120 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 123 | proxyType = 2; 124 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 125 | remoteInfo = React; 126 | }; 127 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 130 | proxyType = 1; 131 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 132 | remoteInfo = "example-tvOS"; 133 | }; 134 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 137 | proxyType = 2; 138 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 139 | remoteInfo = "RCTBlob-tvOS"; 140 | }; 141 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 146 | remoteInfo = fishhook; 147 | }; 148 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 153 | remoteInfo = "fishhook-tvOS"; 154 | }; 155 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 160 | remoteInfo = jsinspector; 161 | }; 162 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 167 | remoteInfo = "jsinspector-tvOS"; 168 | }; 169 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 174 | remoteInfo = "third-party"; 175 | }; 176 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 181 | remoteInfo = "third-party-tvOS"; 182 | }; 183 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 188 | remoteInfo = "double-conversion"; 189 | }; 190 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 195 | remoteInfo = "double-conversion-tvOS"; 196 | }; 197 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 202 | remoteInfo = privatedata; 203 | }; 204 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 209 | remoteInfo = "privatedata-tvOS"; 210 | }; 211 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 216 | remoteInfo = "RCTImage-tvOS"; 217 | }; 218 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 223 | remoteInfo = "RCTLinking-tvOS"; 224 | }; 225 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 230 | remoteInfo = "RCTNetwork-tvOS"; 231 | }; 232 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 237 | remoteInfo = "RCTSettings-tvOS"; 238 | }; 239 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 244 | remoteInfo = "RCTText-tvOS"; 245 | }; 246 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 251 | remoteInfo = "RCTWebSocket-tvOS"; 252 | }; 253 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 258 | remoteInfo = "React-tvOS"; 259 | }; 260 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 261 | isa = PBXContainerItemProxy; 262 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 263 | proxyType = 2; 264 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 265 | remoteInfo = yoga; 266 | }; 267 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 268 | isa = PBXContainerItemProxy; 269 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 270 | proxyType = 2; 271 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 272 | remoteInfo = "yoga-tvOS"; 273 | }; 274 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 275 | isa = PBXContainerItemProxy; 276 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 277 | proxyType = 2; 278 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 279 | remoteInfo = cxxreact; 280 | }; 281 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 282 | isa = PBXContainerItemProxy; 283 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 284 | proxyType = 2; 285 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 286 | remoteInfo = "cxxreact-tvOS"; 287 | }; 288 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 289 | isa = PBXContainerItemProxy; 290 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 291 | proxyType = 2; 292 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 293 | remoteInfo = jschelpers; 294 | }; 295 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 296 | isa = PBXContainerItemProxy; 297 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 298 | proxyType = 2; 299 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 300 | remoteInfo = "jschelpers-tvOS"; 301 | }; 302 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 303 | isa = PBXContainerItemProxy; 304 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 305 | proxyType = 2; 306 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 307 | remoteInfo = RCTAnimation; 308 | }; 309 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 310 | isa = PBXContainerItemProxy; 311 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 312 | proxyType = 2; 313 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 314 | remoteInfo = "RCTAnimation-tvOS"; 315 | }; 316 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 317 | isa = PBXContainerItemProxy; 318 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 319 | proxyType = 2; 320 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 321 | remoteInfo = RCTLinking; 322 | }; 323 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 324 | isa = PBXContainerItemProxy; 325 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 326 | proxyType = 2; 327 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 328 | remoteInfo = RCTText; 329 | }; 330 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 331 | isa = PBXContainerItemProxy; 332 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 333 | proxyType = 2; 334 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 335 | remoteInfo = RCTBlob; 336 | }; 337 | /* End PBXContainerItemProxy section */ 338 | 339 | /* Begin PBXFileReference section */ 340 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 341 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 342 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 343 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 344 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 345 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 346 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 347 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 348 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; }; 349 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 350 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 351 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 352 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; }; 353 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; }; 354 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 355 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; }; 356 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; }; 357 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; }; 358 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 359 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "example-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 360 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "example-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 361 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 362 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 363 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 364 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 365 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 366 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 367 | 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; }; 368 | DBE09B14790B4624ACD10BDC /* 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; }; 369 | 693305E12DA74994AA18498A /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 370 | 4141359E11CB4B7A986F1692 /* libRNVectorIcons-tvOS.a */ = {isa = PBXFileReference; name = "libRNVectorIcons-tvOS.a"; path = "libRNVectorIcons-tvOS.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 371 | 52B17AE311E14015AB66981C /* 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; }; 372 | ED5E5265708A4655B404F18C /* 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; }; 373 | 7E627358B74C4649A9657F3D /* 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; }; 374 | 7FC82E96AB9D4965A0D72934 /* 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; }; 375 | 16D56850C80E479BABA67107 /* 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; }; 376 | F435B4E478D14340AD139C97 /* 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; }; 377 | 2780CCCF67DC4FF2B215DF61 /* 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; }; 378 | BABA80C9CDBD47D4A339AF75 /* 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; }; 379 | 63D179552CC24F65939CB969 /* 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; }; 380 | 04FAA57FABA54CD4AD850CCC /* 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; }; 381 | 380B3CECA4284FD8AB26B0B0 /* 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; }; 382 | D5AC3A873E7B433B9F857EAC /* 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; }; 383 | 44A5D3F8D1C343698179900A /* 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; }; 384 | 097A48FDCF7D4D4A97D3D568 /* 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; }; 385 | CECF77FD30E046E08421304B /* 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; }; 386 | 5C9D3C702C934A6191E27CFA /* 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; }; 387 | 42D0E6BDB0C7477585C9CBD7 /* libBVLinearGradient.a */ = {isa = PBXFileReference; name = "libBVLinearGradient.a"; path = "libBVLinearGradient.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 388 | 47F9A628C5E04305977E2D79 /* 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; }; 389 | 9FE2BE74A65D4C91A2AD037A /* libFastImage.a */ = {isa = PBXFileReference; name = "libFastImage.a"; path = "libFastImage.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 390 | /* End PBXFileReference section */ 391 | 392 | /* Begin PBXFrameworksBuildPhase section */ 393 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 394 | isa = PBXFrameworksBuildPhase; 395 | buildActionMask = 2147483647; 396 | files = ( 397 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 398 | ); 399 | runOnlyForDeploymentPostprocessing = 0; 400 | }; 401 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 402 | isa = PBXFrameworksBuildPhase; 403 | buildActionMask = 2147483647; 404 | files = ( 405 | ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */, 406 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 407 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 408 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 409 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 410 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 411 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 412 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 413 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 414 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 415 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 416 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 417 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 418 | CA5A809F7BDD4176B134B81C /* libRNVectorIcons.a in Frameworks */, 419 | B97DAD11B37A4928B9A8CBE8 /* libBVLinearGradient.a in Frameworks */, 420 | AC03D993B24245749B2171D5 /* libFastImage.a in Frameworks */, 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | }; 424 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 425 | isa = PBXFrameworksBuildPhase; 426 | buildActionMask = 2147483647; 427 | files = ( 428 | ED2971652150620600B7C4FE /* JavaScriptCore.framework in Frameworks */, 429 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 430 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 431 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 432 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 433 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 434 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 435 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 436 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 437 | B0061FD88AC240639C35A81E /* libRNVectorIcons-tvOS.a in Frameworks */, 438 | ); 439 | runOnlyForDeploymentPostprocessing = 0; 440 | }; 441 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 442 | isa = PBXFrameworksBuildPhase; 443 | buildActionMask = 2147483647; 444 | files = ( 445 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 446 | ); 447 | runOnlyForDeploymentPostprocessing = 0; 448 | }; 449 | /* End PBXFrameworksBuildPhase section */ 450 | 451 | /* Begin PBXGroup section */ 452 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 453 | isa = PBXGroup; 454 | children = ( 455 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 456 | ); 457 | name = Products; 458 | sourceTree = ""; 459 | }; 460 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 461 | isa = PBXGroup; 462 | children = ( 463 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 464 | ); 465 | name = Products; 466 | sourceTree = ""; 467 | }; 468 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 469 | isa = PBXGroup; 470 | children = ( 471 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 472 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 473 | ); 474 | name = Products; 475 | sourceTree = ""; 476 | }; 477 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 478 | isa = PBXGroup; 479 | children = ( 480 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 481 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 482 | ); 483 | name = Products; 484 | sourceTree = ""; 485 | }; 486 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 487 | isa = PBXGroup; 488 | children = ( 489 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 490 | ); 491 | name = Products; 492 | sourceTree = ""; 493 | }; 494 | 00E356EF1AD99517003FC87E /* exampleTests */ = { 495 | isa = PBXGroup; 496 | children = ( 497 | 00E356F21AD99517003FC87E /* exampleTests.m */, 498 | 00E356F01AD99517003FC87E /* Supporting Files */, 499 | ); 500 | path = exampleTests; 501 | sourceTree = ""; 502 | }; 503 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 504 | isa = PBXGroup; 505 | children = ( 506 | 00E356F11AD99517003FC87E /* Info.plist */, 507 | ); 508 | name = "Supporting Files"; 509 | sourceTree = ""; 510 | }; 511 | 139105B71AF99BAD00B5F7CC /* Products */ = { 512 | isa = PBXGroup; 513 | children = ( 514 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 515 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 516 | ); 517 | name = Products; 518 | sourceTree = ""; 519 | }; 520 | 139FDEE71B06529A00C62182 /* Products */ = { 521 | isa = PBXGroup; 522 | children = ( 523 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 524 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 525 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 526 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 527 | ); 528 | name = Products; 529 | sourceTree = ""; 530 | }; 531 | 13B07FAE1A68108700A75B9A /* example */ = { 532 | isa = PBXGroup; 533 | children = ( 534 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 535 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 536 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 537 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 538 | 13B07FB61A68108700A75B9A /* Info.plist */, 539 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 540 | 13B07FB71A68108700A75B9A /* main.m */, 541 | ); 542 | name = example; 543 | sourceTree = ""; 544 | }; 545 | 146834001AC3E56700842450 /* Products */ = { 546 | isa = PBXGroup; 547 | children = ( 548 | 146834041AC3E56700842450 /* libReact.a */, 549 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 550 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 551 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 552 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 553 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 554 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 555 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 556 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 557 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 558 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 559 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 560 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 561 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 562 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 563 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 564 | ); 565 | name = Products; 566 | sourceTree = ""; 567 | }; 568 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 569 | isa = PBXGroup; 570 | children = ( 571 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 572 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */, 573 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 574 | ); 575 | name = Frameworks; 576 | sourceTree = ""; 577 | }; 578 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 579 | isa = PBXGroup; 580 | children = ( 581 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 582 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 583 | ); 584 | name = Products; 585 | sourceTree = ""; 586 | }; 587 | 78C398B11ACF4ADC00677621 /* Products */ = { 588 | isa = PBXGroup; 589 | children = ( 590 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 591 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 592 | ); 593 | name = Products; 594 | sourceTree = ""; 595 | }; 596 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 597 | isa = PBXGroup; 598 | children = ( 599 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 600 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 601 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 602 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 603 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 604 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 605 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 606 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 607 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 608 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 609 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 610 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 611 | DBE09B14790B4624ACD10BDC /* RNVectorIcons.xcodeproj */, 612 | 5C9D3C702C934A6191E27CFA /* BVLinearGradient.xcodeproj */, 613 | 47F9A628C5E04305977E2D79 /* FastImage.xcodeproj */, 614 | ); 615 | name = Libraries; 616 | sourceTree = ""; 617 | }; 618 | 832341B11AAA6A8300B99B32 /* Products */ = { 619 | isa = PBXGroup; 620 | children = ( 621 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 622 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 623 | ); 624 | name = Products; 625 | sourceTree = ""; 626 | }; 627 | 83CBB9F61A601CBA00E9B192 = { 628 | isa = PBXGroup; 629 | children = ( 630 | 13B07FAE1A68108700A75B9A /* example */, 631 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 632 | 00E356EF1AD99517003FC87E /* exampleTests */, 633 | 83CBBA001A601CBA00E9B192 /* Products */, 634 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 635 | 07D88F46EB0D48809BDF5CA5 /* Resources */, 636 | ); 637 | indentWidth = 2; 638 | sourceTree = ""; 639 | tabWidth = 2; 640 | usesTabs = 0; 641 | }; 642 | 83CBBA001A601CBA00E9B192 /* Products */ = { 643 | isa = PBXGroup; 644 | children = ( 645 | 13B07F961A680F5B00A75B9A /* example.app */, 646 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */, 647 | 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */, 648 | 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */, 649 | ); 650 | name = Products; 651 | sourceTree = ""; 652 | }; 653 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 654 | isa = PBXGroup; 655 | children = ( 656 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 657 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 658 | ); 659 | name = Products; 660 | sourceTree = ""; 661 | }; 662 | 07D88F46EB0D48809BDF5CA5 /* Resources */ = { 663 | isa = "PBXGroup"; 664 | children = ( 665 | 52B17AE311E14015AB66981C /* AntDesign.ttf */, 666 | ED5E5265708A4655B404F18C /* Entypo.ttf */, 667 | 7E627358B74C4649A9657F3D /* EvilIcons.ttf */, 668 | 7FC82E96AB9D4965A0D72934 /* Feather.ttf */, 669 | 16D56850C80E479BABA67107 /* FontAwesome.ttf */, 670 | F435B4E478D14340AD139C97 /* FontAwesome5_Brands.ttf */, 671 | 2780CCCF67DC4FF2B215DF61 /* FontAwesome5_Regular.ttf */, 672 | BABA80C9CDBD47D4A339AF75 /* FontAwesome5_Solid.ttf */, 673 | 63D179552CC24F65939CB969 /* Foundation.ttf */, 674 | 04FAA57FABA54CD4AD850CCC /* Ionicons.ttf */, 675 | 380B3CECA4284FD8AB26B0B0 /* MaterialCommunityIcons.ttf */, 676 | D5AC3A873E7B433B9F857EAC /* MaterialIcons.ttf */, 677 | 44A5D3F8D1C343698179900A /* Octicons.ttf */, 678 | 097A48FDCF7D4D4A97D3D568 /* SimpleLineIcons.ttf */, 679 | CECF77FD30E046E08421304B /* Zocial.ttf */, 680 | ); 681 | name = Resources; 682 | sourceTree = ""; 683 | path = ""; 684 | }; 685 | /* End PBXGroup section */ 686 | 687 | /* Begin PBXNativeTarget section */ 688 | 00E356ED1AD99517003FC87E /* exampleTests */ = { 689 | isa = PBXNativeTarget; 690 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */; 691 | buildPhases = ( 692 | 00E356EA1AD99517003FC87E /* Sources */, 693 | 00E356EB1AD99517003FC87E /* Frameworks */, 694 | 00E356EC1AD99517003FC87E /* Resources */, 695 | ); 696 | buildRules = ( 697 | ); 698 | dependencies = ( 699 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 700 | ); 701 | name = exampleTests; 702 | productName = exampleTests; 703 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */; 704 | productType = "com.apple.product-type.bundle.unit-test"; 705 | }; 706 | 13B07F861A680F5B00A75B9A /* example */ = { 707 | isa = PBXNativeTarget; 708 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */; 709 | buildPhases = ( 710 | 13B07F871A680F5B00A75B9A /* Sources */, 711 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 712 | 13B07F8E1A680F5B00A75B9A /* Resources */, 713 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 714 | ); 715 | buildRules = ( 716 | ); 717 | dependencies = ( 718 | ); 719 | name = example; 720 | productName = "Hello World"; 721 | productReference = 13B07F961A680F5B00A75B9A /* example.app */; 722 | productType = "com.apple.product-type.application"; 723 | }; 724 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */ = { 725 | isa = PBXNativeTarget; 726 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */; 727 | buildPhases = ( 728 | 2D02E4771E0B4A5D006451C7 /* Sources */, 729 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 730 | 2D02E4791E0B4A5D006451C7 /* Resources */, 731 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 732 | ); 733 | buildRules = ( 734 | ); 735 | dependencies = ( 736 | ); 737 | name = "example-tvOS"; 738 | productName = "example-tvOS"; 739 | productReference = 2D02E47B1E0B4A5D006451C7 /* example-tvOS.app */; 740 | productType = "com.apple.product-type.application"; 741 | }; 742 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */ = { 743 | isa = PBXNativeTarget; 744 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */; 745 | buildPhases = ( 746 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 747 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 748 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 749 | ); 750 | buildRules = ( 751 | ); 752 | dependencies = ( 753 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 754 | ); 755 | name = "example-tvOSTests"; 756 | productName = "example-tvOSTests"; 757 | productReference = 2D02E4901E0B4A5D006451C7 /* example-tvOSTests.xctest */; 758 | productType = "com.apple.product-type.bundle.unit-test"; 759 | }; 760 | /* End PBXNativeTarget section */ 761 | 762 | /* Begin PBXProject section */ 763 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 764 | isa = PBXProject; 765 | attributes = { 766 | LastUpgradeCheck = 940; 767 | ORGANIZATIONNAME = Facebook; 768 | TargetAttributes = { 769 | 00E356ED1AD99517003FC87E = { 770 | CreatedOnToolsVersion = 6.2; 771 | TestTargetID = 13B07F861A680F5B00A75B9A; 772 | }; 773 | 2D02E47A1E0B4A5D006451C7 = { 774 | CreatedOnToolsVersion = 8.2.1; 775 | ProvisioningStyle = Automatic; 776 | }; 777 | 2D02E48F1E0B4A5D006451C7 = { 778 | CreatedOnToolsVersion = 8.2.1; 779 | ProvisioningStyle = Automatic; 780 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 781 | }; 782 | }; 783 | }; 784 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */; 785 | compatibilityVersion = "Xcode 3.2"; 786 | developmentRegion = English; 787 | hasScannedForEncodings = 0; 788 | knownRegions = ( 789 | en, 790 | Base, 791 | ); 792 | mainGroup = 83CBB9F61A601CBA00E9B192; 793 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 794 | projectDirPath = ""; 795 | projectReferences = ( 796 | { 797 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 798 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 799 | }, 800 | { 801 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 802 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 803 | }, 804 | { 805 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 806 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 807 | }, 808 | { 809 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 810 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 811 | }, 812 | { 813 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 814 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 815 | }, 816 | { 817 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 818 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 819 | }, 820 | { 821 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 822 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 823 | }, 824 | { 825 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 826 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 827 | }, 828 | { 829 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 830 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 831 | }, 832 | { 833 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 834 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 835 | }, 836 | { 837 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 838 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 839 | }, 840 | { 841 | ProductGroup = 146834001AC3E56700842450 /* Products */; 842 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 843 | }, 844 | ); 845 | projectRoot = ""; 846 | targets = ( 847 | 13B07F861A680F5B00A75B9A /* example */, 848 | 00E356ED1AD99517003FC87E /* exampleTests */, 849 | 2D02E47A1E0B4A5D006451C7 /* example-tvOS */, 850 | 2D02E48F1E0B4A5D006451C7 /* example-tvOSTests */, 851 | ); 852 | }; 853 | /* End PBXProject section */ 854 | 855 | /* Begin PBXReferenceProxy section */ 856 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 857 | isa = PBXReferenceProxy; 858 | fileType = archive.ar; 859 | path = libRCTActionSheet.a; 860 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 861 | sourceTree = BUILT_PRODUCTS_DIR; 862 | }; 863 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 864 | isa = PBXReferenceProxy; 865 | fileType = archive.ar; 866 | path = libRCTGeolocation.a; 867 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 868 | sourceTree = BUILT_PRODUCTS_DIR; 869 | }; 870 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 871 | isa = PBXReferenceProxy; 872 | fileType = archive.ar; 873 | path = libRCTImage.a; 874 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 875 | sourceTree = BUILT_PRODUCTS_DIR; 876 | }; 877 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 878 | isa = PBXReferenceProxy; 879 | fileType = archive.ar; 880 | path = libRCTNetwork.a; 881 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 882 | sourceTree = BUILT_PRODUCTS_DIR; 883 | }; 884 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 885 | isa = PBXReferenceProxy; 886 | fileType = archive.ar; 887 | path = libRCTVibration.a; 888 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 889 | sourceTree = BUILT_PRODUCTS_DIR; 890 | }; 891 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 892 | isa = PBXReferenceProxy; 893 | fileType = archive.ar; 894 | path = libRCTSettings.a; 895 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 896 | sourceTree = BUILT_PRODUCTS_DIR; 897 | }; 898 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 899 | isa = PBXReferenceProxy; 900 | fileType = archive.ar; 901 | path = libRCTWebSocket.a; 902 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 903 | sourceTree = BUILT_PRODUCTS_DIR; 904 | }; 905 | 146834041AC3E56700842450 /* libReact.a */ = { 906 | isa = PBXReferenceProxy; 907 | fileType = archive.ar; 908 | path = libReact.a; 909 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 910 | sourceTree = BUILT_PRODUCTS_DIR; 911 | }; 912 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 913 | isa = PBXReferenceProxy; 914 | fileType = archive.ar; 915 | path = "libRCTBlob-tvOS.a"; 916 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 917 | sourceTree = BUILT_PRODUCTS_DIR; 918 | }; 919 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 920 | isa = PBXReferenceProxy; 921 | fileType = archive.ar; 922 | path = libfishhook.a; 923 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 924 | sourceTree = BUILT_PRODUCTS_DIR; 925 | }; 926 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 927 | isa = PBXReferenceProxy; 928 | fileType = archive.ar; 929 | path = "libfishhook-tvOS.a"; 930 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 931 | sourceTree = BUILT_PRODUCTS_DIR; 932 | }; 933 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 934 | isa = PBXReferenceProxy; 935 | fileType = archive.ar; 936 | path = libjsinspector.a; 937 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 938 | sourceTree = BUILT_PRODUCTS_DIR; 939 | }; 940 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 941 | isa = PBXReferenceProxy; 942 | fileType = archive.ar; 943 | path = "libjsinspector-tvOS.a"; 944 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 945 | sourceTree = BUILT_PRODUCTS_DIR; 946 | }; 947 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 948 | isa = PBXReferenceProxy; 949 | fileType = archive.ar; 950 | path = "libthird-party.a"; 951 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 952 | sourceTree = BUILT_PRODUCTS_DIR; 953 | }; 954 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 955 | isa = PBXReferenceProxy; 956 | fileType = archive.ar; 957 | path = "libthird-party.a"; 958 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 959 | sourceTree = BUILT_PRODUCTS_DIR; 960 | }; 961 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 962 | isa = PBXReferenceProxy; 963 | fileType = archive.ar; 964 | path = "libdouble-conversion.a"; 965 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 966 | sourceTree = BUILT_PRODUCTS_DIR; 967 | }; 968 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 969 | isa = PBXReferenceProxy; 970 | fileType = archive.ar; 971 | path = "libdouble-conversion.a"; 972 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 973 | sourceTree = BUILT_PRODUCTS_DIR; 974 | }; 975 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 976 | isa = PBXReferenceProxy; 977 | fileType = archive.ar; 978 | path = libprivatedata.a; 979 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 980 | sourceTree = BUILT_PRODUCTS_DIR; 981 | }; 982 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 983 | isa = PBXReferenceProxy; 984 | fileType = archive.ar; 985 | path = "libprivatedata-tvOS.a"; 986 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 987 | sourceTree = BUILT_PRODUCTS_DIR; 988 | }; 989 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 990 | isa = PBXReferenceProxy; 991 | fileType = archive.ar; 992 | path = "libRCTImage-tvOS.a"; 993 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 994 | sourceTree = BUILT_PRODUCTS_DIR; 995 | }; 996 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 997 | isa = PBXReferenceProxy; 998 | fileType = archive.ar; 999 | path = "libRCTLinking-tvOS.a"; 1000 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 1001 | sourceTree = BUILT_PRODUCTS_DIR; 1002 | }; 1003 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 1004 | isa = PBXReferenceProxy; 1005 | fileType = archive.ar; 1006 | path = "libRCTNetwork-tvOS.a"; 1007 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 1008 | sourceTree = BUILT_PRODUCTS_DIR; 1009 | }; 1010 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 1011 | isa = PBXReferenceProxy; 1012 | fileType = archive.ar; 1013 | path = "libRCTSettings-tvOS.a"; 1014 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 1015 | sourceTree = BUILT_PRODUCTS_DIR; 1016 | }; 1017 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 1018 | isa = PBXReferenceProxy; 1019 | fileType = archive.ar; 1020 | path = "libRCTText-tvOS.a"; 1021 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 1022 | sourceTree = BUILT_PRODUCTS_DIR; 1023 | }; 1024 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 1025 | isa = PBXReferenceProxy; 1026 | fileType = archive.ar; 1027 | path = "libRCTWebSocket-tvOS.a"; 1028 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 1029 | sourceTree = BUILT_PRODUCTS_DIR; 1030 | }; 1031 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 1032 | isa = PBXReferenceProxy; 1033 | fileType = archive.ar; 1034 | path = libReact.a; 1035 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1036 | sourceTree = BUILT_PRODUCTS_DIR; 1037 | }; 1038 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1039 | isa = PBXReferenceProxy; 1040 | fileType = archive.ar; 1041 | path = libyoga.a; 1042 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1043 | sourceTree = BUILT_PRODUCTS_DIR; 1044 | }; 1045 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1046 | isa = PBXReferenceProxy; 1047 | fileType = archive.ar; 1048 | path = libyoga.a; 1049 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1050 | sourceTree = BUILT_PRODUCTS_DIR; 1051 | }; 1052 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1053 | isa = PBXReferenceProxy; 1054 | fileType = archive.ar; 1055 | path = libcxxreact.a; 1056 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1057 | sourceTree = BUILT_PRODUCTS_DIR; 1058 | }; 1059 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1060 | isa = PBXReferenceProxy; 1061 | fileType = archive.ar; 1062 | path = libcxxreact.a; 1063 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1064 | sourceTree = BUILT_PRODUCTS_DIR; 1065 | }; 1066 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1067 | isa = PBXReferenceProxy; 1068 | fileType = archive.ar; 1069 | path = libjschelpers.a; 1070 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1071 | sourceTree = BUILT_PRODUCTS_DIR; 1072 | }; 1073 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1074 | isa = PBXReferenceProxy; 1075 | fileType = archive.ar; 1076 | path = libjschelpers.a; 1077 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1078 | sourceTree = BUILT_PRODUCTS_DIR; 1079 | }; 1080 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1081 | isa = PBXReferenceProxy; 1082 | fileType = archive.ar; 1083 | path = libRCTAnimation.a; 1084 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1085 | sourceTree = BUILT_PRODUCTS_DIR; 1086 | }; 1087 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1088 | isa = PBXReferenceProxy; 1089 | fileType = archive.ar; 1090 | path = libRCTAnimation.a; 1091 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1092 | sourceTree = BUILT_PRODUCTS_DIR; 1093 | }; 1094 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1095 | isa = PBXReferenceProxy; 1096 | fileType = archive.ar; 1097 | path = libRCTLinking.a; 1098 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1099 | sourceTree = BUILT_PRODUCTS_DIR; 1100 | }; 1101 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1102 | isa = PBXReferenceProxy; 1103 | fileType = archive.ar; 1104 | path = libRCTText.a; 1105 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1106 | sourceTree = BUILT_PRODUCTS_DIR; 1107 | }; 1108 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1109 | isa = PBXReferenceProxy; 1110 | fileType = archive.ar; 1111 | path = libRCTBlob.a; 1112 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1113 | sourceTree = BUILT_PRODUCTS_DIR; 1114 | }; 1115 | /* End PBXReferenceProxy section */ 1116 | 1117 | /* Begin PBXResourcesBuildPhase section */ 1118 | 00E356EC1AD99517003FC87E /* Resources */ = { 1119 | isa = PBXResourcesBuildPhase; 1120 | buildActionMask = 2147483647; 1121 | files = ( 1122 | ); 1123 | runOnlyForDeploymentPostprocessing = 0; 1124 | }; 1125 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1126 | isa = PBXResourcesBuildPhase; 1127 | buildActionMask = 2147483647; 1128 | files = ( 1129 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1130 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1131 | 914199FDC879464F8795DAAD /* AntDesign.ttf in Resources */, 1132 | 24B1F6FA4442452AA4649387 /* Entypo.ttf in Resources */, 1133 | 0464B779AC914D0CBC9787A3 /* EvilIcons.ttf in Resources */, 1134 | 3F5CDF5523B7446C9E71440D /* Feather.ttf in Resources */, 1135 | 04A98B1E854145D3A6DE7427 /* FontAwesome.ttf in Resources */, 1136 | 6F52C885FB314DF4B36D76E3 /* FontAwesome5_Brands.ttf in Resources */, 1137 | BF9BFC77C7B84C6E9AF73AAF /* FontAwesome5_Regular.ttf in Resources */, 1138 | EF8E4592322E4732A086B173 /* FontAwesome5_Solid.ttf in Resources */, 1139 | 14B93B14F391405AB501A2A0 /* Foundation.ttf in Resources */, 1140 | 8B733431D94F41D289BEB5FD /* Ionicons.ttf in Resources */, 1141 | 29BB7D45796246A0BE1649AD /* MaterialCommunityIcons.ttf in Resources */, 1142 | 5917193AFB3546B09E2FF54F /* MaterialIcons.ttf in Resources */, 1143 | 914FA8E2A31547E2AFC7D199 /* Octicons.ttf in Resources */, 1144 | DC8B280FD1B8444A9DCA3F48 /* SimpleLineIcons.ttf in Resources */, 1145 | BDB3FC080B834EEB84CABBE0 /* Zocial.ttf in Resources */, 1146 | ); 1147 | runOnlyForDeploymentPostprocessing = 0; 1148 | }; 1149 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1150 | isa = PBXResourcesBuildPhase; 1151 | buildActionMask = 2147483647; 1152 | files = ( 1153 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1154 | ); 1155 | runOnlyForDeploymentPostprocessing = 0; 1156 | }; 1157 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1158 | isa = PBXResourcesBuildPhase; 1159 | buildActionMask = 2147483647; 1160 | files = ( 1161 | ); 1162 | runOnlyForDeploymentPostprocessing = 0; 1163 | }; 1164 | /* End PBXResourcesBuildPhase section */ 1165 | 1166 | /* Begin PBXShellScriptBuildPhase section */ 1167 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1168 | isa = PBXShellScriptBuildPhase; 1169 | buildActionMask = 2147483647; 1170 | files = ( 1171 | ); 1172 | inputPaths = ( 1173 | ); 1174 | name = "Bundle React Native code and images"; 1175 | outputPaths = ( 1176 | ); 1177 | runOnlyForDeploymentPostprocessing = 0; 1178 | shellPath = /bin/sh; 1179 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1180 | }; 1181 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1182 | isa = PBXShellScriptBuildPhase; 1183 | buildActionMask = 2147483647; 1184 | files = ( 1185 | ); 1186 | inputPaths = ( 1187 | ); 1188 | name = "Bundle React Native Code And Images"; 1189 | outputPaths = ( 1190 | ); 1191 | runOnlyForDeploymentPostprocessing = 0; 1192 | shellPath = /bin/sh; 1193 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1194 | }; 1195 | /* End PBXShellScriptBuildPhase section */ 1196 | 1197 | /* Begin PBXSourcesBuildPhase section */ 1198 | 00E356EA1AD99517003FC87E /* Sources */ = { 1199 | isa = PBXSourcesBuildPhase; 1200 | buildActionMask = 2147483647; 1201 | files = ( 1202 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */, 1203 | ); 1204 | runOnlyForDeploymentPostprocessing = 0; 1205 | }; 1206 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1207 | isa = PBXSourcesBuildPhase; 1208 | buildActionMask = 2147483647; 1209 | files = ( 1210 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1211 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1212 | ); 1213 | runOnlyForDeploymentPostprocessing = 0; 1214 | }; 1215 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1216 | isa = PBXSourcesBuildPhase; 1217 | buildActionMask = 2147483647; 1218 | files = ( 1219 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1220 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1221 | ); 1222 | runOnlyForDeploymentPostprocessing = 0; 1223 | }; 1224 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1225 | isa = PBXSourcesBuildPhase; 1226 | buildActionMask = 2147483647; 1227 | files = ( 1228 | 2DCD954D1E0B4F2C00145EB5 /* exampleTests.m in Sources */, 1229 | ); 1230 | runOnlyForDeploymentPostprocessing = 0; 1231 | }; 1232 | /* End PBXSourcesBuildPhase section */ 1233 | 1234 | /* Begin PBXTargetDependency section */ 1235 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1236 | isa = PBXTargetDependency; 1237 | target = 13B07F861A680F5B00A75B9A /* example */; 1238 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1239 | }; 1240 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1241 | isa = PBXTargetDependency; 1242 | target = 2D02E47A1E0B4A5D006451C7 /* example-tvOS */; 1243 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1244 | }; 1245 | /* End PBXTargetDependency section */ 1246 | 1247 | /* Begin PBXVariantGroup section */ 1248 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1249 | isa = PBXVariantGroup; 1250 | children = ( 1251 | 13B07FB21A68108700A75B9A /* Base */, 1252 | ); 1253 | name = LaunchScreen.xib; 1254 | path = example; 1255 | sourceTree = ""; 1256 | }; 1257 | /* End PBXVariantGroup section */ 1258 | 1259 | /* Begin XCBuildConfiguration section */ 1260 | 00E356F61AD99517003FC87E /* Debug */ = { 1261 | isa = XCBuildConfiguration; 1262 | buildSettings = { 1263 | BUNDLE_LOADER = "$(TEST_HOST)"; 1264 | GCC_PREPROCESSOR_DEFINITIONS = ( 1265 | "DEBUG=1", 1266 | "$(inherited)", 1267 | ); 1268 | INFOPLIST_FILE = exampleTests/Info.plist; 1269 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1270 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1271 | OTHER_LDFLAGS = ( 1272 | "-ObjC", 1273 | "-lc++", 1274 | ); 1275 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1276 | PRODUCT_NAME = "$(TARGET_NAME)"; 1277 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 1278 | LIBRARY_SEARCH_PATHS = ( 1279 | "$(inherited)", 1280 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1281 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1282 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1283 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1284 | ); 1285 | HEADER_SEARCH_PATHS = ( 1286 | "$(inherited)", 1287 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1288 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1289 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1290 | ); 1291 | }; 1292 | name = Debug; 1293 | }; 1294 | 00E356F71AD99517003FC87E /* Release */ = { 1295 | isa = XCBuildConfiguration; 1296 | buildSettings = { 1297 | BUNDLE_LOADER = "$(TEST_HOST)"; 1298 | COPY_PHASE_STRIP = NO; 1299 | INFOPLIST_FILE = exampleTests/Info.plist; 1300 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1301 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1302 | OTHER_LDFLAGS = ( 1303 | "-ObjC", 1304 | "-lc++", 1305 | ); 1306 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1307 | PRODUCT_NAME = "$(TARGET_NAME)"; 1308 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 1309 | LIBRARY_SEARCH_PATHS = ( 1310 | "$(inherited)", 1311 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1312 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1313 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1314 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1315 | ); 1316 | HEADER_SEARCH_PATHS = ( 1317 | "$(inherited)", 1318 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1319 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1320 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1321 | ); 1322 | }; 1323 | name = Release; 1324 | }; 1325 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1326 | isa = XCBuildConfiguration; 1327 | buildSettings = { 1328 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1329 | CURRENT_PROJECT_VERSION = 1; 1330 | DEAD_CODE_STRIPPING = NO; 1331 | INFOPLIST_FILE = example/Info.plist; 1332 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1333 | OTHER_LDFLAGS = ( 1334 | "$(inherited)", 1335 | "-ObjC", 1336 | "-lc++", 1337 | ); 1338 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1339 | PRODUCT_NAME = example; 1340 | VERSIONING_SYSTEM = "apple-generic"; 1341 | HEADER_SEARCH_PATHS = ( 1342 | "$(inherited)", 1343 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1344 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1345 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1346 | ); 1347 | }; 1348 | name = Debug; 1349 | }; 1350 | 13B07F951A680F5B00A75B9A /* Release */ = { 1351 | isa = XCBuildConfiguration; 1352 | buildSettings = { 1353 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1354 | CURRENT_PROJECT_VERSION = 1; 1355 | INFOPLIST_FILE = example/Info.plist; 1356 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1357 | OTHER_LDFLAGS = ( 1358 | "$(inherited)", 1359 | "-ObjC", 1360 | "-lc++", 1361 | ); 1362 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1363 | PRODUCT_NAME = example; 1364 | VERSIONING_SYSTEM = "apple-generic"; 1365 | HEADER_SEARCH_PATHS = ( 1366 | "$(inherited)", 1367 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1368 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1369 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1370 | ); 1371 | }; 1372 | name = Release; 1373 | }; 1374 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1375 | isa = XCBuildConfiguration; 1376 | buildSettings = { 1377 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1378 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1379 | CLANG_ANALYZER_NONNULL = YES; 1380 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1381 | CLANG_WARN_INFINITE_RECURSION = YES; 1382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1383 | DEBUG_INFORMATION_FORMAT = dwarf; 1384 | ENABLE_TESTABILITY = YES; 1385 | GCC_NO_COMMON_BLOCKS = YES; 1386 | INFOPLIST_FILE = "example-tvOS/Info.plist"; 1387 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1388 | OTHER_LDFLAGS = ( 1389 | "-ObjC", 1390 | "-lc++", 1391 | ); 1392 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS"; 1393 | PRODUCT_NAME = "$(TARGET_NAME)"; 1394 | SDKROOT = appletvos; 1395 | TARGETED_DEVICE_FAMILY = 3; 1396 | TVOS_DEPLOYMENT_TARGET = 9.2; 1397 | LIBRARY_SEARCH_PATHS = ( 1398 | "$(inherited)", 1399 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1400 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1401 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1402 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1403 | ); 1404 | HEADER_SEARCH_PATHS = ( 1405 | "$(inherited)", 1406 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1407 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1408 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1409 | ); 1410 | }; 1411 | name = Debug; 1412 | }; 1413 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1414 | isa = XCBuildConfiguration; 1415 | buildSettings = { 1416 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1417 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1418 | CLANG_ANALYZER_NONNULL = YES; 1419 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1420 | CLANG_WARN_INFINITE_RECURSION = YES; 1421 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1422 | COPY_PHASE_STRIP = NO; 1423 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1424 | GCC_NO_COMMON_BLOCKS = YES; 1425 | INFOPLIST_FILE = "example-tvOS/Info.plist"; 1426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1427 | OTHER_LDFLAGS = ( 1428 | "-ObjC", 1429 | "-lc++", 1430 | ); 1431 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOS"; 1432 | PRODUCT_NAME = "$(TARGET_NAME)"; 1433 | SDKROOT = appletvos; 1434 | TARGETED_DEVICE_FAMILY = 3; 1435 | TVOS_DEPLOYMENT_TARGET = 9.2; 1436 | LIBRARY_SEARCH_PATHS = ( 1437 | "$(inherited)", 1438 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1439 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1440 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1441 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1442 | ); 1443 | HEADER_SEARCH_PATHS = ( 1444 | "$(inherited)", 1445 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1446 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1447 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1448 | ); 1449 | }; 1450 | name = Release; 1451 | }; 1452 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1453 | isa = XCBuildConfiguration; 1454 | buildSettings = { 1455 | BUNDLE_LOADER = "$(TEST_HOST)"; 1456 | CLANG_ANALYZER_NONNULL = YES; 1457 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1458 | CLANG_WARN_INFINITE_RECURSION = YES; 1459 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1460 | DEBUG_INFORMATION_FORMAT = dwarf; 1461 | ENABLE_TESTABILITY = YES; 1462 | GCC_NO_COMMON_BLOCKS = YES; 1463 | INFOPLIST_FILE = "example-tvOSTests/Info.plist"; 1464 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1465 | OTHER_LDFLAGS = ( 1466 | "-ObjC", 1467 | "-lc++", 1468 | ); 1469 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests"; 1470 | PRODUCT_NAME = "$(TARGET_NAME)"; 1471 | SDKROOT = appletvos; 1472 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS"; 1473 | TVOS_DEPLOYMENT_TARGET = 10.1; 1474 | LIBRARY_SEARCH_PATHS = ( 1475 | "$(inherited)", 1476 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1477 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1478 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1479 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1480 | ); 1481 | HEADER_SEARCH_PATHS = ( 1482 | "$(inherited)", 1483 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1484 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1485 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1486 | ); 1487 | }; 1488 | name = Debug; 1489 | }; 1490 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1491 | isa = XCBuildConfiguration; 1492 | buildSettings = { 1493 | BUNDLE_LOADER = "$(TEST_HOST)"; 1494 | CLANG_ANALYZER_NONNULL = YES; 1495 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1496 | CLANG_WARN_INFINITE_RECURSION = YES; 1497 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1498 | COPY_PHASE_STRIP = NO; 1499 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1500 | GCC_NO_COMMON_BLOCKS = YES; 1501 | INFOPLIST_FILE = "example-tvOSTests/Info.plist"; 1502 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1503 | OTHER_LDFLAGS = ( 1504 | "-ObjC", 1505 | "-lc++", 1506 | ); 1507 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.example-tvOSTests"; 1508 | PRODUCT_NAME = "$(TARGET_NAME)"; 1509 | SDKROOT = appletvos; 1510 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example-tvOS.app/example-tvOS"; 1511 | TVOS_DEPLOYMENT_TARGET = 10.1; 1512 | LIBRARY_SEARCH_PATHS = ( 1513 | "$(inherited)", 1514 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1515 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1516 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1517 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1518 | ); 1519 | HEADER_SEARCH_PATHS = ( 1520 | "$(inherited)", 1521 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1522 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient", 1523 | "$(SRCROOT)/../node_modules/react-native-fast-image/ios/FastImage/**", 1524 | ); 1525 | }; 1526 | name = Release; 1527 | }; 1528 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1529 | isa = XCBuildConfiguration; 1530 | buildSettings = { 1531 | ALWAYS_SEARCH_USER_PATHS = NO; 1532 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1533 | CLANG_CXX_LIBRARY = "libc++"; 1534 | CLANG_ENABLE_MODULES = YES; 1535 | CLANG_ENABLE_OBJC_ARC = YES; 1536 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1537 | CLANG_WARN_BOOL_CONVERSION = YES; 1538 | CLANG_WARN_COMMA = YES; 1539 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1540 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1541 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1542 | CLANG_WARN_EMPTY_BODY = YES; 1543 | CLANG_WARN_ENUM_CONVERSION = YES; 1544 | CLANG_WARN_INFINITE_RECURSION = YES; 1545 | CLANG_WARN_INT_CONVERSION = YES; 1546 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1547 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1548 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1549 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1550 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1551 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1552 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1553 | CLANG_WARN_UNREACHABLE_CODE = YES; 1554 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1555 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1556 | COPY_PHASE_STRIP = NO; 1557 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1558 | ENABLE_TESTABILITY = YES; 1559 | GCC_C_LANGUAGE_STANDARD = gnu99; 1560 | GCC_DYNAMIC_NO_PIC = NO; 1561 | GCC_NO_COMMON_BLOCKS = YES; 1562 | GCC_OPTIMIZATION_LEVEL = 0; 1563 | GCC_PREPROCESSOR_DEFINITIONS = ( 1564 | "DEBUG=1", 1565 | "$(inherited)", 1566 | ); 1567 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1568 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1569 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1570 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1571 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1572 | GCC_WARN_UNUSED_FUNCTION = YES; 1573 | GCC_WARN_UNUSED_VARIABLE = YES; 1574 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1575 | MTL_ENABLE_DEBUG_INFO = YES; 1576 | ONLY_ACTIVE_ARCH = YES; 1577 | SDKROOT = iphoneos; 1578 | }; 1579 | name = Debug; 1580 | }; 1581 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1582 | isa = XCBuildConfiguration; 1583 | buildSettings = { 1584 | ALWAYS_SEARCH_USER_PATHS = NO; 1585 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1586 | CLANG_CXX_LIBRARY = "libc++"; 1587 | CLANG_ENABLE_MODULES = YES; 1588 | CLANG_ENABLE_OBJC_ARC = YES; 1589 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1590 | CLANG_WARN_BOOL_CONVERSION = YES; 1591 | CLANG_WARN_COMMA = YES; 1592 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1593 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1594 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1595 | CLANG_WARN_EMPTY_BODY = YES; 1596 | CLANG_WARN_ENUM_CONVERSION = YES; 1597 | CLANG_WARN_INFINITE_RECURSION = YES; 1598 | CLANG_WARN_INT_CONVERSION = YES; 1599 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1600 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1601 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1602 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1603 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1604 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1605 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1606 | CLANG_WARN_UNREACHABLE_CODE = YES; 1607 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1608 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1609 | COPY_PHASE_STRIP = YES; 1610 | ENABLE_NS_ASSERTIONS = NO; 1611 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1612 | GCC_C_LANGUAGE_STANDARD = gnu99; 1613 | GCC_NO_COMMON_BLOCKS = YES; 1614 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1615 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1616 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1617 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1618 | GCC_WARN_UNUSED_FUNCTION = YES; 1619 | GCC_WARN_UNUSED_VARIABLE = YES; 1620 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1621 | MTL_ENABLE_DEBUG_INFO = NO; 1622 | SDKROOT = iphoneos; 1623 | VALIDATE_PRODUCT = YES; 1624 | }; 1625 | name = Release; 1626 | }; 1627 | /* End XCBuildConfiguration section */ 1628 | 1629 | /* Begin XCConfigurationList section */ 1630 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = { 1631 | isa = XCConfigurationList; 1632 | buildConfigurations = ( 1633 | 00E356F61AD99517003FC87E /* Debug */, 1634 | 00E356F71AD99517003FC87E /* Release */, 1635 | ); 1636 | defaultConfigurationIsVisible = 0; 1637 | defaultConfigurationName = Release; 1638 | }; 1639 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = { 1640 | isa = XCConfigurationList; 1641 | buildConfigurations = ( 1642 | 13B07F941A680F5B00A75B9A /* Debug */, 1643 | 13B07F951A680F5B00A75B9A /* Release */, 1644 | ); 1645 | defaultConfigurationIsVisible = 0; 1646 | defaultConfigurationName = Release; 1647 | }; 1648 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOS" */ = { 1649 | isa = XCConfigurationList; 1650 | buildConfigurations = ( 1651 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1652 | 2D02E4981E0B4A5E006451C7 /* Release */, 1653 | ); 1654 | defaultConfigurationIsVisible = 0; 1655 | defaultConfigurationName = Release; 1656 | }; 1657 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "example-tvOSTests" */ = { 1658 | isa = XCConfigurationList; 1659 | buildConfigurations = ( 1660 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1661 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1662 | ); 1663 | defaultConfigurationIsVisible = 0; 1664 | defaultConfigurationName = Release; 1665 | }; 1666 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = { 1667 | isa = XCConfigurationList; 1668 | buildConfigurations = ( 1669 | 83CBBA201A601CBA00E9B192 /* Debug */, 1670 | 83CBBA211A601CBA00E9B192 /* Release */, 1671 | ); 1672 | defaultConfigurationIsVisible = 0; 1673 | defaultConfigurationName = Release; 1674 | }; 1675 | /* End XCConfigurationList section */ 1676 | }; 1677 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1678 | } 1679 | --------------------------------------------------------------------------------