├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── android └── README.md ├── example └── RNOpenFileExample │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── rnopenfileexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle │ ├── app.json │ ├── index.js │ ├── ios │ ├── RNOpenFileExample-tvOS │ │ └── Info.plist │ ├── RNOpenFileExample-tvOSTests │ │ └── Info.plist │ ├── RNOpenFileExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── RNOpenFileExample-tvOS.xcscheme │ │ │ └── RNOpenFileExample.xcscheme │ ├── RNOpenFileExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── RNOpenFileExampleTests │ │ ├── Info.plist │ │ └── RNOpenFileExampleTests.m │ ├── package-lock.json │ ├── package.json │ ├── sample.pdf │ └── yarn.lock ├── index.js ├── ios └── RNDocumentInteractionController │ ├── RNDocumentInteractionController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── RNDocumentInteractionController.xcscmblueprint │ └── xcuserdata │ │ └── aarong.xcuserdatad │ │ └── xcschemes │ │ ├── RNDocumentInteractionController.xcscheme │ │ └── xcschememanagement.plist │ └── RNDocumentInteractionController │ ├── RNDocumentInteractionController.h │ └── RNDocumentInteractionController.m └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | 39 | #ios 40 | DerivedData 41 | xcuserdata 42 | 43 | .idea/ 44 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | node_modules 3 | build/ 4 | DerivedData 5 | .idea 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Wix.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-open-file 2 | 3 | ## Why 4 | 5 | We want an easy to way to open documents on disk (and possibly remote files as well) using default native behavior on both 6 | android and ios without dealing with the details of the two platforms. 7 | 8 | ## How 9 | 10 | On iOS, use `DocumentInteractionController` to present a preview. On android...TBD 11 | 12 | ## Status 13 | 14 | Very early stage WIP. Only iOS is supported, and only in the most basic way. 15 | 16 | ## Usage 17 | 18 | ``` 19 | npm install react-native-open-file --save 20 | ``` 21 | 22 | And the usual iOS linking business for `DocumentInteractionController.xcodeproj`. 23 | 24 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- 1 | TODO 2 | 3 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["module:metro-react-native-babel-preset"] 3 | } 4 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | esproposal.optional_chaining=enable 33 | esproposal.nullish_coalescing=enable 34 | 35 | module.system=haste 36 | module.system.haste.use_name_reducers=true 37 | # get basename 38 | module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1' 39 | # strip .js or .js.flow suffix 40 | module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1' 41 | # strip .ios suffix 42 | module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1' 43 | module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1' 44 | module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1' 45 | module.system.haste.paths.blacklist=.*/__tests__/.* 46 | module.system.haste.paths.blacklist=.*/__mocks__/.* 47 | module.system.haste.paths.blacklist=/node_modules/react-native/Libraries/Animated/src/polyfills/.* 48 | module.system.haste.paths.whitelist=/node_modules/react-native/Libraries/.* 49 | 50 | munge_underscores=true 51 | 52 | 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' 53 | 54 | module.file_ext=.js 55 | module.file_ext=.jsx 56 | module.file_ext=.json 57 | module.file_ext=.native.js 58 | 59 | suppress_type=$FlowIssue 60 | suppress_type=$FlowFixMe 61 | suppress_type=$FlowFixMeProps 62 | suppress_type=$FlowFixMeState 63 | 64 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 65 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 66 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 67 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 68 | 69 | [version] 70 | ^0.78.0 71 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/RNOpenFileExample/App.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | * @flow 7 | */ 8 | 9 | import React, {Component} from 'react'; 10 | import {Platform, StyleSheet, Text, View, NativeModules, TouchableOpacity} from 'react-native'; 11 | 12 | const DocumentInteractionController = NativeModules.RNDocumentInteractionController; 13 | 14 | const openFile = () => DocumentInteractionController.open('sample.pdf'); 15 | 16 | export default class App extends Component { 17 | render() { 18 | return ( 19 | 20 | Open File 21 | 22 | ); 23 | } 24 | } 25 | 26 | const styles = StyleSheet.create({ 27 | container: { 28 | flex: 1, 29 | justifyContent: 'center', 30 | alignItems: 'center', 31 | backgroundColor: '#F5FCFF', 32 | } 33 | }); 34 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.rnopenfileexample", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.rnopenfileexample", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion rootProject.ext.compileSdkVersion 98 | buildToolsVersion rootProject.ext.buildToolsVersion 99 | 100 | defaultConfig { 101 | applicationId "com.rnopenfileexample" 102 | minSdkVersion rootProject.ext.minSdkVersion 103 | targetSdkVersion rootProject.ext.targetSdkVersion 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | implementation fileTree(dir: "libs", include: ["*.jar"]) 141 | implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" 142 | implementation "com.facebook.react:react-native:+" // From node_modules 143 | } 144 | 145 | // Run this once to be able to run the application with BUCK 146 | // puts all compile dependencies into folder libs for BUCK to use 147 | task copyDownloadableDepsToLibs(type: Copy) { 148 | from configurations.compile 149 | into 'libs' 150 | } 151 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/java/com/rnopenfileexample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.rnopenfileexample; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "RNOpenFileExample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/java/com/rnopenfileexample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.rnopenfileexample; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage() 26 | ); 27 | } 28 | 29 | @Override 30 | protected String getJSMainModuleName() { 31 | return "index"; 32 | } 33 | }; 34 | 35 | @Override 36 | public ReactNativeHost getReactNativeHost() { 37 | return mReactNativeHost; 38 | } 39 | 40 | @Override 41 | public void onCreate() { 42 | super.onCreate(); 43 | SoLoader.init(this, /* native exopackage */ false); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RNOpenFileExample 3 | 4 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "27.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 27 8 | targetSdkVersion = 26 9 | supportLibVersion = "27.1.1" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath 'com.android.tools.build:gradle:3.1.4' 17 | 18 | // NOTE: Do not place your application dependencies here; they belong 19 | // in the individual module build.gradle files 20 | } 21 | } 22 | 23 | allprojects { 24 | repositories { 25 | google() 26 | mavenLocal() 27 | jcenter() 28 | maven { 29 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 30 | url "$rootDir/../node_modules/react-native/android" 31 | } 32 | } 33 | } 34 | 35 | 36 | task wrapper(type: Wrapper) { 37 | gradleVersion = '4.4' 38 | distributionUrl = distributionUrl.replace("bin", "all") 39 | } 40 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 6 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNOpenFileExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNOpenFileExample", 3 | "displayName": "RNOpenFileExample" 4 | } -------------------------------------------------------------------------------- /example/RNOpenFileExample/index.js: -------------------------------------------------------------------------------- 1 | /** @format */ 2 | 3 | import {AppRegistry} from 'react-native'; 4 | import App from './App'; 5 | import {name as appName} from './app.json'; 6 | 7 | AppRegistry.registerComponent(appName, () => App); 8 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00E356F31AD99517003FC87E /* RNOpenFileExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNOpenFileExampleTests.m */; }; 15 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 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.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.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 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* RNOpenFileExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNOpenFileExampleTests.m */; }; 36 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 38 | 9F5C6094218615A4005C4B6E /* libRNDocumentInteractionController.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F5C60932186157E005C4B6E /* libRNDocumentInteractionController.a */; }; 39 | 9F5C60952186168C005C4B6E /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 40 | 9F5C609621861693005C4B6E /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 41 | 9F5C609A21861BCF005C4B6E /* sample.pdf in Resources */ = {isa = PBXBuildFile; fileRef = 9F5C609921861BCF005C4B6E /* sample.pdf */; }; 42 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 43 | /* End PBXBuildFile section */ 44 | 45 | /* Begin PBXContainerItemProxy section */ 46 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 47 | isa = PBXContainerItemProxy; 48 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 49 | proxyType = 2; 50 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 51 | remoteInfo = RCTActionSheet; 52 | }; 53 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTGeolocation; 59 | }; 60 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 65 | remoteInfo = RCTImage; 66 | }; 67 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 72 | remoteInfo = RCTNetwork; 73 | }; 74 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 79 | remoteInfo = RCTVibration; 80 | }; 81 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 84 | proxyType = 1; 85 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 86 | remoteInfo = RNOpenFileExample; 87 | }; 88 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 91 | proxyType = 2; 92 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 93 | remoteInfo = RCTSettings; 94 | }; 95 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 100 | remoteInfo = RCTWebSocket; 101 | }; 102 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 107 | remoteInfo = React; 108 | }; 109 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 112 | proxyType = 1; 113 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 114 | remoteInfo = "RNOpenFileExample-tvOS"; 115 | }; 116 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 119 | proxyType = 2; 120 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 121 | remoteInfo = "RCTBlob-tvOS"; 122 | }; 123 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 128 | remoteInfo = fishhook; 129 | }; 130 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 135 | remoteInfo = "fishhook-tvOS"; 136 | }; 137 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 142 | remoteInfo = jsinspector; 143 | }; 144 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 149 | remoteInfo = "jsinspector-tvOS"; 150 | }; 151 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 156 | remoteInfo = "third-party"; 157 | }; 158 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 163 | remoteInfo = "third-party-tvOS"; 164 | }; 165 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 170 | remoteInfo = "double-conversion"; 171 | }; 172 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 177 | remoteInfo = "double-conversion-tvOS"; 178 | }; 179 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 184 | remoteInfo = privatedata; 185 | }; 186 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 191 | remoteInfo = "privatedata-tvOS"; 192 | }; 193 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 198 | remoteInfo = "RCTImage-tvOS"; 199 | }; 200 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 205 | remoteInfo = "RCTLinking-tvOS"; 206 | }; 207 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 212 | remoteInfo = "RCTNetwork-tvOS"; 213 | }; 214 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 219 | remoteInfo = "RCTSettings-tvOS"; 220 | }; 221 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 226 | remoteInfo = "RCTText-tvOS"; 227 | }; 228 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 233 | remoteInfo = "RCTWebSocket-tvOS"; 234 | }; 235 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 240 | remoteInfo = "React-tvOS"; 241 | }; 242 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 247 | remoteInfo = yoga; 248 | }; 249 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 250 | isa = PBXContainerItemProxy; 251 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 252 | proxyType = 2; 253 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 254 | remoteInfo = "yoga-tvOS"; 255 | }; 256 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 257 | isa = PBXContainerItemProxy; 258 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 259 | proxyType = 2; 260 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 261 | remoteInfo = cxxreact; 262 | }; 263 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 264 | isa = PBXContainerItemProxy; 265 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 266 | proxyType = 2; 267 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 268 | remoteInfo = "cxxreact-tvOS"; 269 | }; 270 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 271 | isa = PBXContainerItemProxy; 272 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 273 | proxyType = 2; 274 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 275 | remoteInfo = jschelpers; 276 | }; 277 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 278 | isa = PBXContainerItemProxy; 279 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 280 | proxyType = 2; 281 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 282 | remoteInfo = "jschelpers-tvOS"; 283 | }; 284 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 285 | isa = PBXContainerItemProxy; 286 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 287 | proxyType = 2; 288 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 289 | remoteInfo = RCTAnimation; 290 | }; 291 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 292 | isa = PBXContainerItemProxy; 293 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 294 | proxyType = 2; 295 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 296 | remoteInfo = "RCTAnimation-tvOS"; 297 | }; 298 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 299 | isa = PBXContainerItemProxy; 300 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 301 | proxyType = 2; 302 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 303 | remoteInfo = RCTLinking; 304 | }; 305 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 306 | isa = PBXContainerItemProxy; 307 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 308 | proxyType = 2; 309 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 310 | remoteInfo = RCTText; 311 | }; 312 | 9F5C60922186157E005C4B6E /* PBXContainerItemProxy */ = { 313 | isa = PBXContainerItemProxy; 314 | containerPortal = 9F5C608D2186157E005C4B6E /* RNDocumentInteractionController.xcodeproj */; 315 | proxyType = 2; 316 | remoteGlobalIDString = 9FE265381D2BC7F300445286; 317 | remoteInfo = RNDocumentInteractionController; 318 | }; 319 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 320 | isa = PBXContainerItemProxy; 321 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 322 | proxyType = 2; 323 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 324 | remoteInfo = RCTBlob; 325 | }; 326 | /* End PBXContainerItemProxy section */ 327 | 328 | /* Begin PBXFileReference section */ 329 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 330 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 331 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 332 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 333 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 334 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 335 | 00E356EE1AD99517003FC87E /* RNOpenFileExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNOpenFileExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 336 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 337 | 00E356F21AD99517003FC87E /* RNOpenFileExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNOpenFileExampleTests.m; sourceTree = ""; }; 338 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 339 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 340 | 13B07F961A680F5B00A75B9A /* RNOpenFileExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNOpenFileExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 341 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNOpenFileExample/AppDelegate.h; sourceTree = ""; }; 342 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RNOpenFileExample/AppDelegate.m; sourceTree = ""; }; 343 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 344 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNOpenFileExample/Images.xcassets; sourceTree = ""; }; 345 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNOpenFileExample/Info.plist; sourceTree = ""; }; 346 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNOpenFileExample/main.m; sourceTree = ""; }; 347 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 348 | 2D02E47B1E0B4A5D006451C7 /* RNOpenFileExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RNOpenFileExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 349 | 2D02E4901E0B4A5D006451C7 /* RNOpenFileExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RNOpenFileExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 350 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 351 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 352 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 353 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 354 | 9F5C606221860C32005C4B6E /* RNOpenFileExample.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; path = RNOpenFileExample.xcodeproj; sourceTree = ""; }; 355 | 9F5C607221860F0E005C4B6E /* libRNDocumentInteractionController.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libRNDocumentInteractionController.a; path = "../../../ios/RNDocumentInteractionController/DerivedData/RNDocumentInteractionController/Build/Products/Debug-iphonesimulator/libRNDocumentInteractionController.a"; sourceTree = ""; }; 356 | 9F5C608D2186157E005C4B6E /* RNDocumentInteractionController.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNDocumentInteractionController.xcodeproj; path = "../node_modules/react-native-open-file/ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj"; sourceTree = ""; }; 357 | 9F5C609921861BCF005C4B6E /* sample.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; name = sample.pdf; path = ../../../../../Downloads/sample.pdf; sourceTree = ""; }; 358 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 359 | /* End PBXFileReference section */ 360 | 361 | /* Begin PBXFrameworksBuildPhase section */ 362 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 363 | isa = PBXFrameworksBuildPhase; 364 | buildActionMask = 2147483647; 365 | files = ( 366 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 371 | isa = PBXFrameworksBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | 9F5C609621861693005C4B6E /* libRCTWebSocket.a in Frameworks */, 375 | 9F5C60952186168C005C4B6E /* libRCTVibration.a in Frameworks */, 376 | 9F5C6094218615A4005C4B6E /* libRNDocumentInteractionController.a in Frameworks */, 377 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 378 | 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */, 379 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 380 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 381 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 382 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 383 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 384 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 385 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 386 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 387 | ); 388 | runOnlyForDeploymentPostprocessing = 0; 389 | }; 390 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 391 | isa = PBXFrameworksBuildPhase; 392 | buildActionMask = 2147483647; 393 | files = ( 394 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 395 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 396 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 397 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 398 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 399 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 400 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 401 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 402 | ); 403 | runOnlyForDeploymentPostprocessing = 0; 404 | }; 405 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 406 | isa = PBXFrameworksBuildPhase; 407 | buildActionMask = 2147483647; 408 | files = ( 409 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 410 | ); 411 | runOnlyForDeploymentPostprocessing = 0; 412 | }; 413 | /* End PBXFrameworksBuildPhase section */ 414 | 415 | /* Begin PBXGroup section */ 416 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 417 | isa = PBXGroup; 418 | children = ( 419 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 420 | ); 421 | name = Products; 422 | sourceTree = ""; 423 | }; 424 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 425 | isa = PBXGroup; 426 | children = ( 427 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 428 | ); 429 | name = Products; 430 | sourceTree = ""; 431 | }; 432 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 433 | isa = PBXGroup; 434 | children = ( 435 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 436 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 437 | ); 438 | name = Products; 439 | sourceTree = ""; 440 | }; 441 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 445 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 454 | ); 455 | name = Products; 456 | sourceTree = ""; 457 | }; 458 | 00E356EF1AD99517003FC87E /* RNOpenFileExampleTests */ = { 459 | isa = PBXGroup; 460 | children = ( 461 | 00E356F21AD99517003FC87E /* RNOpenFileExampleTests.m */, 462 | 00E356F01AD99517003FC87E /* Supporting Files */, 463 | ); 464 | path = RNOpenFileExampleTests; 465 | sourceTree = ""; 466 | }; 467 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 468 | isa = PBXGroup; 469 | children = ( 470 | 00E356F11AD99517003FC87E /* Info.plist */, 471 | ); 472 | name = "Supporting Files"; 473 | sourceTree = ""; 474 | }; 475 | 139105B71AF99BAD00B5F7CC /* Products */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 479 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 480 | ); 481 | name = Products; 482 | sourceTree = ""; 483 | }; 484 | 139FDEE71B06529A00C62182 /* Products */ = { 485 | isa = PBXGroup; 486 | children = ( 487 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 488 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 489 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 490 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 491 | ); 492 | name = Products; 493 | sourceTree = ""; 494 | }; 495 | 13B07FAE1A68108700A75B9A /* RNOpenFileExample */ = { 496 | isa = PBXGroup; 497 | children = ( 498 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 499 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 500 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 501 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 502 | 13B07FB61A68108700A75B9A /* Info.plist */, 503 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 504 | 13B07FB71A68108700A75B9A /* main.m */, 505 | ); 506 | name = RNOpenFileExample; 507 | sourceTree = ""; 508 | }; 509 | 146834001AC3E56700842450 /* Products */ = { 510 | isa = PBXGroup; 511 | children = ( 512 | 146834041AC3E56700842450 /* libReact.a */, 513 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 514 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 515 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 516 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 517 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 518 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 519 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 520 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 521 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 522 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 523 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 524 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 525 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 526 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 527 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 528 | ); 529 | name = Products; 530 | sourceTree = ""; 531 | }; 532 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 533 | isa = PBXGroup; 534 | children = ( 535 | 9F5C607221860F0E005C4B6E /* libRNDocumentInteractionController.a */, 536 | 9F5C606221860C32005C4B6E /* RNOpenFileExample.xcodeproj */, 537 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 538 | ); 539 | name = Frameworks; 540 | sourceTree = ""; 541 | }; 542 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 543 | isa = PBXGroup; 544 | children = ( 545 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 546 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 547 | ); 548 | name = Products; 549 | sourceTree = ""; 550 | }; 551 | 78C398B11ACF4ADC00677621 /* Products */ = { 552 | isa = PBXGroup; 553 | children = ( 554 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 555 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 556 | ); 557 | name = Products; 558 | sourceTree = ""; 559 | }; 560 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 561 | isa = PBXGroup; 562 | children = ( 563 | 9F5C608D2186157E005C4B6E /* RNDocumentInteractionController.xcodeproj */, 564 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 565 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 566 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 567 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 568 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 569 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 570 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 571 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 572 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 573 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 574 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 575 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 576 | ); 577 | name = Libraries; 578 | sourceTree = ""; 579 | }; 580 | 832341B11AAA6A8300B99B32 /* Products */ = { 581 | isa = PBXGroup; 582 | children = ( 583 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 584 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 585 | ); 586 | name = Products; 587 | sourceTree = ""; 588 | }; 589 | 83CBB9F61A601CBA00E9B192 = { 590 | isa = PBXGroup; 591 | children = ( 592 | 9F5C609921861BCF005C4B6E /* sample.pdf */, 593 | 13B07FAE1A68108700A75B9A /* RNOpenFileExample */, 594 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 595 | 00E356EF1AD99517003FC87E /* RNOpenFileExampleTests */, 596 | 83CBBA001A601CBA00E9B192 /* Products */, 597 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 598 | ); 599 | indentWidth = 2; 600 | sourceTree = ""; 601 | tabWidth = 2; 602 | usesTabs = 0; 603 | }; 604 | 83CBBA001A601CBA00E9B192 /* Products */ = { 605 | isa = PBXGroup; 606 | children = ( 607 | 13B07F961A680F5B00A75B9A /* RNOpenFileExample.app */, 608 | 00E356EE1AD99517003FC87E /* RNOpenFileExampleTests.xctest */, 609 | 2D02E47B1E0B4A5D006451C7 /* RNOpenFileExample-tvOS.app */, 610 | 2D02E4901E0B4A5D006451C7 /* RNOpenFileExample-tvOSTests.xctest */, 611 | ); 612 | name = Products; 613 | sourceTree = ""; 614 | }; 615 | 9F5C606321860C32005C4B6E /* Products */ = { 616 | isa = PBXGroup; 617 | name = Products; 618 | sourceTree = ""; 619 | }; 620 | 9F5C608E2186157E005C4B6E /* Products */ = { 621 | isa = PBXGroup; 622 | children = ( 623 | 9F5C60932186157E005C4B6E /* libRNDocumentInteractionController.a */, 624 | ); 625 | name = Products; 626 | sourceTree = ""; 627 | }; 628 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 629 | isa = PBXGroup; 630 | children = ( 631 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 632 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 633 | ); 634 | name = Products; 635 | sourceTree = ""; 636 | }; 637 | /* End PBXGroup section */ 638 | 639 | /* Begin PBXNativeTarget section */ 640 | 00E356ED1AD99517003FC87E /* RNOpenFileExampleTests */ = { 641 | isa = PBXNativeTarget; 642 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNOpenFileExampleTests" */; 643 | buildPhases = ( 644 | 00E356EA1AD99517003FC87E /* Sources */, 645 | 00E356EB1AD99517003FC87E /* Frameworks */, 646 | 00E356EC1AD99517003FC87E /* Resources */, 647 | ); 648 | buildRules = ( 649 | ); 650 | dependencies = ( 651 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 652 | ); 653 | name = RNOpenFileExampleTests; 654 | productName = RNOpenFileExampleTests; 655 | productReference = 00E356EE1AD99517003FC87E /* RNOpenFileExampleTests.xctest */; 656 | productType = "com.apple.product-type.bundle.unit-test"; 657 | }; 658 | 13B07F861A680F5B00A75B9A /* RNOpenFileExample */ = { 659 | isa = PBXNativeTarget; 660 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNOpenFileExample" */; 661 | buildPhases = ( 662 | 13B07F871A680F5B00A75B9A /* Sources */, 663 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 664 | 13B07F8E1A680F5B00A75B9A /* Resources */, 665 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 666 | ); 667 | buildRules = ( 668 | ); 669 | dependencies = ( 670 | ); 671 | name = RNOpenFileExample; 672 | productName = "Hello World"; 673 | productReference = 13B07F961A680F5B00A75B9A /* RNOpenFileExample.app */; 674 | productType = "com.apple.product-type.application"; 675 | }; 676 | 2D02E47A1E0B4A5D006451C7 /* RNOpenFileExample-tvOS */ = { 677 | isa = PBXNativeTarget; 678 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNOpenFileExample-tvOS" */; 679 | buildPhases = ( 680 | 2D02E4771E0B4A5D006451C7 /* Sources */, 681 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 682 | 2D02E4791E0B4A5D006451C7 /* Resources */, 683 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 684 | ); 685 | buildRules = ( 686 | ); 687 | dependencies = ( 688 | ); 689 | name = "RNOpenFileExample-tvOS"; 690 | productName = "RNOpenFileExample-tvOS"; 691 | productReference = 2D02E47B1E0B4A5D006451C7 /* RNOpenFileExample-tvOS.app */; 692 | productType = "com.apple.product-type.application"; 693 | }; 694 | 2D02E48F1E0B4A5D006451C7 /* RNOpenFileExample-tvOSTests */ = { 695 | isa = PBXNativeTarget; 696 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNOpenFileExample-tvOSTests" */; 697 | buildPhases = ( 698 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 699 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 700 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 701 | ); 702 | buildRules = ( 703 | ); 704 | dependencies = ( 705 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 706 | ); 707 | name = "RNOpenFileExample-tvOSTests"; 708 | productName = "RNOpenFileExample-tvOSTests"; 709 | productReference = 2D02E4901E0B4A5D006451C7 /* RNOpenFileExample-tvOSTests.xctest */; 710 | productType = "com.apple.product-type.bundle.unit-test"; 711 | }; 712 | /* End PBXNativeTarget section */ 713 | 714 | /* Begin PBXProject section */ 715 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 716 | isa = PBXProject; 717 | attributes = { 718 | LastUpgradeCheck = 0940; 719 | ORGANIZATIONNAME = Facebook; 720 | TargetAttributes = { 721 | 00E356ED1AD99517003FC87E = { 722 | CreatedOnToolsVersion = 6.2; 723 | TestTargetID = 13B07F861A680F5B00A75B9A; 724 | }; 725 | 2D02E47A1E0B4A5D006451C7 = { 726 | CreatedOnToolsVersion = 8.2.1; 727 | ProvisioningStyle = Automatic; 728 | }; 729 | 2D02E48F1E0B4A5D006451C7 = { 730 | CreatedOnToolsVersion = 8.2.1; 731 | ProvisioningStyle = Automatic; 732 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 733 | }; 734 | }; 735 | }; 736 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNOpenFileExample" */; 737 | compatibilityVersion = "Xcode 3.2"; 738 | developmentRegion = English; 739 | hasScannedForEncodings = 0; 740 | knownRegions = ( 741 | en, 742 | Base, 743 | ); 744 | mainGroup = 83CBB9F61A601CBA00E9B192; 745 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 746 | projectDirPath = ""; 747 | projectReferences = ( 748 | { 749 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 750 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 751 | }, 752 | { 753 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 754 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 755 | }, 756 | { 757 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 758 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 759 | }, 760 | { 761 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 762 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 763 | }, 764 | { 765 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 766 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 767 | }, 768 | { 769 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 770 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 771 | }, 772 | { 773 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 774 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 775 | }, 776 | { 777 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 778 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 779 | }, 780 | { 781 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 782 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 783 | }, 784 | { 785 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 786 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 787 | }, 788 | { 789 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 790 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 791 | }, 792 | { 793 | ProductGroup = 146834001AC3E56700842450 /* Products */; 794 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 795 | }, 796 | { 797 | ProductGroup = 9F5C608E2186157E005C4B6E /* Products */; 798 | ProjectRef = 9F5C608D2186157E005C4B6E /* RNDocumentInteractionController.xcodeproj */; 799 | }, 800 | { 801 | ProductGroup = 9F5C606321860C32005C4B6E /* Products */; 802 | ProjectRef = 9F5C606221860C32005C4B6E /* RNOpenFileExample.xcodeproj */; 803 | }, 804 | ); 805 | projectRoot = ""; 806 | targets = ( 807 | 13B07F861A680F5B00A75B9A /* RNOpenFileExample */, 808 | 00E356ED1AD99517003FC87E /* RNOpenFileExampleTests */, 809 | 2D02E47A1E0B4A5D006451C7 /* RNOpenFileExample-tvOS */, 810 | 2D02E48F1E0B4A5D006451C7 /* RNOpenFileExample-tvOSTests */, 811 | ); 812 | }; 813 | /* End PBXProject section */ 814 | 815 | /* Begin PBXReferenceProxy section */ 816 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 817 | isa = PBXReferenceProxy; 818 | fileType = archive.ar; 819 | path = libRCTActionSheet.a; 820 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 821 | sourceTree = BUILT_PRODUCTS_DIR; 822 | }; 823 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 824 | isa = PBXReferenceProxy; 825 | fileType = archive.ar; 826 | path = libRCTGeolocation.a; 827 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 828 | sourceTree = BUILT_PRODUCTS_DIR; 829 | }; 830 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 831 | isa = PBXReferenceProxy; 832 | fileType = archive.ar; 833 | path = libRCTImage.a; 834 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 835 | sourceTree = BUILT_PRODUCTS_DIR; 836 | }; 837 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 838 | isa = PBXReferenceProxy; 839 | fileType = archive.ar; 840 | path = libRCTNetwork.a; 841 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 842 | sourceTree = BUILT_PRODUCTS_DIR; 843 | }; 844 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 845 | isa = PBXReferenceProxy; 846 | fileType = archive.ar; 847 | path = libRCTVibration.a; 848 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 849 | sourceTree = BUILT_PRODUCTS_DIR; 850 | }; 851 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 852 | isa = PBXReferenceProxy; 853 | fileType = archive.ar; 854 | path = libRCTSettings.a; 855 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 856 | sourceTree = BUILT_PRODUCTS_DIR; 857 | }; 858 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 859 | isa = PBXReferenceProxy; 860 | fileType = archive.ar; 861 | path = libRCTWebSocket.a; 862 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 863 | sourceTree = BUILT_PRODUCTS_DIR; 864 | }; 865 | 146834041AC3E56700842450 /* libReact.a */ = { 866 | isa = PBXReferenceProxy; 867 | fileType = archive.ar; 868 | path = libReact.a; 869 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 870 | sourceTree = BUILT_PRODUCTS_DIR; 871 | }; 872 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 873 | isa = PBXReferenceProxy; 874 | fileType = archive.ar; 875 | path = "libRCTBlob-tvOS.a"; 876 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 877 | sourceTree = BUILT_PRODUCTS_DIR; 878 | }; 879 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 880 | isa = PBXReferenceProxy; 881 | fileType = archive.ar; 882 | path = libfishhook.a; 883 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 884 | sourceTree = BUILT_PRODUCTS_DIR; 885 | }; 886 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 887 | isa = PBXReferenceProxy; 888 | fileType = archive.ar; 889 | path = "libfishhook-tvOS.a"; 890 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 891 | sourceTree = BUILT_PRODUCTS_DIR; 892 | }; 893 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 894 | isa = PBXReferenceProxy; 895 | fileType = archive.ar; 896 | path = libjsinspector.a; 897 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 898 | sourceTree = BUILT_PRODUCTS_DIR; 899 | }; 900 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 901 | isa = PBXReferenceProxy; 902 | fileType = archive.ar; 903 | path = "libjsinspector-tvOS.a"; 904 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 905 | sourceTree = BUILT_PRODUCTS_DIR; 906 | }; 907 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 908 | isa = PBXReferenceProxy; 909 | fileType = archive.ar; 910 | path = "libthird-party.a"; 911 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 912 | sourceTree = BUILT_PRODUCTS_DIR; 913 | }; 914 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 915 | isa = PBXReferenceProxy; 916 | fileType = archive.ar; 917 | path = "libthird-party.a"; 918 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 919 | sourceTree = BUILT_PRODUCTS_DIR; 920 | }; 921 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 922 | isa = PBXReferenceProxy; 923 | fileType = archive.ar; 924 | path = "libdouble-conversion.a"; 925 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 926 | sourceTree = BUILT_PRODUCTS_DIR; 927 | }; 928 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 929 | isa = PBXReferenceProxy; 930 | fileType = archive.ar; 931 | path = "libdouble-conversion.a"; 932 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 933 | sourceTree = BUILT_PRODUCTS_DIR; 934 | }; 935 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 936 | isa = PBXReferenceProxy; 937 | fileType = archive.ar; 938 | path = libprivatedata.a; 939 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 940 | sourceTree = BUILT_PRODUCTS_DIR; 941 | }; 942 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 943 | isa = PBXReferenceProxy; 944 | fileType = archive.ar; 945 | path = "libprivatedata-tvOS.a"; 946 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 947 | sourceTree = BUILT_PRODUCTS_DIR; 948 | }; 949 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 950 | isa = PBXReferenceProxy; 951 | fileType = archive.ar; 952 | path = "libRCTImage-tvOS.a"; 953 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 954 | sourceTree = BUILT_PRODUCTS_DIR; 955 | }; 956 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 957 | isa = PBXReferenceProxy; 958 | fileType = archive.ar; 959 | path = "libRCTLinking-tvOS.a"; 960 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 961 | sourceTree = BUILT_PRODUCTS_DIR; 962 | }; 963 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 964 | isa = PBXReferenceProxy; 965 | fileType = archive.ar; 966 | path = "libRCTNetwork-tvOS.a"; 967 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 968 | sourceTree = BUILT_PRODUCTS_DIR; 969 | }; 970 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 971 | isa = PBXReferenceProxy; 972 | fileType = archive.ar; 973 | path = "libRCTSettings-tvOS.a"; 974 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 975 | sourceTree = BUILT_PRODUCTS_DIR; 976 | }; 977 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 978 | isa = PBXReferenceProxy; 979 | fileType = archive.ar; 980 | path = "libRCTText-tvOS.a"; 981 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 982 | sourceTree = BUILT_PRODUCTS_DIR; 983 | }; 984 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 985 | isa = PBXReferenceProxy; 986 | fileType = archive.ar; 987 | path = "libRCTWebSocket-tvOS.a"; 988 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 989 | sourceTree = BUILT_PRODUCTS_DIR; 990 | }; 991 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 992 | isa = PBXReferenceProxy; 993 | fileType = archive.ar; 994 | path = libReact.a; 995 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 996 | sourceTree = BUILT_PRODUCTS_DIR; 997 | }; 998 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 999 | isa = PBXReferenceProxy; 1000 | fileType = archive.ar; 1001 | path = libyoga.a; 1002 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1003 | sourceTree = BUILT_PRODUCTS_DIR; 1004 | }; 1005 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1006 | isa = PBXReferenceProxy; 1007 | fileType = archive.ar; 1008 | path = libyoga.a; 1009 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1010 | sourceTree = BUILT_PRODUCTS_DIR; 1011 | }; 1012 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1013 | isa = PBXReferenceProxy; 1014 | fileType = archive.ar; 1015 | path = libcxxreact.a; 1016 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1017 | sourceTree = BUILT_PRODUCTS_DIR; 1018 | }; 1019 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1020 | isa = PBXReferenceProxy; 1021 | fileType = archive.ar; 1022 | path = libcxxreact.a; 1023 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1024 | sourceTree = BUILT_PRODUCTS_DIR; 1025 | }; 1026 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1027 | isa = PBXReferenceProxy; 1028 | fileType = archive.ar; 1029 | path = libjschelpers.a; 1030 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1031 | sourceTree = BUILT_PRODUCTS_DIR; 1032 | }; 1033 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1034 | isa = PBXReferenceProxy; 1035 | fileType = archive.ar; 1036 | path = libjschelpers.a; 1037 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1038 | sourceTree = BUILT_PRODUCTS_DIR; 1039 | }; 1040 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1041 | isa = PBXReferenceProxy; 1042 | fileType = archive.ar; 1043 | path = libRCTAnimation.a; 1044 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1045 | sourceTree = BUILT_PRODUCTS_DIR; 1046 | }; 1047 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1048 | isa = PBXReferenceProxy; 1049 | fileType = archive.ar; 1050 | path = libRCTAnimation.a; 1051 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1052 | sourceTree = BUILT_PRODUCTS_DIR; 1053 | }; 1054 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1055 | isa = PBXReferenceProxy; 1056 | fileType = archive.ar; 1057 | path = libRCTLinking.a; 1058 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1059 | sourceTree = BUILT_PRODUCTS_DIR; 1060 | }; 1061 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1062 | isa = PBXReferenceProxy; 1063 | fileType = archive.ar; 1064 | path = libRCTText.a; 1065 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1066 | sourceTree = BUILT_PRODUCTS_DIR; 1067 | }; 1068 | 9F5C60932186157E005C4B6E /* libRNDocumentInteractionController.a */ = { 1069 | isa = PBXReferenceProxy; 1070 | fileType = archive.ar; 1071 | path = libRNDocumentInteractionController.a; 1072 | remoteRef = 9F5C60922186157E005C4B6E /* PBXContainerItemProxy */; 1073 | sourceTree = BUILT_PRODUCTS_DIR; 1074 | }; 1075 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1076 | isa = PBXReferenceProxy; 1077 | fileType = archive.ar; 1078 | path = libRCTBlob.a; 1079 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1080 | sourceTree = BUILT_PRODUCTS_DIR; 1081 | }; 1082 | /* End PBXReferenceProxy section */ 1083 | 1084 | /* Begin PBXResourcesBuildPhase section */ 1085 | 00E356EC1AD99517003FC87E /* Resources */ = { 1086 | isa = PBXResourcesBuildPhase; 1087 | buildActionMask = 2147483647; 1088 | files = ( 1089 | ); 1090 | runOnlyForDeploymentPostprocessing = 0; 1091 | }; 1092 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1093 | isa = PBXResourcesBuildPhase; 1094 | buildActionMask = 2147483647; 1095 | files = ( 1096 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1097 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1098 | 9F5C609A21861BCF005C4B6E /* sample.pdf in Resources */, 1099 | ); 1100 | runOnlyForDeploymentPostprocessing = 0; 1101 | }; 1102 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1103 | isa = PBXResourcesBuildPhase; 1104 | buildActionMask = 2147483647; 1105 | files = ( 1106 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1107 | ); 1108 | runOnlyForDeploymentPostprocessing = 0; 1109 | }; 1110 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1111 | isa = PBXResourcesBuildPhase; 1112 | buildActionMask = 2147483647; 1113 | files = ( 1114 | ); 1115 | runOnlyForDeploymentPostprocessing = 0; 1116 | }; 1117 | /* End PBXResourcesBuildPhase section */ 1118 | 1119 | /* Begin PBXShellScriptBuildPhase section */ 1120 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1121 | isa = PBXShellScriptBuildPhase; 1122 | buildActionMask = 2147483647; 1123 | files = ( 1124 | ); 1125 | inputPaths = ( 1126 | ); 1127 | name = "Bundle React Native code and images"; 1128 | outputPaths = ( 1129 | ); 1130 | runOnlyForDeploymentPostprocessing = 0; 1131 | shellPath = /bin/sh; 1132 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; 1133 | }; 1134 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1135 | isa = PBXShellScriptBuildPhase; 1136 | buildActionMask = 2147483647; 1137 | files = ( 1138 | ); 1139 | inputPaths = ( 1140 | ); 1141 | name = "Bundle React Native Code And Images"; 1142 | outputPaths = ( 1143 | ); 1144 | runOnlyForDeploymentPostprocessing = 0; 1145 | shellPath = /bin/sh; 1146 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1147 | }; 1148 | /* End PBXShellScriptBuildPhase section */ 1149 | 1150 | /* Begin PBXSourcesBuildPhase section */ 1151 | 00E356EA1AD99517003FC87E /* Sources */ = { 1152 | isa = PBXSourcesBuildPhase; 1153 | buildActionMask = 2147483647; 1154 | files = ( 1155 | 00E356F31AD99517003FC87E /* RNOpenFileExampleTests.m in Sources */, 1156 | ); 1157 | runOnlyForDeploymentPostprocessing = 0; 1158 | }; 1159 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1160 | isa = PBXSourcesBuildPhase; 1161 | buildActionMask = 2147483647; 1162 | files = ( 1163 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1164 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1165 | ); 1166 | runOnlyForDeploymentPostprocessing = 0; 1167 | }; 1168 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1169 | isa = PBXSourcesBuildPhase; 1170 | buildActionMask = 2147483647; 1171 | files = ( 1172 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1173 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1174 | ); 1175 | runOnlyForDeploymentPostprocessing = 0; 1176 | }; 1177 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1178 | isa = PBXSourcesBuildPhase; 1179 | buildActionMask = 2147483647; 1180 | files = ( 1181 | 2DCD954D1E0B4F2C00145EB5 /* RNOpenFileExampleTests.m in Sources */, 1182 | ); 1183 | runOnlyForDeploymentPostprocessing = 0; 1184 | }; 1185 | /* End PBXSourcesBuildPhase section */ 1186 | 1187 | /* Begin PBXTargetDependency section */ 1188 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1189 | isa = PBXTargetDependency; 1190 | target = 13B07F861A680F5B00A75B9A /* RNOpenFileExample */; 1191 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1192 | }; 1193 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1194 | isa = PBXTargetDependency; 1195 | target = 2D02E47A1E0B4A5D006451C7 /* RNOpenFileExample-tvOS */; 1196 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1197 | }; 1198 | /* End PBXTargetDependency section */ 1199 | 1200 | /* Begin PBXVariantGroup section */ 1201 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1202 | isa = PBXVariantGroup; 1203 | children = ( 1204 | 13B07FB21A68108700A75B9A /* Base */, 1205 | ); 1206 | name = LaunchScreen.xib; 1207 | path = RNOpenFileExample; 1208 | sourceTree = ""; 1209 | }; 1210 | /* End PBXVariantGroup section */ 1211 | 1212 | /* Begin XCBuildConfiguration section */ 1213 | 00E356F61AD99517003FC87E /* Debug */ = { 1214 | isa = XCBuildConfiguration; 1215 | buildSettings = { 1216 | BUNDLE_LOADER = "$(TEST_HOST)"; 1217 | GCC_PREPROCESSOR_DEFINITIONS = ( 1218 | "DEBUG=1", 1219 | "$(inherited)", 1220 | ); 1221 | INFOPLIST_FILE = RNOpenFileExampleTests/Info.plist; 1222 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1223 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1224 | OTHER_LDFLAGS = ( 1225 | "-ObjC", 1226 | "-lc++", 1227 | ); 1228 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1229 | PRODUCT_NAME = "$(TARGET_NAME)"; 1230 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNOpenFileExample.app/RNOpenFileExample"; 1231 | }; 1232 | name = Debug; 1233 | }; 1234 | 00E356F71AD99517003FC87E /* Release */ = { 1235 | isa = XCBuildConfiguration; 1236 | buildSettings = { 1237 | BUNDLE_LOADER = "$(TEST_HOST)"; 1238 | COPY_PHASE_STRIP = NO; 1239 | INFOPLIST_FILE = RNOpenFileExampleTests/Info.plist; 1240 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1241 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1242 | OTHER_LDFLAGS = ( 1243 | "-ObjC", 1244 | "-lc++", 1245 | ); 1246 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1247 | PRODUCT_NAME = "$(TARGET_NAME)"; 1248 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNOpenFileExample.app/RNOpenFileExample"; 1249 | }; 1250 | name = Release; 1251 | }; 1252 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1253 | isa = XCBuildConfiguration; 1254 | buildSettings = { 1255 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1256 | CURRENT_PROJECT_VERSION = 1; 1257 | DEAD_CODE_STRIPPING = NO; 1258 | HEADER_SEARCH_PATHS = ../../../ios; 1259 | INFOPLIST_FILE = RNOpenFileExample/Info.plist; 1260 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1261 | LIBRARY_SEARCH_PATHS = ../../../ios; 1262 | OTHER_LDFLAGS = ( 1263 | "$(inherited)", 1264 | "-ObjC", 1265 | "-lc++", 1266 | ); 1267 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1268 | PRODUCT_NAME = RNOpenFileExample; 1269 | VERSIONING_SYSTEM = "apple-generic"; 1270 | }; 1271 | name = Debug; 1272 | }; 1273 | 13B07F951A680F5B00A75B9A /* Release */ = { 1274 | isa = XCBuildConfiguration; 1275 | buildSettings = { 1276 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1277 | CURRENT_PROJECT_VERSION = 1; 1278 | HEADER_SEARCH_PATHS = ../../../ios; 1279 | INFOPLIST_FILE = RNOpenFileExample/Info.plist; 1280 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1281 | LIBRARY_SEARCH_PATHS = ../../../ios; 1282 | OTHER_LDFLAGS = ( 1283 | "$(inherited)", 1284 | "-ObjC", 1285 | "-lc++", 1286 | ); 1287 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 1288 | PRODUCT_NAME = RNOpenFileExample; 1289 | VERSIONING_SYSTEM = "apple-generic"; 1290 | }; 1291 | name = Release; 1292 | }; 1293 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1294 | isa = XCBuildConfiguration; 1295 | buildSettings = { 1296 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1297 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1298 | CLANG_ANALYZER_NONNULL = YES; 1299 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1300 | CLANG_WARN_INFINITE_RECURSION = YES; 1301 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1302 | DEBUG_INFORMATION_FORMAT = dwarf; 1303 | ENABLE_TESTABILITY = YES; 1304 | GCC_NO_COMMON_BLOCKS = YES; 1305 | INFOPLIST_FILE = "RNOpenFileExample-tvOS/Info.plist"; 1306 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1307 | OTHER_LDFLAGS = ( 1308 | "-ObjC", 1309 | "-lc++", 1310 | ); 1311 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNOpenFileExample-tvOS"; 1312 | PRODUCT_NAME = "$(TARGET_NAME)"; 1313 | SDKROOT = appletvos; 1314 | TARGETED_DEVICE_FAMILY = 3; 1315 | TVOS_DEPLOYMENT_TARGET = 9.2; 1316 | }; 1317 | name = Debug; 1318 | }; 1319 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1320 | isa = XCBuildConfiguration; 1321 | buildSettings = { 1322 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1323 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1324 | CLANG_ANALYZER_NONNULL = YES; 1325 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1326 | CLANG_WARN_INFINITE_RECURSION = YES; 1327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1328 | COPY_PHASE_STRIP = NO; 1329 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1330 | GCC_NO_COMMON_BLOCKS = YES; 1331 | INFOPLIST_FILE = "RNOpenFileExample-tvOS/Info.plist"; 1332 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1333 | OTHER_LDFLAGS = ( 1334 | "-ObjC", 1335 | "-lc++", 1336 | ); 1337 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNOpenFileExample-tvOS"; 1338 | PRODUCT_NAME = "$(TARGET_NAME)"; 1339 | SDKROOT = appletvos; 1340 | TARGETED_DEVICE_FAMILY = 3; 1341 | TVOS_DEPLOYMENT_TARGET = 9.2; 1342 | }; 1343 | name = Release; 1344 | }; 1345 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1346 | isa = XCBuildConfiguration; 1347 | buildSettings = { 1348 | BUNDLE_LOADER = "$(TEST_HOST)"; 1349 | CLANG_ANALYZER_NONNULL = YES; 1350 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1351 | CLANG_WARN_INFINITE_RECURSION = YES; 1352 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1353 | DEBUG_INFORMATION_FORMAT = dwarf; 1354 | ENABLE_TESTABILITY = YES; 1355 | GCC_NO_COMMON_BLOCKS = YES; 1356 | INFOPLIST_FILE = "RNOpenFileExample-tvOSTests/Info.plist"; 1357 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1358 | OTHER_LDFLAGS = ( 1359 | "-ObjC", 1360 | "-lc++", 1361 | ); 1362 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNOpenFileExample-tvOSTests"; 1363 | PRODUCT_NAME = "$(TARGET_NAME)"; 1364 | SDKROOT = appletvos; 1365 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNOpenFileExample-tvOS.app/RNOpenFileExample-tvOS"; 1366 | TVOS_DEPLOYMENT_TARGET = 10.1; 1367 | }; 1368 | name = Debug; 1369 | }; 1370 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1371 | isa = XCBuildConfiguration; 1372 | buildSettings = { 1373 | BUNDLE_LOADER = "$(TEST_HOST)"; 1374 | CLANG_ANALYZER_NONNULL = YES; 1375 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1376 | CLANG_WARN_INFINITE_RECURSION = YES; 1377 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1378 | COPY_PHASE_STRIP = NO; 1379 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1380 | GCC_NO_COMMON_BLOCKS = YES; 1381 | INFOPLIST_FILE = "RNOpenFileExample-tvOSTests/Info.plist"; 1382 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1383 | OTHER_LDFLAGS = ( 1384 | "-ObjC", 1385 | "-lc++", 1386 | ); 1387 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNOpenFileExample-tvOSTests"; 1388 | PRODUCT_NAME = "$(TARGET_NAME)"; 1389 | SDKROOT = appletvos; 1390 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNOpenFileExample-tvOS.app/RNOpenFileExample-tvOS"; 1391 | TVOS_DEPLOYMENT_TARGET = 10.1; 1392 | }; 1393 | name = Release; 1394 | }; 1395 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1396 | isa = XCBuildConfiguration; 1397 | buildSettings = { 1398 | ALWAYS_SEARCH_USER_PATHS = YES; 1399 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1400 | CLANG_CXX_LIBRARY = "libc++"; 1401 | CLANG_ENABLE_MODULES = YES; 1402 | CLANG_ENABLE_OBJC_ARC = YES; 1403 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1404 | CLANG_WARN_BOOL_CONVERSION = YES; 1405 | CLANG_WARN_COMMA = YES; 1406 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1407 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1408 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1409 | CLANG_WARN_EMPTY_BODY = YES; 1410 | CLANG_WARN_ENUM_CONVERSION = YES; 1411 | CLANG_WARN_INFINITE_RECURSION = YES; 1412 | CLANG_WARN_INT_CONVERSION = YES; 1413 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1414 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1415 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1416 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1417 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1418 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1419 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1420 | CLANG_WARN_UNREACHABLE_CODE = YES; 1421 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1422 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1423 | COPY_PHASE_STRIP = NO; 1424 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1425 | ENABLE_TESTABILITY = YES; 1426 | GCC_C_LANGUAGE_STANDARD = gnu99; 1427 | GCC_DYNAMIC_NO_PIC = NO; 1428 | GCC_NO_COMMON_BLOCKS = YES; 1429 | GCC_OPTIMIZATION_LEVEL = 0; 1430 | GCC_PREPROCESSOR_DEFINITIONS = ( 1431 | "DEBUG=1", 1432 | "$(inherited)", 1433 | ); 1434 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1435 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1436 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1437 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1438 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1439 | GCC_WARN_UNUSED_FUNCTION = YES; 1440 | GCC_WARN_UNUSED_VARIABLE = YES; 1441 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1442 | LIBRARY_SEARCH_PATHS = "$(SRC_ROOT)/../../../**"; 1443 | MTL_ENABLE_DEBUG_INFO = YES; 1444 | ONLY_ACTIVE_ARCH = YES; 1445 | SDKROOT = iphoneos; 1446 | }; 1447 | name = Debug; 1448 | }; 1449 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1450 | isa = XCBuildConfiguration; 1451 | buildSettings = { 1452 | ALWAYS_SEARCH_USER_PATHS = YES; 1453 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1454 | CLANG_CXX_LIBRARY = "libc++"; 1455 | CLANG_ENABLE_MODULES = YES; 1456 | CLANG_ENABLE_OBJC_ARC = YES; 1457 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1458 | CLANG_WARN_BOOL_CONVERSION = YES; 1459 | CLANG_WARN_COMMA = YES; 1460 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1461 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1462 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1463 | CLANG_WARN_EMPTY_BODY = YES; 1464 | CLANG_WARN_ENUM_CONVERSION = YES; 1465 | CLANG_WARN_INFINITE_RECURSION = YES; 1466 | CLANG_WARN_INT_CONVERSION = YES; 1467 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1468 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1469 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1470 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1471 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1472 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1473 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1474 | CLANG_WARN_UNREACHABLE_CODE = YES; 1475 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1476 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1477 | COPY_PHASE_STRIP = YES; 1478 | ENABLE_NS_ASSERTIONS = NO; 1479 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1480 | GCC_C_LANGUAGE_STANDARD = gnu99; 1481 | GCC_NO_COMMON_BLOCKS = YES; 1482 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1483 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1484 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1485 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1486 | GCC_WARN_UNUSED_FUNCTION = YES; 1487 | GCC_WARN_UNUSED_VARIABLE = YES; 1488 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 1489 | MTL_ENABLE_DEBUG_INFO = NO; 1490 | SDKROOT = iphoneos; 1491 | VALIDATE_PRODUCT = YES; 1492 | }; 1493 | name = Release; 1494 | }; 1495 | /* End XCBuildConfiguration section */ 1496 | 1497 | /* Begin XCConfigurationList section */ 1498 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNOpenFileExampleTests" */ = { 1499 | isa = XCConfigurationList; 1500 | buildConfigurations = ( 1501 | 00E356F61AD99517003FC87E /* Debug */, 1502 | 00E356F71AD99517003FC87E /* Release */, 1503 | ); 1504 | defaultConfigurationIsVisible = 0; 1505 | defaultConfigurationName = Release; 1506 | }; 1507 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNOpenFileExample" */ = { 1508 | isa = XCConfigurationList; 1509 | buildConfigurations = ( 1510 | 13B07F941A680F5B00A75B9A /* Debug */, 1511 | 13B07F951A680F5B00A75B9A /* Release */, 1512 | ); 1513 | defaultConfigurationIsVisible = 0; 1514 | defaultConfigurationName = Release; 1515 | }; 1516 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNOpenFileExample-tvOS" */ = { 1517 | isa = XCConfigurationList; 1518 | buildConfigurations = ( 1519 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1520 | 2D02E4981E0B4A5E006451C7 /* Release */, 1521 | ); 1522 | defaultConfigurationIsVisible = 0; 1523 | defaultConfigurationName = Release; 1524 | }; 1525 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNOpenFileExample-tvOSTests" */ = { 1526 | isa = XCConfigurationList; 1527 | buildConfigurations = ( 1528 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1529 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1530 | ); 1531 | defaultConfigurationIsVisible = 0; 1532 | defaultConfigurationName = Release; 1533 | }; 1534 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNOpenFileExample" */ = { 1535 | isa = XCConfigurationList; 1536 | buildConfigurations = ( 1537 | 83CBBA201A601CBA00E9B192 /* Debug */, 1538 | 83CBBA211A601CBA00E9B192 /* Release */, 1539 | ); 1540 | defaultConfigurationIsVisible = 0; 1541 | defaultConfigurationName = Release; 1542 | }; 1543 | /* End XCConfigurationList section */ 1544 | }; 1545 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1546 | } 1547 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample.xcodeproj/xcshareddata/xcschemes/RNOpenFileExample-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample.xcodeproj/xcshareddata/xcschemes/RNOpenFileExample.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"RNOpenFileExample" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | RNOpenFileExample 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSLocationWhenInUseUsageDescription 28 | 29 | UILaunchStoryboardName 30 | LaunchScreen 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UIViewControllerBasedStatusBarAppearance 42 | 43 | NSLocationWhenInUseUsageDescription 44 | 45 | NSAppTransportSecurity 46 | 47 | 48 | NSAllowsArbitraryLoads 49 | 50 | NSExceptionDomains 51 | 52 | localhost 53 | 54 | NSExceptionAllowsInsecureHTTPLoads 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExample/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/ios/RNOpenFileExampleTests/RNOpenFileExampleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface RNOpenFileExampleTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation RNOpenFileExampleTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNOpenFileExample", 3 | "version": "0.0.1", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "react-native-open-file": { 8 | "version": "1.0.6", 9 | "resolved": "https://repo.dev.wixpress.com/artifactory/api/npm/npm-repos/react-native-open-file/-/react-native-open-file-1.0.6.tgz", 10 | "integrity": "sha1-KoKJj5nHLbwNIm2hlUGAkRltLak=" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNOpenFileExample", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "16.6.0-alpha.8af6728", 11 | "react-native": "0.57.4", 12 | "react-native-open-file": "^1.0.6" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "23.6.0", 16 | "jest": "23.6.0", 17 | "metro-react-native-babel-preset": "0.48.2", 18 | "react-test-renderer": "16.6.0-alpha.8af6728" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /example/RNOpenFileExample/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-open-file/b7c57c0cc69fbd7b122ee2e2e5a3ebcf9ba24404/example/RNOpenFileExample/sample.pdf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import {NativeModules} from 'react-native'; 2 | 3 | export default { 4 | open: NativeModules.RNDocumentInteractionController.open 5 | } 6 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 9FE2653C1D2BC7F300445286 /* RNDocumentInteractionController.h in Copy Files */ = {isa = PBXBuildFile; fileRef = 9FE2653B1D2BC7F300445286 /* RNDocumentInteractionController.h */; }; 11 | 9FE2653E1D2BC7F300445286 /* RNDocumentInteractionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE2653D1D2BC7F300445286 /* RNDocumentInteractionController.m */; }; 12 | /* End PBXBuildFile section */ 13 | 14 | /* Begin PBXContainerItemProxy section */ 15 | 9F660F572004FC590063CC36 /* PBXContainerItemProxy */ = { 16 | isa = PBXContainerItemProxy; 17 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 18 | proxyType = 2; 19 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 20 | remoteInfo = React; 21 | }; 22 | 9F660F592004FC590063CC36 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 25 | proxyType = 2; 26 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 27 | remoteInfo = "React-tvOS"; 28 | }; 29 | 9F660F5B2004FC590063CC36 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 32 | proxyType = 2; 33 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 34 | remoteInfo = yoga; 35 | }; 36 | 9F660F5D2004FC590063CC36 /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 39 | proxyType = 2; 40 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 41 | remoteInfo = "yoga-tvOS"; 42 | }; 43 | 9F660F5F2004FC590063CC36 /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 46 | proxyType = 2; 47 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 48 | remoteInfo = cxxreact; 49 | }; 50 | 9F660F612004FC590063CC36 /* PBXContainerItemProxy */ = { 51 | isa = PBXContainerItemProxy; 52 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 53 | proxyType = 2; 54 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 55 | remoteInfo = "cxxreact-tvOS"; 56 | }; 57 | 9F660F632004FC590063CC36 /* PBXContainerItemProxy */ = { 58 | isa = PBXContainerItemProxy; 59 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 60 | proxyType = 2; 61 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 62 | remoteInfo = jschelpers; 63 | }; 64 | 9F660F652004FC590063CC36 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 69 | remoteInfo = "jschelpers-tvOS"; 70 | }; 71 | 9F660F672004FC590063CC36 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 76 | remoteInfo = jsinspector; 77 | }; 78 | 9F660F692004FC590063CC36 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 83 | remoteInfo = "jsinspector-tvOS"; 84 | }; 85 | 9F660F6B2004FC590063CC36 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 90 | remoteInfo = "third-party"; 91 | }; 92 | 9F660F6D2004FC590063CC36 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 97 | remoteInfo = "third-party-tvOS"; 98 | }; 99 | 9F660F6F2004FC590063CC36 /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 104 | remoteInfo = "double-conversion"; 105 | }; 106 | 9F660F712004FC590063CC36 /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 109 | proxyType = 2; 110 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 111 | remoteInfo = "double-conversion-tvOS"; 112 | }; 113 | 9F660F732004FC590063CC36 /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 118 | remoteInfo = privatedata; 119 | }; 120 | 9F660F752004FC590063CC36 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 123 | proxyType = 2; 124 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 125 | remoteInfo = "privatedata-tvOS"; 126 | }; 127 | 9F660F772004FC880063CC36 /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = 9F660F442004FC590063CC36 /* React.xcodeproj */; 130 | proxyType = 1; 131 | remoteGlobalIDString = 83CBBA2D1A601D0E00E9B192; 132 | remoteInfo = React; 133 | }; 134 | /* End PBXContainerItemProxy section */ 135 | 136 | /* Begin PBXCopyFilesBuildPhase section */ 137 | 9FE265361D2BC7F300445286 /* Copy Files */ = { 138 | isa = PBXCopyFilesBuildPhase; 139 | buildActionMask = 2147483647; 140 | dstPath = "include/$(PRODUCT_NAME)"; 141 | dstSubfolderSpec = 16; 142 | files = ( 143 | 9FE2653C1D2BC7F300445286 /* RNDocumentInteractionController.h in Copy Files */, 144 | ); 145 | name = "Copy Files"; 146 | runOnlyForDeploymentPostprocessing = 0; 147 | }; 148 | /* End PBXCopyFilesBuildPhase section */ 149 | 150 | /* Begin PBXFileReference section */ 151 | 9F660F442004FC590063CC36 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 152 | 9FE265381D2BC7F300445286 /* libRNDocumentInteractionController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNDocumentInteractionController.a; sourceTree = BUILT_PRODUCTS_DIR; }; 153 | 9FE2653B1D2BC7F300445286 /* RNDocumentInteractionController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RNDocumentInteractionController.h; sourceTree = ""; }; 154 | 9FE2653D1D2BC7F300445286 /* RNDocumentInteractionController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNDocumentInteractionController.m; sourceTree = ""; }; 155 | /* End PBXFileReference section */ 156 | 157 | /* Begin PBXFrameworksBuildPhase section */ 158 | 9FE265351D2BC7F300445286 /* Frameworks */ = { 159 | isa = PBXFrameworksBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | ); 163 | runOnlyForDeploymentPostprocessing = 0; 164 | }; 165 | /* End PBXFrameworksBuildPhase section */ 166 | 167 | /* Begin PBXGroup section */ 168 | 9F660F452004FC590063CC36 /* Products */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 9F660F582004FC590063CC36 /* libReact.a */, 172 | 9F660F5A2004FC590063CC36 /* libReact.a */, 173 | 9F660F5C2004FC590063CC36 /* libyoga.a */, 174 | 9F660F5E2004FC590063CC36 /* libyoga.a */, 175 | 9F660F602004FC590063CC36 /* libcxxreact.a */, 176 | 9F660F622004FC590063CC36 /* libcxxreact.a */, 177 | 9F660F642004FC590063CC36 /* libjschelpers.a */, 178 | 9F660F662004FC590063CC36 /* libjschelpers.a */, 179 | 9F660F682004FC590063CC36 /* libjsinspector.a */, 180 | 9F660F6A2004FC590063CC36 /* libjsinspector-tvOS.a */, 181 | 9F660F6C2004FC590063CC36 /* libthird-party.a */, 182 | 9F660F6E2004FC590063CC36 /* libthird-party.a */, 183 | 9F660F702004FC590063CC36 /* libdouble-conversion.a */, 184 | 9F660F722004FC590063CC36 /* libdouble-conversion.a */, 185 | 9F660F742004FC590063CC36 /* libprivatedata.a */, 186 | 9F660F762004FC590063CC36 /* libprivatedata-tvOS.a */, 187 | ); 188 | name = Products; 189 | sourceTree = ""; 190 | }; 191 | 9FE2652F1D2BC7F300445286 = { 192 | isa = PBXGroup; 193 | children = ( 194 | 9F660F442004FC590063CC36 /* React.xcodeproj */, 195 | 9FE2653A1D2BC7F300445286 /* RNDocumentInteractionController */, 196 | 9FE265391D2BC7F300445286 /* Products */, 197 | ); 198 | sourceTree = ""; 199 | }; 200 | 9FE265391D2BC7F300445286 /* Products */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | 9FE265381D2BC7F300445286 /* libRNDocumentInteractionController.a */, 204 | ); 205 | name = Products; 206 | sourceTree = ""; 207 | }; 208 | 9FE2653A1D2BC7F300445286 /* RNDocumentInteractionController */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | 9FE2653B1D2BC7F300445286 /* RNDocumentInteractionController.h */, 212 | 9FE2653D1D2BC7F300445286 /* RNDocumentInteractionController.m */, 213 | ); 214 | path = RNDocumentInteractionController; 215 | sourceTree = ""; 216 | }; 217 | /* End PBXGroup section */ 218 | 219 | /* Begin PBXNativeTarget section */ 220 | 9FE265371D2BC7F300445286 /* RNDocumentInteractionController */ = { 221 | isa = PBXNativeTarget; 222 | buildConfigurationList = 9FE265411D2BC7F300445286 /* Build configuration list for PBXNativeTarget "RNDocumentInteractionController" */; 223 | buildPhases = ( 224 | 9FE265341D2BC7F300445286 /* Sources */, 225 | 9FE265351D2BC7F300445286 /* Frameworks */, 226 | 9FE265361D2BC7F300445286 /* Copy Files */, 227 | ); 228 | buildRules = ( 229 | ); 230 | dependencies = ( 231 | 9F660F782004FC880063CC36 /* PBXTargetDependency */, 232 | ); 233 | name = RNDocumentInteractionController; 234 | productName = RNDocumentInteractionController; 235 | productReference = 9FE265381D2BC7F300445286 /* libRNDocumentInteractionController.a */; 236 | productType = "com.apple.product-type.library.static"; 237 | }; 238 | /* End PBXNativeTarget section */ 239 | 240 | /* Begin PBXProject section */ 241 | 9FE265301D2BC7F300445286 /* Project object */ = { 242 | isa = PBXProject; 243 | attributes = { 244 | LastUpgradeCheck = 0720; 245 | ORGANIZATIONNAME = Wix.com; 246 | TargetAttributes = { 247 | 9FE265371D2BC7F300445286 = { 248 | CreatedOnToolsVersion = 7.2; 249 | }; 250 | }; 251 | }; 252 | buildConfigurationList = 9FE265331D2BC7F300445286 /* Build configuration list for PBXProject "RNDocumentInteractionController" */; 253 | compatibilityVersion = "Xcode 3.2"; 254 | developmentRegion = English; 255 | hasScannedForEncodings = 0; 256 | knownRegions = ( 257 | en, 258 | ); 259 | mainGroup = 9FE2652F1D2BC7F300445286; 260 | productRefGroup = 9FE265391D2BC7F300445286 /* Products */; 261 | projectDirPath = ""; 262 | projectReferences = ( 263 | { 264 | ProductGroup = 9F660F452004FC590063CC36 /* Products */; 265 | ProjectRef = 9F660F442004FC590063CC36 /* React.xcodeproj */; 266 | }, 267 | ); 268 | projectRoot = ""; 269 | targets = ( 270 | 9FE265371D2BC7F300445286 /* RNDocumentInteractionController */, 271 | ); 272 | }; 273 | /* End PBXProject section */ 274 | 275 | /* Begin PBXReferenceProxy section */ 276 | 9F660F582004FC590063CC36 /* libReact.a */ = { 277 | isa = PBXReferenceProxy; 278 | fileType = archive.ar; 279 | path = libReact.a; 280 | remoteRef = 9F660F572004FC590063CC36 /* PBXContainerItemProxy */; 281 | sourceTree = BUILT_PRODUCTS_DIR; 282 | }; 283 | 9F660F5A2004FC590063CC36 /* libReact.a */ = { 284 | isa = PBXReferenceProxy; 285 | fileType = archive.ar; 286 | path = libReact.a; 287 | remoteRef = 9F660F592004FC590063CC36 /* PBXContainerItemProxy */; 288 | sourceTree = BUILT_PRODUCTS_DIR; 289 | }; 290 | 9F660F5C2004FC590063CC36 /* libyoga.a */ = { 291 | isa = PBXReferenceProxy; 292 | fileType = archive.ar; 293 | path = libyoga.a; 294 | remoteRef = 9F660F5B2004FC590063CC36 /* PBXContainerItemProxy */; 295 | sourceTree = BUILT_PRODUCTS_DIR; 296 | }; 297 | 9F660F5E2004FC590063CC36 /* libyoga.a */ = { 298 | isa = PBXReferenceProxy; 299 | fileType = archive.ar; 300 | path = libyoga.a; 301 | remoteRef = 9F660F5D2004FC590063CC36 /* PBXContainerItemProxy */; 302 | sourceTree = BUILT_PRODUCTS_DIR; 303 | }; 304 | 9F660F602004FC590063CC36 /* libcxxreact.a */ = { 305 | isa = PBXReferenceProxy; 306 | fileType = archive.ar; 307 | path = libcxxreact.a; 308 | remoteRef = 9F660F5F2004FC590063CC36 /* PBXContainerItemProxy */; 309 | sourceTree = BUILT_PRODUCTS_DIR; 310 | }; 311 | 9F660F622004FC590063CC36 /* libcxxreact.a */ = { 312 | isa = PBXReferenceProxy; 313 | fileType = archive.ar; 314 | path = libcxxreact.a; 315 | remoteRef = 9F660F612004FC590063CC36 /* PBXContainerItemProxy */; 316 | sourceTree = BUILT_PRODUCTS_DIR; 317 | }; 318 | 9F660F642004FC590063CC36 /* libjschelpers.a */ = { 319 | isa = PBXReferenceProxy; 320 | fileType = archive.ar; 321 | path = libjschelpers.a; 322 | remoteRef = 9F660F632004FC590063CC36 /* PBXContainerItemProxy */; 323 | sourceTree = BUILT_PRODUCTS_DIR; 324 | }; 325 | 9F660F662004FC590063CC36 /* libjschelpers.a */ = { 326 | isa = PBXReferenceProxy; 327 | fileType = archive.ar; 328 | path = libjschelpers.a; 329 | remoteRef = 9F660F652004FC590063CC36 /* PBXContainerItemProxy */; 330 | sourceTree = BUILT_PRODUCTS_DIR; 331 | }; 332 | 9F660F682004FC590063CC36 /* libjsinspector.a */ = { 333 | isa = PBXReferenceProxy; 334 | fileType = archive.ar; 335 | path = libjsinspector.a; 336 | remoteRef = 9F660F672004FC590063CC36 /* PBXContainerItemProxy */; 337 | sourceTree = BUILT_PRODUCTS_DIR; 338 | }; 339 | 9F660F6A2004FC590063CC36 /* libjsinspector-tvOS.a */ = { 340 | isa = PBXReferenceProxy; 341 | fileType = archive.ar; 342 | path = "libjsinspector-tvOS.a"; 343 | remoteRef = 9F660F692004FC590063CC36 /* PBXContainerItemProxy */; 344 | sourceTree = BUILT_PRODUCTS_DIR; 345 | }; 346 | 9F660F6C2004FC590063CC36 /* libthird-party.a */ = { 347 | isa = PBXReferenceProxy; 348 | fileType = archive.ar; 349 | path = "libthird-party.a"; 350 | remoteRef = 9F660F6B2004FC590063CC36 /* PBXContainerItemProxy */; 351 | sourceTree = BUILT_PRODUCTS_DIR; 352 | }; 353 | 9F660F6E2004FC590063CC36 /* libthird-party.a */ = { 354 | isa = PBXReferenceProxy; 355 | fileType = archive.ar; 356 | path = "libthird-party.a"; 357 | remoteRef = 9F660F6D2004FC590063CC36 /* PBXContainerItemProxy */; 358 | sourceTree = BUILT_PRODUCTS_DIR; 359 | }; 360 | 9F660F702004FC590063CC36 /* libdouble-conversion.a */ = { 361 | isa = PBXReferenceProxy; 362 | fileType = archive.ar; 363 | path = "libdouble-conversion.a"; 364 | remoteRef = 9F660F6F2004FC590063CC36 /* PBXContainerItemProxy */; 365 | sourceTree = BUILT_PRODUCTS_DIR; 366 | }; 367 | 9F660F722004FC590063CC36 /* libdouble-conversion.a */ = { 368 | isa = PBXReferenceProxy; 369 | fileType = archive.ar; 370 | path = "libdouble-conversion.a"; 371 | remoteRef = 9F660F712004FC590063CC36 /* PBXContainerItemProxy */; 372 | sourceTree = BUILT_PRODUCTS_DIR; 373 | }; 374 | 9F660F742004FC590063CC36 /* libprivatedata.a */ = { 375 | isa = PBXReferenceProxy; 376 | fileType = archive.ar; 377 | path = libprivatedata.a; 378 | remoteRef = 9F660F732004FC590063CC36 /* PBXContainerItemProxy */; 379 | sourceTree = BUILT_PRODUCTS_DIR; 380 | }; 381 | 9F660F762004FC590063CC36 /* libprivatedata-tvOS.a */ = { 382 | isa = PBXReferenceProxy; 383 | fileType = archive.ar; 384 | path = "libprivatedata-tvOS.a"; 385 | remoteRef = 9F660F752004FC590063CC36 /* PBXContainerItemProxy */; 386 | sourceTree = BUILT_PRODUCTS_DIR; 387 | }; 388 | /* End PBXReferenceProxy section */ 389 | 390 | /* Begin PBXSourcesBuildPhase section */ 391 | 9FE265341D2BC7F300445286 /* Sources */ = { 392 | isa = PBXSourcesBuildPhase; 393 | buildActionMask = 2147483647; 394 | files = ( 395 | 9FE2653E1D2BC7F300445286 /* RNDocumentInteractionController.m in Sources */, 396 | ); 397 | runOnlyForDeploymentPostprocessing = 0; 398 | }; 399 | /* End PBXSourcesBuildPhase section */ 400 | 401 | /* Begin PBXTargetDependency section */ 402 | 9F660F782004FC880063CC36 /* PBXTargetDependency */ = { 403 | isa = PBXTargetDependency; 404 | name = React; 405 | targetProxy = 9F660F772004FC880063CC36 /* PBXContainerItemProxy */; 406 | }; 407 | /* End PBXTargetDependency section */ 408 | 409 | /* Begin XCBuildConfiguration section */ 410 | 9FE2653F1D2BC7F300445286 /* Debug */ = { 411 | isa = XCBuildConfiguration; 412 | buildSettings = { 413 | ALWAYS_SEARCH_USER_PATHS = NO; 414 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 415 | CLANG_CXX_LIBRARY = "libc++"; 416 | CLANG_ENABLE_MODULES = YES; 417 | CLANG_ENABLE_OBJC_ARC = YES; 418 | CLANG_WARN_BOOL_CONVERSION = YES; 419 | CLANG_WARN_CONSTANT_CONVERSION = YES; 420 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 421 | CLANG_WARN_EMPTY_BODY = YES; 422 | CLANG_WARN_ENUM_CONVERSION = YES; 423 | CLANG_WARN_INT_CONVERSION = YES; 424 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 425 | CLANG_WARN_UNREACHABLE_CODE = YES; 426 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 427 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 428 | COPY_PHASE_STRIP = NO; 429 | DEBUG_INFORMATION_FORMAT = dwarf; 430 | ENABLE_STRICT_OBJC_MSGSEND = YES; 431 | ENABLE_TESTABILITY = YES; 432 | GCC_C_LANGUAGE_STANDARD = gnu99; 433 | GCC_DYNAMIC_NO_PIC = NO; 434 | GCC_NO_COMMON_BLOCKS = YES; 435 | GCC_OPTIMIZATION_LEVEL = 0; 436 | GCC_PREPROCESSOR_DEFINITIONS = ( 437 | "DEBUG=1", 438 | "$(inherited)", 439 | ); 440 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 441 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 442 | GCC_WARN_UNDECLARED_SELECTOR = YES; 443 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 444 | GCC_WARN_UNUSED_FUNCTION = YES; 445 | GCC_WARN_UNUSED_VARIABLE = YES; 446 | HEADER_SEARCH_PATHS = ( 447 | "$(SRCROOT)/../../React/**", 448 | "$(SRCROOT)/../../node_modules/react-native/React/**", 449 | "$(SRCROOT)/React/**", 450 | "$(SRCROOT)/node_modules/react-native/React/**", 451 | ); 452 | IPHONEOS_DEPLOYMENT_TARGET = 9.2; 453 | LIBRARY_SEARCH_PATHS = ""; 454 | MTL_ENABLE_DEBUG_INFO = YES; 455 | ONLY_ACTIVE_ARCH = YES; 456 | SDKROOT = iphoneos; 457 | }; 458 | name = Debug; 459 | }; 460 | 9FE265401D2BC7F300445286 /* Release */ = { 461 | isa = XCBuildConfiguration; 462 | buildSettings = { 463 | ALWAYS_SEARCH_USER_PATHS = NO; 464 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 465 | CLANG_CXX_LIBRARY = "libc++"; 466 | CLANG_ENABLE_MODULES = YES; 467 | CLANG_ENABLE_OBJC_ARC = YES; 468 | CLANG_WARN_BOOL_CONVERSION = YES; 469 | CLANG_WARN_CONSTANT_CONVERSION = YES; 470 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 471 | CLANG_WARN_EMPTY_BODY = YES; 472 | CLANG_WARN_ENUM_CONVERSION = YES; 473 | CLANG_WARN_INT_CONVERSION = YES; 474 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 475 | CLANG_WARN_UNREACHABLE_CODE = YES; 476 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 477 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 478 | COPY_PHASE_STRIP = NO; 479 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 480 | ENABLE_NS_ASSERTIONS = NO; 481 | ENABLE_STRICT_OBJC_MSGSEND = YES; 482 | GCC_C_LANGUAGE_STANDARD = gnu99; 483 | GCC_NO_COMMON_BLOCKS = YES; 484 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 485 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 486 | GCC_WARN_UNDECLARED_SELECTOR = YES; 487 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 488 | GCC_WARN_UNUSED_FUNCTION = YES; 489 | GCC_WARN_UNUSED_VARIABLE = YES; 490 | HEADER_SEARCH_PATHS = ( 491 | "$(SRCROOT)/../../React/**", 492 | "$(SRCROOT)/../../node_modules/react-native/React/**", 493 | "$(SRCROOT)/React/**", 494 | "$(SRCROOT)/node_modules/react-native/React/**", 495 | ); 496 | IPHONEOS_DEPLOYMENT_TARGET = 9.2; 497 | LIBRARY_SEARCH_PATHS = ""; 498 | MTL_ENABLE_DEBUG_INFO = NO; 499 | SDKROOT = iphoneos; 500 | VALIDATE_PRODUCT = YES; 501 | }; 502 | name = Release; 503 | }; 504 | 9FE265421D2BC7F300445286 /* Debug */ = { 505 | isa = XCBuildConfiguration; 506 | buildSettings = { 507 | HEADER_SEARCH_PATHS = ( 508 | "$(SRCROOT)/React/**", 509 | "$(SRCROOT)/node_modules/react-native/React/**", 510 | "$(SRCROOT)/../../React/**", 511 | "$(SRCROOT)/../../node_modules/react-native/React/**", 512 | "$(SRCROOT)/../../../React/**", 513 | "$(SRCROOT)/../../../react-native/React/**", 514 | "$(SRCROOT)/../../../../React/**", 515 | "$(SRCROOT)/../../../../react-native/React/**", 516 | ); 517 | OTHER_LDFLAGS = "-ObjC"; 518 | PRODUCT_NAME = "$(TARGET_NAME)"; 519 | SKIP_INSTALL = YES; 520 | }; 521 | name = Debug; 522 | }; 523 | 9FE265431D2BC7F300445286 /* Release */ = { 524 | isa = XCBuildConfiguration; 525 | buildSettings = { 526 | HEADER_SEARCH_PATHS = ( 527 | "$(SRCROOT)/React/**", 528 | "$(SRCROOT)/node_modules/react-native/React/**", 529 | "$(SRCROOT)/../../React/**", 530 | "$(SRCROOT)/../../node_modules/react-native/React/**", 531 | "$(SRCROOT)/../../../React/**", 532 | "$(SRCROOT)/../../../react-native/React/**", 533 | "$(SRCROOT)/../../../../React/**", 534 | "$(SRCROOT)/../../../../react-native/React/**", 535 | ); 536 | OTHER_LDFLAGS = "-ObjC"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | SKIP_INSTALL = YES; 539 | }; 540 | name = Release; 541 | }; 542 | /* End XCBuildConfiguration section */ 543 | 544 | /* Begin XCConfigurationList section */ 545 | 9FE265331D2BC7F300445286 /* Build configuration list for PBXProject "RNDocumentInteractionController" */ = { 546 | isa = XCConfigurationList; 547 | buildConfigurations = ( 548 | 9FE2653F1D2BC7F300445286 /* Debug */, 549 | 9FE265401D2BC7F300445286 /* Release */, 550 | ); 551 | defaultConfigurationIsVisible = 0; 552 | defaultConfigurationName = Release; 553 | }; 554 | 9FE265411D2BC7F300445286 /* Build configuration list for PBXNativeTarget "RNDocumentInteractionController" */ = { 555 | isa = XCConfigurationList; 556 | buildConfigurations = ( 557 | 9FE265421D2BC7F300445286 /* Debug */, 558 | 9FE265431D2BC7F300445286 /* Release */, 559 | ); 560 | defaultConfigurationIsVisible = 0; 561 | defaultConfigurationName = Release; 562 | }; 563 | /* End XCConfigurationList section */ 564 | }; 565 | rootObject = 9FE265301D2BC7F300445286 /* Project object */; 566 | } 567 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/project.xcworkspace/xcshareddata/RNDocumentInteractionController.xcscmblueprint: -------------------------------------------------------------------------------- 1 | { 2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "11926AF6331A725FA85A8B75950825A1BA2A9996", 3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { 4 | 5 | }, 6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { 7 | "11926AF6331A725FA85A8B75950825A1BA2A9996" : 0, 8 | "1883EAB9B734C8DE71A408A19D62663A6E6AE921" : 0 9 | }, 10 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "F0DBD21B-304E-4968-9850-C02CD21BD1FA", 11 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { 12 | "11926AF6331A725FA85A8B75950825A1BA2A9996" : "RNDocumentInteractionController\/", 13 | "1883EAB9B734C8DE71A408A19D62663A6E6AE921" : ".." 14 | }, 15 | "DVTSourceControlWorkspaceBlueprintNameKey" : "RNDocumentInteractionController", 16 | "DVTSourceControlWorkspaceBlueprintVersion" : 204, 17 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "RNDocumentInteractionController.xcodeproj", 18 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ 19 | { 20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "github.com:wix\/react-native-document-interaction-controller.git", 21 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "11926AF6331A725FA85A8B75950825A1BA2A9996" 23 | }, 24 | { 25 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "github.com:wix\/react-native-open-file.git", 26 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "1883EAB9B734C8DE71A408A19D62663A6E6AE921" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/xcuserdata/aarong.xcuserdatad/xcschemes/RNDocumentInteractionController.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController.xcodeproj/xcuserdata/aarong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RNDocumentInteractionController.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 9FE265371D2BC7F300445286 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController/RNDocumentInteractionController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RNDocumentInteractionController.h 3 | // RNDocumentInteractionController 4 | // 5 | // Created by Aaron Greenwald on 7/5/16. 6 | // Copyright © 2016 Wix.com. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface RNDocumentInteractionController : NSObject 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /ios/RNDocumentInteractionController/RNDocumentInteractionController/RNDocumentInteractionController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RNDocumentInteractionController.m 3 | // RNDocumentInteractionController 4 | // 5 | // Created by Aaron Greenwald on 7/5/16. 6 | // Copyright © 2016 Wix.com. All rights reserved. 7 | // 8 | 9 | #import "RNDocumentInteractionController.h" 10 | #import 11 | 12 | @implementation RNDocumentInteractionController 13 | 14 | RCT_EXPORT_MODULE(); 15 | 16 | RCT_EXPORT_METHOD(open: (NSURL *)path) 17 | { 18 | UIDocumentInteractionController *interactionController = [UIDocumentInteractionController interactionControllerWithURL:path]; 19 | interactionController.delegate = self; 20 | [interactionController presentPreviewAnimated:YES]; 21 | } 22 | 23 | - (UIViewController *) documentInteractionControllerViewControllerForPreview: (UIDocumentInteractionController *) controller 24 | { 25 | return [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 26 | } 27 | 28 | + (BOOL)requiresMainQueueSetup 29 | { 30 | return NO; 31 | } 32 | 33 | - (dispatch_queue_t)methodQueue 34 | { 35 | return dispatch_get_main_queue(); 36 | } 37 | 38 | @end 39 | 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-open-file", 3 | "version": "1.0.9", 4 | "description": "Open local and remote files with default OS behavior in react native", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/wix/react-native-open-file.git" 12 | }, 13 | "author": { 14 | "name": "Aaron Greenwald", 15 | "email": "aarong@wix.com" 16 | }, 17 | "keyword": [ 18 | "react-native", 19 | "files" 20 | ], 21 | "license": "MIT", 22 | "bugs": { 23 | "url": "https://github.com/wix/react-native-open-file/issues" 24 | }, 25 | "homepage": "https://github.com/wix/react-native-open-file#readme", 26 | "peerDependencies": { 27 | "react-native": ">=0.44.0" 28 | } 29 | } 30 | --------------------------------------------------------------------------------