├── .watchmanconfig ├── .gitattributes ├── .babelrc ├── app.json ├── android ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── MaterialCommunityIcons.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── test │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ ├── BUCK │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── settings.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── .buckconfig ├── jsconfig.json ├── README.md ├── index.android.js ├── __tests__ ├── index.ios.js └── index.android.js ├── ios ├── test │ ├── AppDelegate.h │ ├── main.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── testTests │ ├── Info.plist │ └── testTests.m ├── test-tvOSTests │ └── Info.plist ├── test-tvOS │ └── Info.plist └── test.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── test.xcscheme │ │ └── test-tvOS.xcscheme │ └── project.pbxproj ├── package.json ├── .gitignore ├── index.ios.js ├── .flowconfig ├── App └── camera │ ├── result.js │ ├── nav.js │ └── camera.js └── styleName.json /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test", 3 | "displayName": "test" 4 | } -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | test 5 | 6 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lizhooh/react-native-qrcode-scan/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowJs": true, 4 | "allowSyntheticDefaultImports": true 5 | }, 6 | "exclude": [ 7 | "node_modules" 8 | ] 9 | } -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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-2.4-all.zip 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## react-native-qrcode-scan 2 | 基于 React Native Camera 实现二维码扫描 3 | 4 | 5 | 6 | ## 来自于我的博客 7 | React Native Camera 实现二维码扫描 8 | 9 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import { AppRegistry } from 'react-native'; 8 | import camera from './App/camera/nav'; 9 | 10 | const App = camera; 11 | 12 | AppRegistry.registerComponent('test', () => App); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'test' 2 | 3 | include ':app' 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | include ':react-native-camera' 7 | project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') 8 | -------------------------------------------------------------------------------- /ios/test/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/test/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.test; 2 | 3 | import com.facebook.react.ReactActivity; 4 | import com.oblador.vectoricons.VectorIconsPackage; 5 | import com.lwansbrough.RCTCamera.RCTCameraPackage; 6 | 7 | public class MainActivity extends ReactActivity { 8 | 9 | /** 10 | * Returns the name of the main component registered from JavaScript. 11 | * This is used to schedule rendering of the component. 12 | */ 13 | @Override 14 | protected String getMainComponentName() { 15 | return "test"; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ios/test/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test", 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": "15.4.2", 11 | "react-native": "0.41.2", 12 | "react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git", 13 | "react-native-vector-icons": "^4.0.0" 14 | }, 15 | "devDependencies": { 16 | "babel-jest": "18.0.0", 17 | "babel-preset-react-native": "1.9.1", 18 | "jest": "18.1.0", 19 | "react-test-renderer": "15.4.2" 20 | }, 21 | "jest": { 22 | "preset": "react-native" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ios/test/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/testTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/test-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 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /.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 | android/app/libs 43 | *.keystore 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 51 | 52 | fastlane/report.xml 53 | fastlane/Preview.html 54 | fastlane/screenshots 55 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class test extends Component { 16 | render() { 17 | return ( 18 | 19 | 20 | Welcome to React Native! 21 | 22 | 23 | To get started, edit index.ios.js 24 | 25 | 26 | Press Cmd+R to reload,{'\n'} 27 | Cmd+D or shake for dev menu 28 | 29 | 30 | ); 31 | } 32 | } 33 | 34 | const styles = StyleSheet.create({ 35 | container: { 36 | flex: 1, 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | backgroundColor: '#F5FCFF', 40 | }, 41 | welcome: { 42 | fontSize: 20, 43 | textAlign: 'center', 44 | margin: 10, 45 | }, 46 | instructions: { 47 | textAlign: 'center', 48 | color: '#333333', 49 | marginBottom: 5, 50 | }, 51 | }); 52 | 53 | AppRegistry.registerComponent('test', () => test); 54 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/test/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.test; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import com.oblador.vectoricons.VectorIconsPackage; 14 | import com.lwansbrough.RCTCamera.RCTCameraPackage; 15 | 16 | import java.util.Arrays; 17 | import java.util.List; 18 | 19 | public class MainApplication extends Application implements ReactApplication { 20 | 21 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 22 | @Override 23 | public boolean getUseDeveloperSupport() { 24 | return BuildConfig.DEBUG; 25 | } 26 | 27 | @Override 28 | protected List getPackages() { 29 | return Arrays.asList( 30 | new MainReactPackage(), 31 | new VectorIconsPackage(), 32 | new RCTCameraPackage() 33 | ); 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /.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 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | module.system=haste 26 | 27 | experimental.strict_type_args=true 28 | 29 | munge_underscores=true 30 | 31 | 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' 32 | 33 | suppress_type=$FlowIssue 34 | suppress_type=$FlowFixMe 35 | suppress_type=$FixMe 36 | 37 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-7]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-7]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 40 | 41 | unsafe.enable_getters_and_setters=true 42 | 43 | [version] 44 | ^0.37.0 45 | -------------------------------------------------------------------------------- /ios/test/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"test" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.test', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.test', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /ios/test-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 | -------------------------------------------------------------------------------- /App/camera/result.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | Text, 5 | View, 6 | Navigator, 7 | TouchableOpacity as Touch, 8 | InteractionManager, 9 | } from 'react-native'; 10 | 11 | import MaterialIcons from 'react-native-vector-icons/MaterialIcons'; 12 | 13 | export default Result = (props) => ( 14 | 15 | 16 | { 18 | props.navigator.replace({ 19 | id: 1, 20 | data: {}, 21 | }); 22 | } } 23 | > 24 | 29 | 30 | 31 | 扫描结果 32 | 33 | 34 | 35 | 36 | 37 | {props.data.data} 38 | 39 | 40 | 41 | ); 42 | 43 | const styles = StyleSheet.create({ 44 | contaner: { 45 | flex: 1, 46 | backgroundColor: '#fff', 47 | }, 48 | toolbar: { 49 | height: 55, 50 | backgroundColor: '#333', 51 | paddingHorizontal: 10, 52 | flexDirection: 'row', 53 | alignItems: 'center', 54 | }, 55 | toolbarTitle: { 56 | color: '#fff', 57 | fontSize: 20, 58 | margin: 18, 59 | }, 60 | content: { 61 | flex: 1, 62 | alignItems: 'center', 63 | }, 64 | text: { 65 | padding: 50, 66 | color: 'rgba(30, 145, 255, 1)', 67 | fontSize: 20, 68 | }, 69 | }) 70 | -------------------------------------------------------------------------------- /App/camera/nav.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | Text, 5 | View, 6 | Navigator, 7 | BackAndroid, 8 | ToastAndroid, 9 | } from 'react-native'; 10 | 11 | import Camera from './camera'; 12 | import Result from './result'; 13 | 14 | export default class Nav extends Component { 15 | 16 | constructor(props) { 17 | super(props); 18 | } 19 | 20 | renderScene = (route, navigator) => { 21 | this._navigator = navigator; 22 | 23 | if (route.id === 1) { 24 | return ; 25 | } 26 | 27 | if (route.id === 2) { 28 | return ; 29 | } 30 | }; 31 | 32 | onBackAndroid = (event) => { 33 | 34 | if (this._navigator && this._navigator.getCurrentRoutes().length > 1) { 35 | this._navigator.pop(); 36 | return true; 37 | } 38 | 39 | if (this._lastBackPressed && this._lastBackPressed + 1000 >= Date.now()) { 40 | return false; 41 | } 42 | 43 | this._lastBackPressed = Date.now(); 44 | ToastAndroid.show('再按一次退出应用', ToastAndroid.SHORT); 45 | 46 | return true; 47 | }; 48 | 49 | componentWillMount() { 50 | BackAndroid.addEventListener('hardwareBackPress', this.onBackAndroid); 51 | } 52 | 53 | componentWillUnmount() { 54 | BackAndroid.removeEventListener('hardwareBackPress', this.onBackAndroid); 55 | } 56 | 57 | render() { 58 | return ( 59 | { 63 | return Navigator.SceneConfigs.PushFromLeft; 64 | } } 65 | /> 66 | ); 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /styleName.json: -------------------------------------------------------------------------------- 1 | [ 2 | "alignItems", 3 | "alignSelf", 4 | "backfaceVisibility", 5 | "backgroundColor", 6 | 7 | "borderBottomColor", 8 | "borderBottomLeftRadius", 9 | "borderBottomRightRadius", 10 | "borderBottomWidth", 11 | "borderColor", 12 | "borderLeftColor", 13 | "borderLeftWidth", 14 | "borderRadius", 15 | "borderRightColor", 16 | "borderRightWidth", 17 | "borderStyle", 18 | "borderTopColor", 19 | "borderTopLeftRadius", 20 | "borderTopRightRadius", 21 | "borderTopWidth", 22 | "borderWidth", 23 | 24 | "bottom", 25 | "color", 26 | "decomposedMatrix", 27 | "elevation", 28 | 29 | "flex", 30 | "flexBasis", 31 | "flexDirection", 32 | "flexGrow", 33 | "flexShrink", 34 | "flexWrap", 35 | 36 | "fontFamily", 37 | "fontSize", 38 | "fontStyle", 39 | "fontVariant", 40 | "fontWeight", 41 | 42 | "height", 43 | "justifyContent", 44 | "left", 45 | "letterSpacing", 46 | "lineHeight", 47 | 48 | "margin", 49 | "marginBottom", 50 | "marginHorizontal", 51 | "marginLeft", 52 | "marginRight", 53 | "marginTop", 54 | "marginVertical", 55 | 56 | "maxHeight", 57 | "maxWidth", 58 | "minHeight", 59 | "minWidth", 60 | 61 | "opacity", 62 | "overflow", 63 | "overlayColor", 64 | 65 | "padding", 66 | "paddingBottom", 67 | "paddingHorizontal", 68 | "paddingLeft", 69 | "paddingRight", 70 | "paddingTop", 71 | "paddingVertical", 72 | "position", 73 | 74 | "resizeMode", 75 | 76 | "right", 77 | "rotation", 78 | 79 | "scaleX", 80 | "scaleY", 81 | 82 | "shadowColor", 83 | "shadowOffset", 84 | "shadowOpacity", 85 | "shadowRadius", 86 | 87 | "textAlign", 88 | "textAlignVertical", 89 | "textDecorationColor", 90 | "textDecorationLine", 91 | "textDecorationStyle", 92 | 93 | "textShadowColor", 94 | "textShadowOffset", 95 | "textShadowRadius", 96 | 97 | "tintColor", 98 | "top", 99 | "transform", 100 | "transformMatrix", 101 | "translateX", 102 | "translateY", 103 | 104 | "width", 105 | "writingDirection", 106 | "zIndex" 107 | ] -------------------------------------------------------------------------------- /ios/testTests/testTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface testTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation testTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /ios/test/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | test 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | FontAwesome.ttf 59 | Foundation.ttf 60 | Ionicons.ttf 61 | MaterialCommunityIcons.ttf 62 | MaterialIcons.ttf 63 | Octicons.ttf 64 | SimpleLineIcons.ttf 65 | Zocial.ttf 66 | 67 | 68 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/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 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /ios/test/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 | -------------------------------------------------------------------------------- /App/camera/camera.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | Dimensions, 4 | StyleSheet, 5 | Text, 6 | TouchableOpacity as Touch, 7 | View, 8 | Easing, 9 | Animated, 10 | ToastAndroid, 11 | } from 'react-native'; 12 | 13 | import Camera from 'react-native-camera'; 14 | import MaterialIcons from 'react-native-vector-icons/MaterialIcons'; 15 | 16 | export default class BadInstagramCloneApp extends Component { 17 | 18 | constructor(props) { 19 | super(props); 20 | 21 | this.state = { 22 | line_position: new Animated.Value(0), 23 | } 24 | } 25 | 26 | lineAnimated = () => { 27 | this.state.line_position.setValue(0); 28 | 29 | Animated.timing(this.state.line_position, { 30 | toValue: 200, 31 | duration: 3500, 32 | easing: Easing.linear, 33 | }).start(() => { 34 | this.lineAnimated(); 35 | }); 36 | }; 37 | 38 | componentDidMount() { 39 | setTimeout(() => { 40 | this.lineAnimated(); 41 | }, 2000); 42 | } 43 | 44 | render() { 45 | return ( 46 | 47 | 48 | 53 | 54 | 二维码/条码 55 | 56 | 57 | { this.camera = cam } } 59 | style={styles.preview} 60 | aspect={Camera.constants.Aspect.fill} 61 | captureQuality={'medium'} 62 | onBarCodeRead={(data) => { 63 | this.props.navigator.replace({ 64 | id: 2, 65 | data: data, 66 | }); 67 | } } 68 | > 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 将二维码/条码放入框内,即可自动扫描 85 | 86 | 87 | 88 | 89 | ); 90 | } 91 | 92 | takePicture = () => { 93 | // 异步的 94 | this.camera.capture() 95 | .then((data) => console.log(data)) 96 | .catch(err => console.error(err)); 97 | } 98 | } 99 | 100 | const styles = StyleSheet.create({ 101 | container: { 102 | flex: 1 103 | }, 104 | toolbar: { 105 | height: 55, 106 | backgroundColor: '#333', 107 | paddingHorizontal: 10, 108 | flexDirection: 'row', 109 | alignItems: 'center', 110 | }, 111 | toolbarTitle: { 112 | color: '#fff', 113 | fontSize: 20, 114 | margin: 18, 115 | }, 116 | preview: { 117 | flex: 1, 118 | justifyContent: 'center', 119 | alignItems: 'center', 120 | }, 121 | modal: { 122 | flex: 1, 123 | width: Dimensions.get('window').width, 124 | }, 125 | shade: { 126 | flex: 1, 127 | backgroundColor: 'rgba(1, 1, 1, 0.65)', 128 | }, 129 | content: { 130 | alignItems: 'center', 131 | padding: 20, 132 | }, 133 | qrcode: { 134 | width: 200, 135 | height: 200, 136 | alignItems: 'center', 137 | }, 138 | text: { 139 | color: '#ccc', 140 | fontSize: 15, 141 | }, 142 | line: { 143 | width: 200, 144 | height: 1, 145 | backgroundColor: 'rgba(30, 255, 145, 1)', 146 | } 147 | }); 148 | 149 | -------------------------------------------------------------------------------- /ios/test.xcodeproj/xcshareddata/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/test.xcodeproj/xcshareddata/xcschemes/test-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 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/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 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.test" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':react-native-vector-icons') 130 | compile project(':react-native-camera') 131 | compile fileTree(dir: "libs", include: ["*.jar"]) 132 | compile "com.android.support:appcompat-v7:23.0.1" 133 | compile "com.facebook.react:react-native:+" // From node_modules 134 | } 135 | 136 | // Run this once to be able to run the application with BUCK 137 | // puts all compile dependencies into folder libs for BUCK to use 138 | task copyDownloadableDepsToLibs(type: Copy) { 139 | from configurations.compile 140 | into 'libs' 141 | } 142 | -------------------------------------------------------------------------------- /ios/test.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 /* testTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* testTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */; }; 28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 34 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* testTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* testTests.m */; }; 36 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 38 | FB00005CE9D6489586579AA6 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F4EEDC04AB8413CA638D15E /* libRCTCamera.a */; }; 39 | 153CF7C590CB412B91C09303 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BA3E228478B64EFA86DFB20C /* libRNVectorIcons.a */; }; 40 | 9F6676445EF144D999C603E2 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 02A83E7762884893AF049745 /* Entypo.ttf */; }; 41 | 94540E668E02414BBFD7EC12 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4EBB8C22755645E5B28AD497 /* EvilIcons.ttf */; }; 42 | 57B7D55A4606411AAC084AA3 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C5476D26139A405C81C7DDEF /* FontAwesome.ttf */; }; 43 | A79F6F2979184FE8B127C154 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E12130ACB3834F1EA25AD50C /* Foundation.ttf */; }; 44 | 35F311104CAC41A7B6237FB6 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2AE26DB5CBBC49A296011BD3 /* Ionicons.ttf */; }; 45 | B14EBB9444A54AF5A77F9A41 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 246DE659A5364631BFEF0C75 /* MaterialCommunityIcons.ttf */; }; 46 | D2AD0898E3C44D47B88F1597 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2245BEA883DB470691349F32 /* MaterialIcons.ttf */; }; 47 | 4E031661C0234A489A0694C6 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DCE101C300CC49B78DC8CAA1 /* Octicons.ttf */; }; 48 | 5397CBDC77AB493BAB0D36BC /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 88BB100AEE7B4898841EC6A3 /* SimpleLineIcons.ttf */; }; 49 | 8E279C34D6424E6EA3DE26D4 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 8892EADD943440D5B84369B6 /* Zocial.ttf */; }; 50 | /* End PBXBuildFile section */ 51 | 52 | /* Begin PBXContainerItemProxy section */ 53 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTActionSheet; 59 | }; 60 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTGeolocation; 66 | }; 67 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 72 | remoteInfo = RCTImage; 73 | }; 74 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 79 | remoteInfo = RCTNetwork; 80 | }; 81 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 86 | remoteInfo = RCTVibration; 87 | }; 88 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 91 | proxyType = 1; 92 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 93 | remoteInfo = test; 94 | }; 95 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 100 | remoteInfo = RCTSettings; 101 | }; 102 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 107 | remoteInfo = RCTWebSocket; 108 | }; 109 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 114 | remoteInfo = React; 115 | }; 116 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 119 | proxyType = 1; 120 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 121 | remoteInfo = "test-tvOS"; 122 | }; 123 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 128 | remoteInfo = "RCTImage-tvOS"; 129 | }; 130 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 135 | remoteInfo = "RCTLinking-tvOS"; 136 | }; 137 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 142 | remoteInfo = "RCTNetwork-tvOS"; 143 | }; 144 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 149 | remoteInfo = "RCTSettings-tvOS"; 150 | }; 151 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 156 | remoteInfo = "RCTText-tvOS"; 157 | }; 158 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 163 | remoteInfo = "RCTWebSocket-tvOS"; 164 | }; 165 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 170 | remoteInfo = "React-tvOS"; 171 | }; 172 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 177 | remoteInfo = yoga; 178 | }; 179 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 184 | remoteInfo = "yoga-tvOS"; 185 | }; 186 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 191 | remoteInfo = cxxreact; 192 | }; 193 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 198 | remoteInfo = "cxxreact-tvOS"; 199 | }; 200 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 205 | remoteInfo = jschelpers; 206 | }; 207 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 212 | remoteInfo = "jschelpers-tvOS"; 213 | }; 214 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 219 | remoteInfo = RCTAnimation; 220 | }; 221 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 226 | remoteInfo = "RCTAnimation-tvOS"; 227 | }; 228 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 233 | remoteInfo = RCTLinking; 234 | }; 235 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 240 | remoteInfo = RCTText; 241 | }; 242 | /* End PBXContainerItemProxy section */ 243 | 244 | /* Begin PBXFileReference section */ 245 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 246 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 247 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 248 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 249 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 250 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 251 | 00E356EE1AD99517003FC87E /* testTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = testTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 252 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 253 | 00E356F21AD99517003FC87E /* testTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = testTests.m; sourceTree = ""; }; 254 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 255 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 256 | 13B07F961A680F5B00A75B9A /* test.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = test.app; sourceTree = BUILT_PRODUCTS_DIR; }; 257 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = test/AppDelegate.h; sourceTree = ""; }; 258 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = test/AppDelegate.m; sourceTree = ""; }; 259 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 260 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = test/Images.xcassets; sourceTree = ""; }; 261 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/Info.plist; sourceTree = ""; }; 262 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = test/main.m; sourceTree = ""; }; 263 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 264 | 2D02E47B1E0B4A5D006451C7 /* test-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "test-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 265 | 2D02E4901E0B4A5D006451C7 /* test-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "test-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 266 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 267 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 268 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 269 | 6DD923A8978044C4A8549B72 /* RCTCamera.xcodeproj */ = {isa = PBXFileReference; name = "RCTCamera.xcodeproj"; path = "../node_modules/react-native-camera/ios/RCTCamera.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 270 | 6F4EEDC04AB8413CA638D15E /* libRCTCamera.a */ = {isa = PBXFileReference; name = "libRCTCamera.a"; path = "libRCTCamera.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 271 | 507DAEB1DCB8429082F46332 /* 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; }; 272 | BA3E228478B64EFA86DFB20C /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 273 | 02A83E7762884893AF049745 /* 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; }; 274 | 4EBB8C22755645E5B28AD497 /* 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; }; 275 | C5476D26139A405C81C7DDEF /* 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; }; 276 | E12130ACB3834F1EA25AD50C /* 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; }; 277 | 2AE26DB5CBBC49A296011BD3 /* 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; }; 278 | 246DE659A5364631BFEF0C75 /* 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; }; 279 | 2245BEA883DB470691349F32 /* 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; }; 280 | DCE101C300CC49B78DC8CAA1 /* 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; }; 281 | 88BB100AEE7B4898841EC6A3 /* 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; }; 282 | 8892EADD943440D5B84369B6 /* 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; }; 283 | /* End PBXFileReference section */ 284 | 285 | /* Begin PBXFrameworksBuildPhase section */ 286 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 287 | isa = PBXFrameworksBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 291 | ); 292 | runOnlyForDeploymentPostprocessing = 0; 293 | }; 294 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 295 | isa = PBXFrameworksBuildPhase; 296 | buildActionMask = 2147483647; 297 | files = ( 298 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 299 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 300 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 301 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 302 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 303 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 304 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 305 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 306 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 307 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 308 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 309 | FB00005CE9D6489586579AA6 /* libRCTCamera.a in Frameworks */, 310 | 153CF7C590CB412B91C09303 /* libRNVectorIcons.a in Frameworks */, 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | }; 314 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 315 | isa = PBXFrameworksBuildPhase; 316 | buildActionMask = 2147483647; 317 | files = ( 318 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 319 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 320 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 321 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 322 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 323 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 324 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 325 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 330 | isa = PBXFrameworksBuildPhase; 331 | buildActionMask = 2147483647; 332 | files = ( 333 | ); 334 | runOnlyForDeploymentPostprocessing = 0; 335 | }; 336 | /* End PBXFrameworksBuildPhase section */ 337 | 338 | /* Begin PBXGroup section */ 339 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 340 | isa = PBXGroup; 341 | children = ( 342 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 343 | ); 344 | name = Products; 345 | sourceTree = ""; 346 | }; 347 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 348 | isa = PBXGroup; 349 | children = ( 350 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 351 | ); 352 | name = Products; 353 | sourceTree = ""; 354 | }; 355 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 356 | isa = PBXGroup; 357 | children = ( 358 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 359 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 360 | ); 361 | name = Products; 362 | sourceTree = ""; 363 | }; 364 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 365 | isa = PBXGroup; 366 | children = ( 367 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 368 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 369 | ); 370 | name = Products; 371 | sourceTree = ""; 372 | }; 373 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 374 | isa = PBXGroup; 375 | children = ( 376 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 377 | ); 378 | name = Products; 379 | sourceTree = ""; 380 | }; 381 | 00E356EF1AD99517003FC87E /* testTests */ = { 382 | isa = PBXGroup; 383 | children = ( 384 | 00E356F21AD99517003FC87E /* testTests.m */, 385 | 00E356F01AD99517003FC87E /* Supporting Files */, 386 | ); 387 | path = testTests; 388 | sourceTree = ""; 389 | }; 390 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 391 | isa = PBXGroup; 392 | children = ( 393 | 00E356F11AD99517003FC87E /* Info.plist */, 394 | ); 395 | name = "Supporting Files"; 396 | sourceTree = ""; 397 | }; 398 | 139105B71AF99BAD00B5F7CC /* Products */ = { 399 | isa = PBXGroup; 400 | children = ( 401 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 402 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 403 | ); 404 | name = Products; 405 | sourceTree = ""; 406 | }; 407 | 139FDEE71B06529A00C62182 /* Products */ = { 408 | isa = PBXGroup; 409 | children = ( 410 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 411 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 412 | ); 413 | name = Products; 414 | sourceTree = ""; 415 | }; 416 | 13B07FAE1A68108700A75B9A /* test */ = { 417 | isa = PBXGroup; 418 | children = ( 419 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 420 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 421 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 422 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 423 | 13B07FB61A68108700A75B9A /* Info.plist */, 424 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 425 | 13B07FB71A68108700A75B9A /* main.m */, 426 | ); 427 | name = test; 428 | sourceTree = ""; 429 | }; 430 | 146834001AC3E56700842450 /* Products */ = { 431 | isa = PBXGroup; 432 | children = ( 433 | 146834041AC3E56700842450 /* libReact.a */, 434 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 435 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 436 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 437 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 438 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 439 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 440 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 441 | ); 442 | name = Products; 443 | sourceTree = ""; 444 | }; 445 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 446 | isa = PBXGroup; 447 | children = ( 448 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 449 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 450 | ); 451 | name = Products; 452 | sourceTree = ""; 453 | }; 454 | 78C398B11ACF4ADC00677621 /* Products */ = { 455 | isa = PBXGroup; 456 | children = ( 457 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 458 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 459 | ); 460 | name = Products; 461 | sourceTree = ""; 462 | }; 463 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 464 | isa = PBXGroup; 465 | children = ( 466 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 467 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 468 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 469 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 470 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 471 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 472 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 473 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 474 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 475 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 476 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 477 | 6DD923A8978044C4A8549B72 /* RCTCamera.xcodeproj */, 478 | 507DAEB1DCB8429082F46332 /* RNVectorIcons.xcodeproj */, 479 | ); 480 | name = Libraries; 481 | sourceTree = ""; 482 | }; 483 | 832341B11AAA6A8300B99B32 /* Products */ = { 484 | isa = PBXGroup; 485 | children = ( 486 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 487 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 488 | ); 489 | name = Products; 490 | sourceTree = ""; 491 | }; 492 | 83CBB9F61A601CBA00E9B192 = { 493 | isa = PBXGroup; 494 | children = ( 495 | 13B07FAE1A68108700A75B9A /* test */, 496 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 497 | 00E356EF1AD99517003FC87E /* testTests */, 498 | 83CBBA001A601CBA00E9B192 /* Products */, 499 | 2438B8B16D08479A80242096 /* Resources */, 500 | ); 501 | indentWidth = 2; 502 | sourceTree = ""; 503 | tabWidth = 2; 504 | }; 505 | 83CBBA001A601CBA00E9B192 /* Products */ = { 506 | isa = PBXGroup; 507 | children = ( 508 | 13B07F961A680F5B00A75B9A /* test.app */, 509 | 00E356EE1AD99517003FC87E /* testTests.xctest */, 510 | 2D02E47B1E0B4A5D006451C7 /* test-tvOS.app */, 511 | 2D02E4901E0B4A5D006451C7 /* test-tvOSTests.xctest */, 512 | ); 513 | name = Products; 514 | sourceTree = ""; 515 | }; 516 | 2438B8B16D08479A80242096 /* Resources */ = { 517 | isa = PBXGroup; 518 | children = ( 519 | 02A83E7762884893AF049745 /* Entypo.ttf */, 520 | 4EBB8C22755645E5B28AD497 /* EvilIcons.ttf */, 521 | C5476D26139A405C81C7DDEF /* FontAwesome.ttf */, 522 | E12130ACB3834F1EA25AD50C /* Foundation.ttf */, 523 | 2AE26DB5CBBC49A296011BD3 /* Ionicons.ttf */, 524 | 246DE659A5364631BFEF0C75 /* MaterialCommunityIcons.ttf */, 525 | 2245BEA883DB470691349F32 /* MaterialIcons.ttf */, 526 | DCE101C300CC49B78DC8CAA1 /* Octicons.ttf */, 527 | 88BB100AEE7B4898841EC6A3 /* SimpleLineIcons.ttf */, 528 | 8892EADD943440D5B84369B6 /* Zocial.ttf */, 529 | ); 530 | name = Resources; 531 | path = ""; 532 | sourceTree = ""; 533 | }; 534 | /* End PBXGroup section */ 535 | 536 | /* Begin PBXNativeTarget section */ 537 | 00E356ED1AD99517003FC87E /* testTests */ = { 538 | isa = PBXNativeTarget; 539 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "testTests" */; 540 | buildPhases = ( 541 | 00E356EA1AD99517003FC87E /* Sources */, 542 | 00E356EB1AD99517003FC87E /* Frameworks */, 543 | 00E356EC1AD99517003FC87E /* Resources */, 544 | ); 545 | buildRules = ( 546 | ); 547 | dependencies = ( 548 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 549 | ); 550 | name = testTests; 551 | productName = testTests; 552 | productReference = 00E356EE1AD99517003FC87E /* testTests.xctest */; 553 | productType = "com.apple.product-type.bundle.unit-test"; 554 | }; 555 | 13B07F861A680F5B00A75B9A /* test */ = { 556 | isa = PBXNativeTarget; 557 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "test" */; 558 | buildPhases = ( 559 | 13B07F871A680F5B00A75B9A /* Sources */, 560 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 561 | 13B07F8E1A680F5B00A75B9A /* Resources */, 562 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 563 | ); 564 | buildRules = ( 565 | ); 566 | dependencies = ( 567 | ); 568 | name = test; 569 | productName = "Hello World"; 570 | productReference = 13B07F961A680F5B00A75B9A /* test.app */; 571 | productType = "com.apple.product-type.application"; 572 | }; 573 | 2D02E47A1E0B4A5D006451C7 /* test-tvOS */ = { 574 | isa = PBXNativeTarget; 575 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "test-tvOS" */; 576 | buildPhases = ( 577 | 2D02E4771E0B4A5D006451C7 /* Sources */, 578 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 579 | 2D02E4791E0B4A5D006451C7 /* Resources */, 580 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 581 | ); 582 | buildRules = ( 583 | ); 584 | dependencies = ( 585 | ); 586 | name = "test-tvOS"; 587 | productName = "test-tvOS"; 588 | productReference = 2D02E47B1E0B4A5D006451C7 /* test-tvOS.app */; 589 | productType = "com.apple.product-type.application"; 590 | }; 591 | 2D02E48F1E0B4A5D006451C7 /* test-tvOSTests */ = { 592 | isa = PBXNativeTarget; 593 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "test-tvOSTests" */; 594 | buildPhases = ( 595 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 596 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 597 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 598 | ); 599 | buildRules = ( 600 | ); 601 | dependencies = ( 602 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 603 | ); 604 | name = "test-tvOSTests"; 605 | productName = "test-tvOSTests"; 606 | productReference = 2D02E4901E0B4A5D006451C7 /* test-tvOSTests.xctest */; 607 | productType = "com.apple.product-type.bundle.unit-test"; 608 | }; 609 | /* End PBXNativeTarget section */ 610 | 611 | /* Begin PBXProject section */ 612 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 613 | isa = PBXProject; 614 | attributes = { 615 | LastUpgradeCheck = 610; 616 | ORGANIZATIONNAME = Facebook; 617 | TargetAttributes = { 618 | 00E356ED1AD99517003FC87E = { 619 | CreatedOnToolsVersion = 6.2; 620 | TestTargetID = 13B07F861A680F5B00A75B9A; 621 | }; 622 | 2D02E47A1E0B4A5D006451C7 = { 623 | CreatedOnToolsVersion = 8.2.1; 624 | ProvisioningStyle = Automatic; 625 | }; 626 | 2D02E48F1E0B4A5D006451C7 = { 627 | CreatedOnToolsVersion = 8.2.1; 628 | ProvisioningStyle = Automatic; 629 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 630 | }; 631 | }; 632 | }; 633 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "test" */; 634 | compatibilityVersion = "Xcode 3.2"; 635 | developmentRegion = English; 636 | hasScannedForEncodings = 0; 637 | knownRegions = ( 638 | en, 639 | Base, 640 | ); 641 | mainGroup = 83CBB9F61A601CBA00E9B192; 642 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 643 | projectDirPath = ""; 644 | projectReferences = ( 645 | { 646 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 647 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 648 | }, 649 | { 650 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 651 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 652 | }, 653 | { 654 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 655 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 656 | }, 657 | { 658 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 659 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 660 | }, 661 | { 662 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 663 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 664 | }, 665 | { 666 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 667 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 668 | }, 669 | { 670 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 671 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 672 | }, 673 | { 674 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 675 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 676 | }, 677 | { 678 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 679 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 680 | }, 681 | { 682 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 683 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 684 | }, 685 | { 686 | ProductGroup = 146834001AC3E56700842450 /* Products */; 687 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 688 | }, 689 | ); 690 | projectRoot = ""; 691 | targets = ( 692 | 13B07F861A680F5B00A75B9A /* test */, 693 | 00E356ED1AD99517003FC87E /* testTests */, 694 | 2D02E47A1E0B4A5D006451C7 /* test-tvOS */, 695 | 2D02E48F1E0B4A5D006451C7 /* test-tvOSTests */, 696 | ); 697 | }; 698 | /* End PBXProject section */ 699 | 700 | /* Begin PBXReferenceProxy section */ 701 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 702 | isa = PBXReferenceProxy; 703 | fileType = archive.ar; 704 | path = libRCTActionSheet.a; 705 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 706 | sourceTree = BUILT_PRODUCTS_DIR; 707 | }; 708 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 709 | isa = PBXReferenceProxy; 710 | fileType = archive.ar; 711 | path = libRCTGeolocation.a; 712 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 713 | sourceTree = BUILT_PRODUCTS_DIR; 714 | }; 715 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 716 | isa = PBXReferenceProxy; 717 | fileType = archive.ar; 718 | path = libRCTImage.a; 719 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 720 | sourceTree = BUILT_PRODUCTS_DIR; 721 | }; 722 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 723 | isa = PBXReferenceProxy; 724 | fileType = archive.ar; 725 | path = libRCTNetwork.a; 726 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 727 | sourceTree = BUILT_PRODUCTS_DIR; 728 | }; 729 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 730 | isa = PBXReferenceProxy; 731 | fileType = archive.ar; 732 | path = libRCTVibration.a; 733 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 734 | sourceTree = BUILT_PRODUCTS_DIR; 735 | }; 736 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 737 | isa = PBXReferenceProxy; 738 | fileType = archive.ar; 739 | path = libRCTSettings.a; 740 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 741 | sourceTree = BUILT_PRODUCTS_DIR; 742 | }; 743 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 744 | isa = PBXReferenceProxy; 745 | fileType = archive.ar; 746 | path = libRCTWebSocket.a; 747 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 748 | sourceTree = BUILT_PRODUCTS_DIR; 749 | }; 750 | 146834041AC3E56700842450 /* libReact.a */ = { 751 | isa = PBXReferenceProxy; 752 | fileType = archive.ar; 753 | path = libReact.a; 754 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 755 | sourceTree = BUILT_PRODUCTS_DIR; 756 | }; 757 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 758 | isa = PBXReferenceProxy; 759 | fileType = archive.ar; 760 | path = "libRCTImage-tvOS.a"; 761 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 762 | sourceTree = BUILT_PRODUCTS_DIR; 763 | }; 764 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 765 | isa = PBXReferenceProxy; 766 | fileType = archive.ar; 767 | path = "libRCTLinking-tvOS.a"; 768 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 769 | sourceTree = BUILT_PRODUCTS_DIR; 770 | }; 771 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 772 | isa = PBXReferenceProxy; 773 | fileType = archive.ar; 774 | path = "libRCTNetwork-tvOS.a"; 775 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 776 | sourceTree = BUILT_PRODUCTS_DIR; 777 | }; 778 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 779 | isa = PBXReferenceProxy; 780 | fileType = archive.ar; 781 | path = "libRCTSettings-tvOS.a"; 782 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 783 | sourceTree = BUILT_PRODUCTS_DIR; 784 | }; 785 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 786 | isa = PBXReferenceProxy; 787 | fileType = archive.ar; 788 | path = "libRCTText-tvOS.a"; 789 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 790 | sourceTree = BUILT_PRODUCTS_DIR; 791 | }; 792 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 793 | isa = PBXReferenceProxy; 794 | fileType = archive.ar; 795 | path = "libRCTWebSocket-tvOS.a"; 796 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 797 | sourceTree = BUILT_PRODUCTS_DIR; 798 | }; 799 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 800 | isa = PBXReferenceProxy; 801 | fileType = archive.ar; 802 | path = libReact.a; 803 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 804 | sourceTree = BUILT_PRODUCTS_DIR; 805 | }; 806 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 807 | isa = PBXReferenceProxy; 808 | fileType = archive.ar; 809 | path = libyoga.a; 810 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 811 | sourceTree = BUILT_PRODUCTS_DIR; 812 | }; 813 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 814 | isa = PBXReferenceProxy; 815 | fileType = archive.ar; 816 | path = libyoga.a; 817 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 818 | sourceTree = BUILT_PRODUCTS_DIR; 819 | }; 820 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 821 | isa = PBXReferenceProxy; 822 | fileType = archive.ar; 823 | path = libcxxreact.a; 824 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 825 | sourceTree = BUILT_PRODUCTS_DIR; 826 | }; 827 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 828 | isa = PBXReferenceProxy; 829 | fileType = archive.ar; 830 | path = libcxxreact.a; 831 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 832 | sourceTree = BUILT_PRODUCTS_DIR; 833 | }; 834 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 835 | isa = PBXReferenceProxy; 836 | fileType = archive.ar; 837 | path = libjschelpers.a; 838 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 839 | sourceTree = BUILT_PRODUCTS_DIR; 840 | }; 841 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 842 | isa = PBXReferenceProxy; 843 | fileType = archive.ar; 844 | path = libjschelpers.a; 845 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 846 | sourceTree = BUILT_PRODUCTS_DIR; 847 | }; 848 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 849 | isa = PBXReferenceProxy; 850 | fileType = archive.ar; 851 | path = libRCTAnimation.a; 852 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 853 | sourceTree = BUILT_PRODUCTS_DIR; 854 | }; 855 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 856 | isa = PBXReferenceProxy; 857 | fileType = archive.ar; 858 | path = "libRCTAnimation-tvOS.a"; 859 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 860 | sourceTree = BUILT_PRODUCTS_DIR; 861 | }; 862 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 863 | isa = PBXReferenceProxy; 864 | fileType = archive.ar; 865 | path = libRCTLinking.a; 866 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 867 | sourceTree = BUILT_PRODUCTS_DIR; 868 | }; 869 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 870 | isa = PBXReferenceProxy; 871 | fileType = archive.ar; 872 | path = libRCTText.a; 873 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 874 | sourceTree = BUILT_PRODUCTS_DIR; 875 | }; 876 | /* End PBXReferenceProxy section */ 877 | 878 | /* Begin PBXResourcesBuildPhase section */ 879 | 00E356EC1AD99517003FC87E /* Resources */ = { 880 | isa = PBXResourcesBuildPhase; 881 | buildActionMask = 2147483647; 882 | files = ( 883 | ); 884 | runOnlyForDeploymentPostprocessing = 0; 885 | }; 886 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 887 | isa = PBXResourcesBuildPhase; 888 | buildActionMask = 2147483647; 889 | files = ( 890 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 891 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 892 | 9F6676445EF144D999C603E2 /* Entypo.ttf in Resources */, 893 | 94540E668E02414BBFD7EC12 /* EvilIcons.ttf in Resources */, 894 | 57B7D55A4606411AAC084AA3 /* FontAwesome.ttf in Resources */, 895 | A79F6F2979184FE8B127C154 /* Foundation.ttf in Resources */, 896 | 35F311104CAC41A7B6237FB6 /* Ionicons.ttf in Resources */, 897 | B14EBB9444A54AF5A77F9A41 /* MaterialCommunityIcons.ttf in Resources */, 898 | D2AD0898E3C44D47B88F1597 /* MaterialIcons.ttf in Resources */, 899 | 4E031661C0234A489A0694C6 /* Octicons.ttf in Resources */, 900 | 5397CBDC77AB493BAB0D36BC /* SimpleLineIcons.ttf in Resources */, 901 | 8E279C34D6424E6EA3DE26D4 /* Zocial.ttf in Resources */, 902 | ); 903 | runOnlyForDeploymentPostprocessing = 0; 904 | }; 905 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 906 | isa = PBXResourcesBuildPhase; 907 | buildActionMask = 2147483647; 908 | files = ( 909 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 910 | ); 911 | runOnlyForDeploymentPostprocessing = 0; 912 | }; 913 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 914 | isa = PBXResourcesBuildPhase; 915 | buildActionMask = 2147483647; 916 | files = ( 917 | ); 918 | runOnlyForDeploymentPostprocessing = 0; 919 | }; 920 | /* End PBXResourcesBuildPhase section */ 921 | 922 | /* Begin PBXShellScriptBuildPhase section */ 923 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 924 | isa = PBXShellScriptBuildPhase; 925 | buildActionMask = 2147483647; 926 | files = ( 927 | ); 928 | inputPaths = ( 929 | ); 930 | name = "Bundle React Native code and images"; 931 | outputPaths = ( 932 | ); 933 | runOnlyForDeploymentPostprocessing = 0; 934 | shellPath = /bin/sh; 935 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 936 | }; 937 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 938 | isa = PBXShellScriptBuildPhase; 939 | buildActionMask = 2147483647; 940 | files = ( 941 | ); 942 | inputPaths = ( 943 | ); 944 | name = "Bundle React Native Code And Images"; 945 | outputPaths = ( 946 | ); 947 | runOnlyForDeploymentPostprocessing = 0; 948 | shellPath = /bin/sh; 949 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 950 | }; 951 | /* End PBXShellScriptBuildPhase section */ 952 | 953 | /* Begin PBXSourcesBuildPhase section */ 954 | 00E356EA1AD99517003FC87E /* Sources */ = { 955 | isa = PBXSourcesBuildPhase; 956 | buildActionMask = 2147483647; 957 | files = ( 958 | 00E356F31AD99517003FC87E /* testTests.m in Sources */, 959 | ); 960 | runOnlyForDeploymentPostprocessing = 0; 961 | }; 962 | 13B07F871A680F5B00A75B9A /* Sources */ = { 963 | isa = PBXSourcesBuildPhase; 964 | buildActionMask = 2147483647; 965 | files = ( 966 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 967 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 968 | ); 969 | runOnlyForDeploymentPostprocessing = 0; 970 | }; 971 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 972 | isa = PBXSourcesBuildPhase; 973 | buildActionMask = 2147483647; 974 | files = ( 975 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 976 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 977 | ); 978 | runOnlyForDeploymentPostprocessing = 0; 979 | }; 980 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 981 | isa = PBXSourcesBuildPhase; 982 | buildActionMask = 2147483647; 983 | files = ( 984 | 2DCD954D1E0B4F2C00145EB5 /* testTests.m in Sources */, 985 | ); 986 | runOnlyForDeploymentPostprocessing = 0; 987 | }; 988 | /* End PBXSourcesBuildPhase section */ 989 | 990 | /* Begin PBXTargetDependency section */ 991 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 992 | isa = PBXTargetDependency; 993 | target = 13B07F861A680F5B00A75B9A /* test */; 994 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 995 | }; 996 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 997 | isa = PBXTargetDependency; 998 | target = 2D02E47A1E0B4A5D006451C7 /* test-tvOS */; 999 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1000 | }; 1001 | /* End PBXTargetDependency section */ 1002 | 1003 | /* Begin PBXVariantGroup section */ 1004 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1005 | isa = PBXVariantGroup; 1006 | children = ( 1007 | 13B07FB21A68108700A75B9A /* Base */, 1008 | ); 1009 | name = LaunchScreen.xib; 1010 | path = test; 1011 | sourceTree = ""; 1012 | }; 1013 | /* End PBXVariantGroup section */ 1014 | 1015 | /* Begin XCBuildConfiguration section */ 1016 | 00E356F61AD99517003FC87E /* Debug */ = { 1017 | isa = XCBuildConfiguration; 1018 | buildSettings = { 1019 | BUNDLE_LOADER = "$(TEST_HOST)"; 1020 | GCC_PREPROCESSOR_DEFINITIONS = ( 1021 | "DEBUG=1", 1022 | "$(inherited)", 1023 | ); 1024 | INFOPLIST_FILE = testTests/Info.plist; 1025 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1026 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1027 | OTHER_LDFLAGS = ( 1028 | "-ObjC", 1029 | "-lc++", 1030 | ); 1031 | PRODUCT_NAME = "$(TARGET_NAME)"; 1032 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/test.app/test"; 1033 | LIBRARY_SEARCH_PATHS = ( 1034 | "$(inherited)", 1035 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1036 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1037 | ); 1038 | }; 1039 | name = Debug; 1040 | }; 1041 | 00E356F71AD99517003FC87E /* Release */ = { 1042 | isa = XCBuildConfiguration; 1043 | buildSettings = { 1044 | BUNDLE_LOADER = "$(TEST_HOST)"; 1045 | COPY_PHASE_STRIP = NO; 1046 | INFOPLIST_FILE = testTests/Info.plist; 1047 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1048 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1049 | OTHER_LDFLAGS = ( 1050 | "-ObjC", 1051 | "-lc++", 1052 | ); 1053 | PRODUCT_NAME = "$(TARGET_NAME)"; 1054 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/test.app/test"; 1055 | LIBRARY_SEARCH_PATHS = ( 1056 | "$(inherited)", 1057 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1058 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1059 | ); 1060 | }; 1061 | name = Release; 1062 | }; 1063 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1064 | isa = XCBuildConfiguration; 1065 | buildSettings = { 1066 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1067 | CURRENT_PROJECT_VERSION = 1; 1068 | DEAD_CODE_STRIPPING = NO; 1069 | INFOPLIST_FILE = test/Info.plist; 1070 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1071 | OTHER_LDFLAGS = ( 1072 | "$(inherited)", 1073 | "-ObjC", 1074 | "-lc++", 1075 | ); 1076 | PRODUCT_NAME = test; 1077 | VERSIONING_SYSTEM = "apple-generic"; 1078 | }; 1079 | name = Debug; 1080 | }; 1081 | 13B07F951A680F5B00A75B9A /* Release */ = { 1082 | isa = XCBuildConfiguration; 1083 | buildSettings = { 1084 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1085 | CURRENT_PROJECT_VERSION = 1; 1086 | INFOPLIST_FILE = test/Info.plist; 1087 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1088 | OTHER_LDFLAGS = ( 1089 | "$(inherited)", 1090 | "-ObjC", 1091 | "-lc++", 1092 | ); 1093 | PRODUCT_NAME = test; 1094 | VERSIONING_SYSTEM = "apple-generic"; 1095 | }; 1096 | name = Release; 1097 | }; 1098 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1099 | isa = XCBuildConfiguration; 1100 | buildSettings = { 1101 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1102 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1103 | CLANG_ANALYZER_NONNULL = YES; 1104 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1105 | CLANG_WARN_INFINITE_RECURSION = YES; 1106 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1107 | DEBUG_INFORMATION_FORMAT = dwarf; 1108 | ENABLE_TESTABILITY = YES; 1109 | GCC_NO_COMMON_BLOCKS = YES; 1110 | INFOPLIST_FILE = "test-tvOS/Info.plist"; 1111 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1112 | OTHER_LDFLAGS = ( 1113 | "-ObjC", 1114 | "-lc++", 1115 | ); 1116 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.test-tvOS"; 1117 | PRODUCT_NAME = "$(TARGET_NAME)"; 1118 | SDKROOT = appletvos; 1119 | TARGETED_DEVICE_FAMILY = 3; 1120 | TVOS_DEPLOYMENT_TARGET = 9.2; 1121 | LIBRARY_SEARCH_PATHS = ( 1122 | "$(inherited)", 1123 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1124 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1125 | ); 1126 | }; 1127 | name = Debug; 1128 | }; 1129 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1130 | isa = XCBuildConfiguration; 1131 | buildSettings = { 1132 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1133 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1134 | CLANG_ANALYZER_NONNULL = YES; 1135 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1136 | CLANG_WARN_INFINITE_RECURSION = YES; 1137 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1138 | COPY_PHASE_STRIP = NO; 1139 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1140 | GCC_NO_COMMON_BLOCKS = YES; 1141 | INFOPLIST_FILE = "test-tvOS/Info.plist"; 1142 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1143 | OTHER_LDFLAGS = ( 1144 | "-ObjC", 1145 | "-lc++", 1146 | ); 1147 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.test-tvOS"; 1148 | PRODUCT_NAME = "$(TARGET_NAME)"; 1149 | SDKROOT = appletvos; 1150 | TARGETED_DEVICE_FAMILY = 3; 1151 | TVOS_DEPLOYMENT_TARGET = 9.2; 1152 | LIBRARY_SEARCH_PATHS = ( 1153 | "$(inherited)", 1154 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1155 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1156 | ); 1157 | }; 1158 | name = Release; 1159 | }; 1160 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1161 | isa = XCBuildConfiguration; 1162 | buildSettings = { 1163 | BUNDLE_LOADER = "$(TEST_HOST)"; 1164 | CLANG_ANALYZER_NONNULL = YES; 1165 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1166 | CLANG_WARN_INFINITE_RECURSION = YES; 1167 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1168 | DEBUG_INFORMATION_FORMAT = dwarf; 1169 | ENABLE_TESTABILITY = YES; 1170 | GCC_NO_COMMON_BLOCKS = YES; 1171 | INFOPLIST_FILE = "test-tvOSTests/Info.plist"; 1172 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1173 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.test-tvOSTests"; 1174 | PRODUCT_NAME = "$(TARGET_NAME)"; 1175 | SDKROOT = appletvos; 1176 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/test-tvOS.app/test-tvOS"; 1177 | TVOS_DEPLOYMENT_TARGET = 10.1; 1178 | LIBRARY_SEARCH_PATHS = ( 1179 | "$(inherited)", 1180 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1181 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1182 | ); 1183 | }; 1184 | name = Debug; 1185 | }; 1186 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1187 | isa = XCBuildConfiguration; 1188 | buildSettings = { 1189 | BUNDLE_LOADER = "$(TEST_HOST)"; 1190 | CLANG_ANALYZER_NONNULL = YES; 1191 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1192 | CLANG_WARN_INFINITE_RECURSION = YES; 1193 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1194 | COPY_PHASE_STRIP = NO; 1195 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1196 | GCC_NO_COMMON_BLOCKS = YES; 1197 | INFOPLIST_FILE = "test-tvOSTests/Info.plist"; 1198 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1199 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.test-tvOSTests"; 1200 | PRODUCT_NAME = "$(TARGET_NAME)"; 1201 | SDKROOT = appletvos; 1202 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/test-tvOS.app/test-tvOS"; 1203 | TVOS_DEPLOYMENT_TARGET = 10.1; 1204 | LIBRARY_SEARCH_PATHS = ( 1205 | "$(inherited)", 1206 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1207 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1208 | ); 1209 | }; 1210 | name = Release; 1211 | }; 1212 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1213 | isa = XCBuildConfiguration; 1214 | buildSettings = { 1215 | ALWAYS_SEARCH_USER_PATHS = NO; 1216 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1217 | CLANG_CXX_LIBRARY = "libc++"; 1218 | CLANG_ENABLE_MODULES = YES; 1219 | CLANG_ENABLE_OBJC_ARC = YES; 1220 | CLANG_WARN_BOOL_CONVERSION = YES; 1221 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1222 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1223 | CLANG_WARN_EMPTY_BODY = YES; 1224 | CLANG_WARN_ENUM_CONVERSION = YES; 1225 | CLANG_WARN_INT_CONVERSION = YES; 1226 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1227 | CLANG_WARN_UNREACHABLE_CODE = YES; 1228 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1229 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1230 | COPY_PHASE_STRIP = NO; 1231 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1232 | GCC_C_LANGUAGE_STANDARD = gnu99; 1233 | GCC_DYNAMIC_NO_PIC = NO; 1234 | GCC_OPTIMIZATION_LEVEL = 0; 1235 | GCC_PREPROCESSOR_DEFINITIONS = ( 1236 | "DEBUG=1", 1237 | "$(inherited)", 1238 | ); 1239 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1240 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1241 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1242 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1243 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1244 | GCC_WARN_UNUSED_FUNCTION = YES; 1245 | GCC_WARN_UNUSED_VARIABLE = YES; 1246 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1247 | MTL_ENABLE_DEBUG_INFO = YES; 1248 | ONLY_ACTIVE_ARCH = YES; 1249 | SDKROOT = iphoneos; 1250 | }; 1251 | name = Debug; 1252 | }; 1253 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1254 | isa = XCBuildConfiguration; 1255 | buildSettings = { 1256 | ALWAYS_SEARCH_USER_PATHS = NO; 1257 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1258 | CLANG_CXX_LIBRARY = "libc++"; 1259 | CLANG_ENABLE_MODULES = YES; 1260 | CLANG_ENABLE_OBJC_ARC = YES; 1261 | CLANG_WARN_BOOL_CONVERSION = YES; 1262 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1263 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1264 | CLANG_WARN_EMPTY_BODY = YES; 1265 | CLANG_WARN_ENUM_CONVERSION = YES; 1266 | CLANG_WARN_INT_CONVERSION = YES; 1267 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1268 | CLANG_WARN_UNREACHABLE_CODE = YES; 1269 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1270 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1271 | COPY_PHASE_STRIP = YES; 1272 | ENABLE_NS_ASSERTIONS = NO; 1273 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1274 | GCC_C_LANGUAGE_STANDARD = gnu99; 1275 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1276 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1277 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1278 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1279 | GCC_WARN_UNUSED_FUNCTION = YES; 1280 | GCC_WARN_UNUSED_VARIABLE = YES; 1281 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1282 | MTL_ENABLE_DEBUG_INFO = NO; 1283 | SDKROOT = iphoneos; 1284 | VALIDATE_PRODUCT = YES; 1285 | }; 1286 | name = Release; 1287 | }; 1288 | /* End XCBuildConfiguration section */ 1289 | 1290 | /* Begin XCConfigurationList section */ 1291 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "testTests" */ = { 1292 | isa = XCConfigurationList; 1293 | buildConfigurations = ( 1294 | 00E356F61AD99517003FC87E /* Debug */, 1295 | 00E356F71AD99517003FC87E /* Release */, 1296 | ); 1297 | defaultConfigurationIsVisible = 0; 1298 | defaultConfigurationName = Release; 1299 | }; 1300 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "test" */ = { 1301 | isa = XCConfigurationList; 1302 | buildConfigurations = ( 1303 | 13B07F941A680F5B00A75B9A /* Debug */, 1304 | 13B07F951A680F5B00A75B9A /* Release */, 1305 | ); 1306 | defaultConfigurationIsVisible = 0; 1307 | defaultConfigurationName = Release; 1308 | }; 1309 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "test-tvOS" */ = { 1310 | isa = XCConfigurationList; 1311 | buildConfigurations = ( 1312 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1313 | 2D02E4981E0B4A5E006451C7 /* Release */, 1314 | ); 1315 | defaultConfigurationIsVisible = 0; 1316 | defaultConfigurationName = Release; 1317 | }; 1318 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "test-tvOSTests" */ = { 1319 | isa = XCConfigurationList; 1320 | buildConfigurations = ( 1321 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1322 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1323 | ); 1324 | defaultConfigurationIsVisible = 0; 1325 | defaultConfigurationName = Release; 1326 | }; 1327 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "test" */ = { 1328 | isa = XCConfigurationList; 1329 | buildConfigurations = ( 1330 | 83CBBA201A601CBA00E9B192 /* Debug */, 1331 | 83CBBA211A601CBA00E9B192 /* Release */, 1332 | ); 1333 | defaultConfigurationIsVisible = 0; 1334 | defaultConfigurationName = Release; 1335 | }; 1336 | /* End XCConfigurationList section */ 1337 | }; 1338 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1339 | } 1340 | --------------------------------------------------------------------------------