├── .watchmanconfig ├── .gitattributes ├── .babelrc ├── android ├── settings.gradle ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnativearkit │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ ├── BUCK │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── app.json ├── ios ├── ReactNativeARKit │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── art.scnassets │ │ ├── ship.scn │ │ └── texture.png │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── ReactNativeARKitTests │ ├── Info.plist │ └── ReactNativeARKitTests.m ├── ReactNativeARKit-tvOSTests │ └── Info.plist ├── ReactNativeARKit-tvOS │ └── Info.plist └── ReactNativeARKit.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── ReactNativeARKit-tvOS.xcscheme │ │ └── ReactNativeARKit.xcscheme │ └── project.pbxproj ├── .buckconfig ├── __tests__ ├── index.ios.js └── index.android.js ├── package.json ├── README.md ├── .gitignore ├── .flowconfig └── index.js /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ReactNativeARKit' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeARKit", 3 | "displayName": "ReactNativeARKit" 4 | } -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ReactNativeARKit 3 | 4 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ios/ReactNativeARKit/art.scnassets/ship.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/ios/ReactNativeARKit/art.scnassets/ship.scn -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/art.scnassets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/ios/ReactNativeARKit/art.scnassets/texture.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HippoAR/ReactNativeARKit/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativearkit/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnativearkit; 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 "ReactNativeARKit"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ReactNativeARKit", 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.0.0", 11 | "react-native": "0.50.3", 12 | "react-native-arkit": "^0.5.0" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "20.0.3", 16 | "babel-preset-react-native": "2.1.0", 17 | "jest": "20.0.4", 18 | "react-test-renderer": "16.0.0-alpha.12" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ReactNativeARKit 2 | 3 | This is a sample project to demonstrate how to use [`react-native-arkit`](https://github.com/HippoAR/react-native-arkit) 4 | 5 | **Note**: ARKit is only supported by devices with A9 or later processors (iPhone 6s/7/SE/8/X, iPad 2017/Pro) on **iOS 11**. You also need **Xcode 9** to build the project. 6 | 7 | 8 | ## How to run the project 9 | 10 | 1. `git clone https://github.com/HippoAR/ReactNativeARKit.git`; 11 | 2. In the project folder, `yarn install` the dependencies (npm broken atm.) 12 | 3. Go to the `ios` folder and open `ReactNativeARKit.xcodeproj`. Build and run on your physical devices (ARKit doesn't run on simulators). 13 | 4. You also need to change the signing team 14 | 15 | Notice: the project is using "Release" config on run. If you want to debug and develop, change it to "Debug" 16 | -------------------------------------------------------------------------------- /ios/ReactNativeARKitTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.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 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/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 | } -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativearkit/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnativearkit; 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 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"ReactNativeARKit" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | 35 | return YES; 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /.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 | [include] 20 | 21 | [libs] 22 | node_modules/react-native/Libraries/react-native/react-native-interface.js 23 | node_modules/react-native/flow/ 24 | 25 | [options] 26 | emoji=true 27 | 28 | module.system=haste 29 | 30 | munge_underscores=true 31 | 32 | 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' 33 | 34 | suppress_type=$FlowIssue 35 | suppress_type=$FlowFixMe 36 | suppress_type=$FlowFixMeProps 37 | suppress_type=$FlowFixMeState 38 | suppress_type=$FixMe 39 | 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 42 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 43 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 44 | 45 | unsafe.enable_getters_and_setters=true 46 | 47 | [version] 48 | ^0.56.0 49 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit-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 | -------------------------------------------------------------------------------- /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.reactnativearkit", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnativearkit", 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 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSPhotoLibraryAddUsageDescription 6 | Save to Photo Library 7 | LSApplicationCategoryType 8 | 9 | CFBundleDevelopmentRegion 10 | en 11 | CFBundleDisplayName 12 | ReactNativeARKit 13 | CFBundleExecutable 14 | $(EXECUTABLE_NAME) 15 | CFBundleIdentifier 16 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 17 | CFBundleInfoDictionaryVersion 18 | 6.0 19 | CFBundleName 20 | $(PRODUCT_NAME) 21 | CFBundlePackageType 22 | APPL 23 | CFBundleShortVersionString 24 | 1.0 25 | CFBundleSignature 26 | ???? 27 | CFBundleVersion 28 | 1 29 | LSRequiresIPhoneOS 30 | 31 | NSAppTransportSecurity 32 | 33 | NSExceptionDomains 34 | 35 | localhost 36 | 37 | NSExceptionAllowsInsecureHTTPLoads 38 | 39 | 40 | 41 | 42 | NSCameraUsageDescription 43 | ARKit wants to use the camera 44 | NSLocationWhenInUseUsageDescription 45 | 46 | UILaunchStoryboardName 47 | LaunchScreen 48 | UIRequiredDeviceCapabilities 49 | 50 | armv7 51 | 52 | UISupportedInterfaceOrientations 53 | 54 | UIInterfaceOrientationPortrait 55 | 56 | UIViewControllerBasedStatusBarAppearance 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /ios/ReactNativeARKitTests/ReactNativeARKitTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface ReactNativeARKitTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation ReactNativeARKitTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit.xcodeproj/xcshareddata/xcschemes/ReactNativeARKit-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit.xcodeproj/xcshareddata/xcschemes/ReactNativeARKit.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 62 | 68 | 69 | 70 | 71 | 72 | 78 | 79 | 80 | 81 | 82 | 83 | 96 | 98 | 104 | 105 | 106 | 107 | 108 | 109 | 115 | 117 | 123 | 124 | 125 | 126 | 128 | 129 | 132 | 133 | 134 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // index.ios.js 2 | 3 | import { ARKit, withProjectedPosition } from 'react-native-arkit'; 4 | import { AppRegistry, Dimensions, View } from 'react-native'; 5 | import React, { Component } from 'react'; 6 | 7 | const diffuse = 'white'; 8 | 9 | const PlaneCursor = withProjectedPosition()(({ positionProjected }) => { 10 | if (!positionProjected) return null; 11 | return ( 12 | 13 | 22 | 27 | 28 | ); 29 | }); 30 | 31 | const ObjectCursor = withProjectedPosition()(({ positionProjected }) => { 32 | if (!positionProjected) return null; 33 | return ( 34 | 35 | 44 | 49 | 50 | ); 51 | }); 52 | 53 | const { width: windowWidth, height: windowHeight } = Dimensions.get('window'); 54 | 55 | export default class ReactNativeARKit extends Component { 56 | render() { 57 | return ( 58 | 59 | 67 | 73 | 79 | 85 | 91 | 97 | 103 | 109 | 115 | 121 | 129 | 136 | 141 | 142 | 147 | 155 | 156 | (results.length > 0 ? results[0] : null) 162 | }} 163 | /> 164 | { 169 | const filtered = results.filter(r => 170 | r.id.startsWith('object_') 171 | ); 172 | // take last detected object 173 | return filtered.length > 0 ? filtered[0] : null; 174 | } 175 | }} 176 | /> 177 | 178 | 179 | ); 180 | } 181 | } 182 | 183 | AppRegistry.registerComponent('ReactNativeARKit', () => ReactNativeARKit); 184 | -------------------------------------------------------------------------------- /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 23 98 | buildToolsVersion "23.0.1" 99 | 100 | defaultConfig { 101 | applicationId "com.reactnativearkit" 102 | minSdkVersion 16 103 | targetSdkVersion 22 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 | compile fileTree(dir: "libs", include: ["*.jar"]) 141 | compile "com.android.support:appcompat-v7:23.0.1" 142 | compile "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 | -------------------------------------------------------------------------------- /ios/ReactNativeARKit.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 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* ReactNativeARKitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeARKitTests.m */; }; 16 | 1017B6EF1F1F384100448C01 /* ARKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1017B6EE1F1F37BB00448C01 /* ARKit.framework */; }; 17 | 1017B6F11F1F386F00448C01 /* SceneKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1017B6F01F1F386B00448C01 /* SceneKit.framework */; }; 18 | 103395791F1DCD1B0070B4BB /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 103395771F1DCD130070B4BB /* CoreMotion.framework */; }; 19 | 10B8CA831F207504003D1F14 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10B8CA641F2074FD003D1F14 /* AVFoundation.framework */; }; 20 | 10CEB5A81F1E3D5700CCE64A /* art.scnassets in Resources */ = {isa = PBXBuildFile; fileRef = 10CEB5881F1E3D5700CCE64A /* art.scnassets */; }; 21 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 22 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 23 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 24 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 26 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 29 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 30 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 31 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 32 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 33 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 34 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 35 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 36 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 37 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 38 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 39 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 40 | 2D02E4C91E0B4AEC006451C7 /* libReact-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */; }; 41 | 2DCD954D1E0B4F2C00145EB5 /* ReactNativeARKitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeARKitTests.m */; }; 42 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 43 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 44 | AD85E002A99547E0995C4EE3 /* libRCTARKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BE5702798F24AEFBAAC3007 /* libRCTARKit.a */; }; 45 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 46 | B1F888781FB8FB27005B1AA5 /* PocketSVG.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1F888591FB8FAF6005B1AA5 /* PocketSVG.framework */; }; 47 | B1F888791FB8FB35005B1AA5 /* PocketSVG.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1F888591FB8FAF6005B1AA5 /* PocketSVG.framework */; }; 48 | B1F8887A1FB8FB35005B1AA5 /* PocketSVG.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B1F888591FB8FAF6005B1AA5 /* PocketSVG.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 49 | /* End PBXBuildFile section */ 50 | 51 | /* Begin PBXContainerItemProxy section */ 52 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 57 | remoteInfo = RCTActionSheet; 58 | }; 59 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 64 | remoteInfo = RCTGeolocation; 65 | }; 66 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 71 | remoteInfo = RCTImage; 72 | }; 73 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 78 | remoteInfo = RCTNetwork; 79 | }; 80 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 83 | proxyType = 2; 84 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 85 | remoteInfo = RCTVibration; 86 | }; 87 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 90 | proxyType = 1; 91 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 92 | remoteInfo = ReactNativeARKit; 93 | }; 94 | 10A876861F447FF300562BB6 /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = BD98DCAEDC2C4B8D85311B75 /* RCTARKit.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 99 | remoteInfo = RCTARKit; 100 | }; 101 | 10DB3A6A1F12A45E0023748A /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 106 | remoteInfo = "third-party"; 107 | }; 108 | 10DB3A6C1F12A45E0023748A /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 111 | proxyType = 2; 112 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 113 | remoteInfo = "third-party-tvOS"; 114 | }; 115 | 10DB3A6E1F12A45E0023748A /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 118 | proxyType = 2; 119 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 120 | remoteInfo = "double-conversion"; 121 | }; 122 | 10DB3A701F12A45E0023748A /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 127 | remoteInfo = "double-conversion-tvOS"; 128 | }; 129 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 132 | proxyType = 2; 133 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 134 | remoteInfo = RCTSettings; 135 | }; 136 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 141 | remoteInfo = RCTWebSocket; 142 | }; 143 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 148 | remoteInfo = React; 149 | }; 150 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 153 | proxyType = 1; 154 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 155 | remoteInfo = "ReactNativeARKit-tvOS"; 156 | }; 157 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 162 | remoteInfo = "RCTImage-tvOS"; 163 | }; 164 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 169 | remoteInfo = "RCTLinking-tvOS"; 170 | }; 171 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 176 | remoteInfo = "RCTNetwork-tvOS"; 177 | }; 178 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 183 | remoteInfo = "RCTSettings-tvOS"; 184 | }; 185 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 190 | remoteInfo = "RCTText-tvOS"; 191 | }; 192 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 197 | remoteInfo = "RCTWebSocket-tvOS"; 198 | }; 199 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 204 | remoteInfo = "React-tvOS"; 205 | }; 206 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 211 | remoteInfo = yoga; 212 | }; 213 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 218 | remoteInfo = "yoga-tvOS"; 219 | }; 220 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 225 | remoteInfo = cxxreact; 226 | }; 227 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 232 | remoteInfo = "cxxreact-tvOS"; 233 | }; 234 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 239 | remoteInfo = jschelpers; 240 | }; 241 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 242 | isa = PBXContainerItemProxy; 243 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 244 | proxyType = 2; 245 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 246 | remoteInfo = "jschelpers-tvOS"; 247 | }; 248 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 249 | isa = PBXContainerItemProxy; 250 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 251 | proxyType = 2; 252 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 253 | remoteInfo = RCTAnimation; 254 | }; 255 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 256 | isa = PBXContainerItemProxy; 257 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 258 | proxyType = 2; 259 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 260 | remoteInfo = "RCTAnimation-tvOS"; 261 | }; 262 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 263 | isa = PBXContainerItemProxy; 264 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 265 | proxyType = 2; 266 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 267 | remoteInfo = RCTLinking; 268 | }; 269 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 270 | isa = PBXContainerItemProxy; 271 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 272 | proxyType = 2; 273 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 274 | remoteInfo = RCTText; 275 | }; 276 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 277 | isa = PBXContainerItemProxy; 278 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 279 | proxyType = 2; 280 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 281 | remoteInfo = RCTBlob; 282 | }; 283 | B1F888581FB8FAF6005B1AA5 /* PBXContainerItemProxy */ = { 284 | isa = PBXContainerItemProxy; 285 | containerPortal = B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */; 286 | proxyType = 2; 287 | remoteGlobalIDString = C79800BB1A21CB5300380860; 288 | remoteInfo = "PocketSVG (iOS)"; 289 | }; 290 | B1F8885A1FB8FAF6005B1AA5 /* PBXContainerItemProxy */ = { 291 | isa = PBXContainerItemProxy; 292 | containerPortal = B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */; 293 | proxyType = 2; 294 | remoteGlobalIDString = C79800F51A21CDFD00380860; 295 | remoteInfo = "PocketSVG (Mac)"; 296 | }; 297 | B1F888621FB8FAF6005B1AA5 /* PBXContainerItemProxy */ = { 298 | isa = PBXContainerItemProxy; 299 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 300 | proxyType = 2; 301 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 302 | remoteInfo = "RCTBlob-tvOS"; 303 | }; 304 | B1F888741FB8FAF6005B1AA5 /* PBXContainerItemProxy */ = { 305 | isa = PBXContainerItemProxy; 306 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 307 | proxyType = 2; 308 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 309 | remoteInfo = fishhook; 310 | }; 311 | B1F888761FB8FAF6005B1AA5 /* PBXContainerItemProxy */ = { 312 | isa = PBXContainerItemProxy; 313 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 314 | proxyType = 2; 315 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 316 | remoteInfo = "fishhook-tvOS"; 317 | }; 318 | B1F8887B1FB8FB35005B1AA5 /* PBXContainerItemProxy */ = { 319 | isa = PBXContainerItemProxy; 320 | containerPortal = B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */; 321 | proxyType = 1; 322 | remoteGlobalIDString = C79800BA1A21CB5300380860; 323 | remoteInfo = "PocketSVG (iOS)"; 324 | }; 325 | /* End PBXContainerItemProxy section */ 326 | 327 | /* Begin PBXCopyFilesBuildPhase section */ 328 | B1F8887D1FB8FB36005B1AA5 /* Embed Frameworks */ = { 329 | isa = PBXCopyFilesBuildPhase; 330 | buildActionMask = 2147483647; 331 | dstPath = ""; 332 | dstSubfolderSpec = 10; 333 | files = ( 334 | B1F8887A1FB8FB35005B1AA5 /* PocketSVG.framework in Embed Frameworks */, 335 | ); 336 | name = "Embed Frameworks"; 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | /* End PBXCopyFilesBuildPhase section */ 340 | 341 | /* Begin PBXFileReference section */ 342 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 343 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 344 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 345 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 346 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 347 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 348 | 00E356EE1AD99517003FC87E /* ReactNativeARKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeARKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 349 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 350 | 00E356F21AD99517003FC87E /* ReactNativeARKitTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeARKitTests.m; sourceTree = ""; }; 351 | 0BE5702798F24AEFBAAC3007 /* libRCTARKit.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTARKit.a; sourceTree = ""; }; 352 | 1017B6EE1F1F37BB00448C01 /* ARKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ARKit.framework; path = System/Library/Frameworks/ARKit.framework; sourceTree = SDKROOT; }; 353 | 1017B6F01F1F386B00448C01 /* SceneKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SceneKit.framework; path = System/Library/Frameworks/SceneKit.framework; sourceTree = SDKROOT; }; 354 | 103395771F1DCD130070B4BB /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; }; 355 | 10B8CA641F2074FD003D1F14 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; 356 | 10CEB5881F1E3D5700CCE64A /* art.scnassets */ = {isa = PBXFileReference; lastKnownFileType = wrapper.scnassets; name = art.scnassets; path = ReactNativeARKit/art.scnassets; sourceTree = ""; }; 357 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 358 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 359 | 13B07F961A680F5B00A75B9A /* ReactNativeARKit.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeARKit.app; sourceTree = BUILT_PRODUCTS_DIR; }; 360 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNativeARKit/AppDelegate.h; sourceTree = ""; }; 361 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNativeARKit/AppDelegate.m; sourceTree = ""; }; 362 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 363 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeARKit/Images.xcassets; sourceTree = ""; }; 364 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeARKit/Info.plist; sourceTree = ""; }; 365 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeARKit/main.m; sourceTree = ""; }; 366 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 367 | 2D02E47B1E0B4A5D006451C7 /* ReactNativeARKit-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNativeARKit-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 368 | 2D02E4901E0B4A5D006451C7 /* ReactNativeARKit-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNativeARKit-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 369 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 370 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 371 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 372 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 373 | B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = PocketSVG.xcodeproj; path = ../node_modules/_PocketSVG/PocketSVG.xcodeproj; sourceTree = ""; }; 374 | BD98DCAEDC2C4B8D85311B75 /* RCTARKit.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTARKit.xcodeproj; path = "../node_modules/react-native-arkit/ios/RCTARKit.xcodeproj"; sourceTree = ""; }; 375 | /* End PBXFileReference section */ 376 | 377 | /* Begin PBXFrameworksBuildPhase section */ 378 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 379 | isa = PBXFrameworksBuildPhase; 380 | buildActionMask = 2147483647; 381 | files = ( 382 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 383 | ); 384 | runOnlyForDeploymentPostprocessing = 0; 385 | }; 386 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 387 | isa = PBXFrameworksBuildPhase; 388 | buildActionMask = 2147483647; 389 | files = ( 390 | B1F888781FB8FB27005B1AA5 /* PocketSVG.framework in Frameworks */, 391 | 10B8CA831F207504003D1F14 /* AVFoundation.framework in Frameworks */, 392 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 393 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 394 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 395 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 396 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 397 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 398 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 399 | 1017B6EF1F1F384100448C01 /* ARKit.framework in Frameworks */, 400 | B1F888791FB8FB35005B1AA5 /* PocketSVG.framework in Frameworks */, 401 | 1017B6F11F1F386F00448C01 /* SceneKit.framework in Frameworks */, 402 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 403 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 404 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 405 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 406 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 407 | 103395791F1DCD1B0070B4BB /* CoreMotion.framework in Frameworks */, 408 | AD85E002A99547E0995C4EE3 /* libRCTARKit.a in Frameworks */, 409 | ); 410 | runOnlyForDeploymentPostprocessing = 0; 411 | }; 412 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 413 | isa = PBXFrameworksBuildPhase; 414 | buildActionMask = 2147483647; 415 | files = ( 416 | 2D02E4C91E0B4AEC006451C7 /* libReact-tvOS.a in Frameworks */, 417 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 418 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 419 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 420 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 421 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 422 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 423 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 424 | ); 425 | runOnlyForDeploymentPostprocessing = 0; 426 | }; 427 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 428 | isa = PBXFrameworksBuildPhase; 429 | buildActionMask = 2147483647; 430 | files = ( 431 | ); 432 | runOnlyForDeploymentPostprocessing = 0; 433 | }; 434 | /* End PBXFrameworksBuildPhase section */ 435 | 436 | /* Begin PBXGroup section */ 437 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 438 | isa = PBXGroup; 439 | children = ( 440 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 441 | ); 442 | name = Products; 443 | sourceTree = ""; 444 | }; 445 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 446 | isa = PBXGroup; 447 | children = ( 448 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 449 | ); 450 | name = Products; 451 | sourceTree = ""; 452 | }; 453 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 454 | isa = PBXGroup; 455 | children = ( 456 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 457 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 458 | ); 459 | name = Products; 460 | sourceTree = ""; 461 | }; 462 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 463 | isa = PBXGroup; 464 | children = ( 465 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 466 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 467 | ); 468 | name = Products; 469 | sourceTree = ""; 470 | }; 471 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 472 | isa = PBXGroup; 473 | children = ( 474 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 475 | ); 476 | name = Products; 477 | sourceTree = ""; 478 | }; 479 | 00E356EF1AD99517003FC87E /* ReactNativeARKitTests */ = { 480 | isa = PBXGroup; 481 | children = ( 482 | 00E356F21AD99517003FC87E /* ReactNativeARKitTests.m */, 483 | 00E356F01AD99517003FC87E /* Supporting Files */, 484 | ); 485 | path = ReactNativeARKitTests; 486 | sourceTree = ""; 487 | }; 488 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 489 | isa = PBXGroup; 490 | children = ( 491 | 00E356F11AD99517003FC87E /* Info.plist */, 492 | ); 493 | name = "Supporting Files"; 494 | sourceTree = ""; 495 | }; 496 | 103395761F1DCD130070B4BB /* Frameworks */ = { 497 | isa = PBXGroup; 498 | children = ( 499 | 10B8CA641F2074FD003D1F14 /* AVFoundation.framework */, 500 | 1017B6F01F1F386B00448C01 /* SceneKit.framework */, 501 | 1017B6EE1F1F37BB00448C01 /* ARKit.framework */, 502 | 103395771F1DCD130070B4BB /* CoreMotion.framework */, 503 | ); 504 | name = Frameworks; 505 | sourceTree = ""; 506 | }; 507 | 10A876831F447FF300562BB6 /* Products */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 10A876871F447FF300562BB6 /* libRCTARKit.a */, 511 | ); 512 | name = Products; 513 | sourceTree = ""; 514 | }; 515 | 10DB3A4C1F12A45D0023748A /* Recovered References */ = { 516 | isa = PBXGroup; 517 | children = ( 518 | 0BE5702798F24AEFBAAC3007 /* libRCTARKit.a */, 519 | ); 520 | name = "Recovered References"; 521 | sourceTree = ""; 522 | }; 523 | 139105B71AF99BAD00B5F7CC /* Products */ = { 524 | isa = PBXGroup; 525 | children = ( 526 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 527 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 528 | ); 529 | name = Products; 530 | sourceTree = ""; 531 | }; 532 | 139FDEE71B06529A00C62182 /* Products */ = { 533 | isa = PBXGroup; 534 | children = ( 535 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 536 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 537 | B1F888751FB8FAF6005B1AA5 /* libfishhook.a */, 538 | B1F888771FB8FAF6005B1AA5 /* libfishhook-tvOS.a */, 539 | ); 540 | name = Products; 541 | sourceTree = ""; 542 | }; 543 | 13B07FAE1A68108700A75B9A /* ReactNativeARKit */ = { 544 | isa = PBXGroup; 545 | children = ( 546 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 547 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 548 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 549 | 10CEB5881F1E3D5700CCE64A /* art.scnassets */, 550 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 551 | 13B07FB61A68108700A75B9A /* Info.plist */, 552 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 553 | 13B07FB71A68108700A75B9A /* main.m */, 554 | ); 555 | name = ReactNativeARKit; 556 | sourceTree = ""; 557 | }; 558 | 146834001AC3E56700842450 /* Products */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | 146834041AC3E56700842450 /* libReact.a */, 562 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 563 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 564 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 565 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 566 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 567 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 568 | 10DB3A6B1F12A45E0023748A /* libthird-party.a */, 569 | 10DB3A6D1F12A45E0023748A /* libthird-party.a */, 570 | 10DB3A6F1F12A45E0023748A /* libdouble-conversion.a */, 571 | 10DB3A711F12A45E0023748A /* libdouble-conversion.a */, 572 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */, 573 | ); 574 | name = Products; 575 | sourceTree = ""; 576 | }; 577 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 578 | isa = PBXGroup; 579 | children = ( 580 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 581 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 582 | ); 583 | name = Products; 584 | sourceTree = ""; 585 | }; 586 | 78C398B11ACF4ADC00677621 /* Products */ = { 587 | isa = PBXGroup; 588 | children = ( 589 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 590 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 591 | ); 592 | name = Products; 593 | sourceTree = ""; 594 | }; 595 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 596 | isa = PBXGroup; 597 | children = ( 598 | B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */, 599 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 600 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 601 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 602 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 603 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 604 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 605 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 606 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 607 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 608 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 609 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 610 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 611 | BD98DCAEDC2C4B8D85311B75 /* RCTARKit.xcodeproj */, 612 | ); 613 | name = Libraries; 614 | sourceTree = ""; 615 | }; 616 | 832341B11AAA6A8300B99B32 /* Products */ = { 617 | isa = PBXGroup; 618 | children = ( 619 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 620 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 621 | ); 622 | name = Products; 623 | sourceTree = ""; 624 | }; 625 | 83CBB9F61A601CBA00E9B192 = { 626 | isa = PBXGroup; 627 | children = ( 628 | 13B07FAE1A68108700A75B9A /* ReactNativeARKit */, 629 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 630 | 00E356EF1AD99517003FC87E /* ReactNativeARKitTests */, 631 | 83CBBA001A601CBA00E9B192 /* Products */, 632 | 10DB3A4C1F12A45D0023748A /* Recovered References */, 633 | 103395761F1DCD130070B4BB /* Frameworks */, 634 | ); 635 | indentWidth = 2; 636 | sourceTree = ""; 637 | tabWidth = 2; 638 | usesTabs = 0; 639 | }; 640 | 83CBBA001A601CBA00E9B192 /* Products */ = { 641 | isa = PBXGroup; 642 | children = ( 643 | 13B07F961A680F5B00A75B9A /* ReactNativeARKit.app */, 644 | 00E356EE1AD99517003FC87E /* ReactNativeARKitTests.xctest */, 645 | 2D02E47B1E0B4A5D006451C7 /* ReactNativeARKit-tvOS.app */, 646 | 2D02E4901E0B4A5D006451C7 /* ReactNativeARKit-tvOSTests.xctest */, 647 | ); 648 | name = Products; 649 | sourceTree = ""; 650 | }; 651 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 652 | isa = PBXGroup; 653 | children = ( 654 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 655 | B1F888631FB8FAF6005B1AA5 /* libRCTBlob-tvOS.a */, 656 | ); 657 | name = Products; 658 | sourceTree = ""; 659 | }; 660 | B1F888541FB8FAF6005B1AA5 /* Products */ = { 661 | isa = PBXGroup; 662 | children = ( 663 | B1F888591FB8FAF6005B1AA5 /* PocketSVG.framework */, 664 | B1F8885B1FB8FAF6005B1AA5 /* PocketSVG.framework */, 665 | ); 666 | name = Products; 667 | sourceTree = ""; 668 | }; 669 | /* End PBXGroup section */ 670 | 671 | /* Begin PBXNativeTarget section */ 672 | 00E356ED1AD99517003FC87E /* ReactNativeARKitTests */ = { 673 | isa = PBXNativeTarget; 674 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeARKitTests" */; 675 | buildPhases = ( 676 | 00E356EA1AD99517003FC87E /* Sources */, 677 | 00E356EB1AD99517003FC87E /* Frameworks */, 678 | 00E356EC1AD99517003FC87E /* Resources */, 679 | ); 680 | buildRules = ( 681 | ); 682 | dependencies = ( 683 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 684 | ); 685 | name = ReactNativeARKitTests; 686 | productName = ReactNativeARKitTests; 687 | productReference = 00E356EE1AD99517003FC87E /* ReactNativeARKitTests.xctest */; 688 | productType = "com.apple.product-type.bundle.unit-test"; 689 | }; 690 | 13B07F861A680F5B00A75B9A /* ReactNativeARKit */ = { 691 | isa = PBXNativeTarget; 692 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeARKit" */; 693 | buildPhases = ( 694 | 13B07F871A680F5B00A75B9A /* Sources */, 695 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 696 | 13B07F8E1A680F5B00A75B9A /* Resources */, 697 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 698 | B1F8887D1FB8FB36005B1AA5 /* Embed Frameworks */, 699 | ); 700 | buildRules = ( 701 | ); 702 | dependencies = ( 703 | B1F8887C1FB8FB35005B1AA5 /* PBXTargetDependency */, 704 | ); 705 | name = ReactNativeARKit; 706 | productName = "Hello World"; 707 | productReference = 13B07F961A680F5B00A75B9A /* ReactNativeARKit.app */; 708 | productType = "com.apple.product-type.application"; 709 | }; 710 | 2D02E47A1E0B4A5D006451C7 /* ReactNativeARKit-tvOS */ = { 711 | isa = PBXNativeTarget; 712 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeARKit-tvOS" */; 713 | buildPhases = ( 714 | 2D02E4771E0B4A5D006451C7 /* Sources */, 715 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 716 | 2D02E4791E0B4A5D006451C7 /* Resources */, 717 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 718 | ); 719 | buildRules = ( 720 | ); 721 | dependencies = ( 722 | ); 723 | name = "ReactNativeARKit-tvOS"; 724 | productName = "ReactNativeARKit-tvOS"; 725 | productReference = 2D02E47B1E0B4A5D006451C7 /* ReactNativeARKit-tvOS.app */; 726 | productType = "com.apple.product-type.application"; 727 | }; 728 | 2D02E48F1E0B4A5D006451C7 /* ReactNativeARKit-tvOSTests */ = { 729 | isa = PBXNativeTarget; 730 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeARKit-tvOSTests" */; 731 | buildPhases = ( 732 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 733 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 734 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 735 | ); 736 | buildRules = ( 737 | ); 738 | dependencies = ( 739 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 740 | ); 741 | name = "ReactNativeARKit-tvOSTests"; 742 | productName = "ReactNativeARKit-tvOSTests"; 743 | productReference = 2D02E4901E0B4A5D006451C7 /* ReactNativeARKit-tvOSTests.xctest */; 744 | productType = "com.apple.product-type.bundle.unit-test"; 745 | }; 746 | /* End PBXNativeTarget section */ 747 | 748 | /* Begin PBXProject section */ 749 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 750 | isa = PBXProject; 751 | attributes = { 752 | LastUpgradeCheck = 610; 753 | ORGANIZATIONNAME = Facebook; 754 | TargetAttributes = { 755 | 00E356ED1AD99517003FC87E = { 756 | CreatedOnToolsVersion = 6.2; 757 | DevelopmentTeam = 84HMS8FGBE; 758 | TestTargetID = 13B07F861A680F5B00A75B9A; 759 | }; 760 | 13B07F861A680F5B00A75B9A = { 761 | DevelopmentTeam = 84HMS8FGBE; 762 | }; 763 | 2D02E47A1E0B4A5D006451C7 = { 764 | CreatedOnToolsVersion = 8.2.1; 765 | ProvisioningStyle = Automatic; 766 | }; 767 | 2D02E48F1E0B4A5D006451C7 = { 768 | CreatedOnToolsVersion = 8.2.1; 769 | ProvisioningStyle = Automatic; 770 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 771 | }; 772 | }; 773 | }; 774 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeARKit" */; 775 | compatibilityVersion = "Xcode 3.2"; 776 | developmentRegion = English; 777 | hasScannedForEncodings = 0; 778 | knownRegions = ( 779 | en, 780 | Base, 781 | ); 782 | mainGroup = 83CBB9F61A601CBA00E9B192; 783 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 784 | projectDirPath = ""; 785 | projectReferences = ( 786 | { 787 | ProductGroup = B1F888541FB8FAF6005B1AA5 /* Products */; 788 | ProjectRef = B1F888531FB8FAF6005B1AA5 /* PocketSVG.xcodeproj */; 789 | }, 790 | { 791 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 792 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 793 | }, 794 | { 795 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 796 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 797 | }, 798 | { 799 | ProductGroup = 10A876831F447FF300562BB6 /* Products */; 800 | ProjectRef = BD98DCAEDC2C4B8D85311B75 /* RCTARKit.xcodeproj */; 801 | }, 802 | { 803 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 804 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 805 | }, 806 | { 807 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 808 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 809 | }, 810 | { 811 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 812 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 813 | }, 814 | { 815 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 816 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 817 | }, 818 | { 819 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 820 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 821 | }, 822 | { 823 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 824 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 825 | }, 826 | { 827 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 828 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 829 | }, 830 | { 831 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 832 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 833 | }, 834 | { 835 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 836 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 837 | }, 838 | { 839 | ProductGroup = 146834001AC3E56700842450 /* Products */; 840 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 841 | }, 842 | ); 843 | projectRoot = ""; 844 | targets = ( 845 | 13B07F861A680F5B00A75B9A /* ReactNativeARKit */, 846 | 00E356ED1AD99517003FC87E /* ReactNativeARKitTests */, 847 | 2D02E47A1E0B4A5D006451C7 /* ReactNativeARKit-tvOS */, 848 | 2D02E48F1E0B4A5D006451C7 /* ReactNativeARKit-tvOSTests */, 849 | ); 850 | }; 851 | /* End PBXProject section */ 852 | 853 | /* Begin PBXReferenceProxy section */ 854 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 855 | isa = PBXReferenceProxy; 856 | fileType = archive.ar; 857 | path = libRCTActionSheet.a; 858 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 859 | sourceTree = BUILT_PRODUCTS_DIR; 860 | }; 861 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 862 | isa = PBXReferenceProxy; 863 | fileType = archive.ar; 864 | path = libRCTGeolocation.a; 865 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 866 | sourceTree = BUILT_PRODUCTS_DIR; 867 | }; 868 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 869 | isa = PBXReferenceProxy; 870 | fileType = archive.ar; 871 | path = libRCTImage.a; 872 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 873 | sourceTree = BUILT_PRODUCTS_DIR; 874 | }; 875 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 876 | isa = PBXReferenceProxy; 877 | fileType = archive.ar; 878 | path = libRCTNetwork.a; 879 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 880 | sourceTree = BUILT_PRODUCTS_DIR; 881 | }; 882 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 883 | isa = PBXReferenceProxy; 884 | fileType = archive.ar; 885 | path = libRCTVibration.a; 886 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 887 | sourceTree = BUILT_PRODUCTS_DIR; 888 | }; 889 | 10A876871F447FF300562BB6 /* libRCTARKit.a */ = { 890 | isa = PBXReferenceProxy; 891 | fileType = archive.ar; 892 | path = libRCTARKit.a; 893 | remoteRef = 10A876861F447FF300562BB6 /* PBXContainerItemProxy */; 894 | sourceTree = BUILT_PRODUCTS_DIR; 895 | }; 896 | 10DB3A6B1F12A45E0023748A /* libthird-party.a */ = { 897 | isa = PBXReferenceProxy; 898 | fileType = archive.ar; 899 | path = "libthird-party.a"; 900 | remoteRef = 10DB3A6A1F12A45E0023748A /* PBXContainerItemProxy */; 901 | sourceTree = BUILT_PRODUCTS_DIR; 902 | }; 903 | 10DB3A6D1F12A45E0023748A /* libthird-party.a */ = { 904 | isa = PBXReferenceProxy; 905 | fileType = archive.ar; 906 | path = "libthird-party.a"; 907 | remoteRef = 10DB3A6C1F12A45E0023748A /* PBXContainerItemProxy */; 908 | sourceTree = BUILT_PRODUCTS_DIR; 909 | }; 910 | 10DB3A6F1F12A45E0023748A /* libdouble-conversion.a */ = { 911 | isa = PBXReferenceProxy; 912 | fileType = archive.ar; 913 | path = "libdouble-conversion.a"; 914 | remoteRef = 10DB3A6E1F12A45E0023748A /* PBXContainerItemProxy */; 915 | sourceTree = BUILT_PRODUCTS_DIR; 916 | }; 917 | 10DB3A711F12A45E0023748A /* libdouble-conversion.a */ = { 918 | isa = PBXReferenceProxy; 919 | fileType = archive.ar; 920 | path = "libdouble-conversion.a"; 921 | remoteRef = 10DB3A701F12A45E0023748A /* PBXContainerItemProxy */; 922 | sourceTree = BUILT_PRODUCTS_DIR; 923 | }; 924 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 925 | isa = PBXReferenceProxy; 926 | fileType = archive.ar; 927 | path = libRCTSettings.a; 928 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 929 | sourceTree = BUILT_PRODUCTS_DIR; 930 | }; 931 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 932 | isa = PBXReferenceProxy; 933 | fileType = archive.ar; 934 | path = libRCTWebSocket.a; 935 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 936 | sourceTree = BUILT_PRODUCTS_DIR; 937 | }; 938 | 146834041AC3E56700842450 /* libReact.a */ = { 939 | isa = PBXReferenceProxy; 940 | fileType = archive.ar; 941 | path = libReact.a; 942 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 943 | sourceTree = BUILT_PRODUCTS_DIR; 944 | }; 945 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 946 | isa = PBXReferenceProxy; 947 | fileType = archive.ar; 948 | path = "libRCTImage-tvOS.a"; 949 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 950 | sourceTree = BUILT_PRODUCTS_DIR; 951 | }; 952 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 953 | isa = PBXReferenceProxy; 954 | fileType = archive.ar; 955 | path = "libRCTLinking-tvOS.a"; 956 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 957 | sourceTree = BUILT_PRODUCTS_DIR; 958 | }; 959 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 960 | isa = PBXReferenceProxy; 961 | fileType = archive.ar; 962 | path = "libRCTNetwork-tvOS.a"; 963 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 964 | sourceTree = BUILT_PRODUCTS_DIR; 965 | }; 966 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 967 | isa = PBXReferenceProxy; 968 | fileType = archive.ar; 969 | path = "libRCTSettings-tvOS.a"; 970 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 971 | sourceTree = BUILT_PRODUCTS_DIR; 972 | }; 973 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 974 | isa = PBXReferenceProxy; 975 | fileType = archive.ar; 976 | path = "libRCTText-tvOS.a"; 977 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 978 | sourceTree = BUILT_PRODUCTS_DIR; 979 | }; 980 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 981 | isa = PBXReferenceProxy; 982 | fileType = archive.ar; 983 | path = "libRCTWebSocket-tvOS.a"; 984 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 985 | sourceTree = BUILT_PRODUCTS_DIR; 986 | }; 987 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = { 988 | isa = PBXReferenceProxy; 989 | fileType = archive.ar; 990 | path = "libReact-tvOS.a"; 991 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 992 | sourceTree = BUILT_PRODUCTS_DIR; 993 | }; 994 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 995 | isa = PBXReferenceProxy; 996 | fileType = archive.ar; 997 | path = libyoga.a; 998 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 999 | sourceTree = BUILT_PRODUCTS_DIR; 1000 | }; 1001 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1002 | isa = PBXReferenceProxy; 1003 | fileType = archive.ar; 1004 | path = libyoga.a; 1005 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1006 | sourceTree = BUILT_PRODUCTS_DIR; 1007 | }; 1008 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1009 | isa = PBXReferenceProxy; 1010 | fileType = archive.ar; 1011 | path = libcxxreact.a; 1012 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1013 | sourceTree = BUILT_PRODUCTS_DIR; 1014 | }; 1015 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1016 | isa = PBXReferenceProxy; 1017 | fileType = archive.ar; 1018 | path = libcxxreact.a; 1019 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1020 | sourceTree = BUILT_PRODUCTS_DIR; 1021 | }; 1022 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1023 | isa = PBXReferenceProxy; 1024 | fileType = archive.ar; 1025 | path = libjschelpers.a; 1026 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1027 | sourceTree = BUILT_PRODUCTS_DIR; 1028 | }; 1029 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1030 | isa = PBXReferenceProxy; 1031 | fileType = archive.ar; 1032 | path = libjschelpers.a; 1033 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1034 | sourceTree = BUILT_PRODUCTS_DIR; 1035 | }; 1036 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1037 | isa = PBXReferenceProxy; 1038 | fileType = archive.ar; 1039 | path = libRCTAnimation.a; 1040 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1041 | sourceTree = BUILT_PRODUCTS_DIR; 1042 | }; 1043 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1044 | isa = PBXReferenceProxy; 1045 | fileType = archive.ar; 1046 | path = libRCTAnimation.a; 1047 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1048 | sourceTree = BUILT_PRODUCTS_DIR; 1049 | }; 1050 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1051 | isa = PBXReferenceProxy; 1052 | fileType = archive.ar; 1053 | path = libRCTLinking.a; 1054 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1055 | sourceTree = BUILT_PRODUCTS_DIR; 1056 | }; 1057 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1058 | isa = PBXReferenceProxy; 1059 | fileType = archive.ar; 1060 | path = libRCTText.a; 1061 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1062 | sourceTree = BUILT_PRODUCTS_DIR; 1063 | }; 1064 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1065 | isa = PBXReferenceProxy; 1066 | fileType = archive.ar; 1067 | path = libRCTBlob.a; 1068 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1069 | sourceTree = BUILT_PRODUCTS_DIR; 1070 | }; 1071 | B1F888591FB8FAF6005B1AA5 /* PocketSVG.framework */ = { 1072 | isa = PBXReferenceProxy; 1073 | fileType = wrapper.framework; 1074 | path = PocketSVG.framework; 1075 | remoteRef = B1F888581FB8FAF6005B1AA5 /* PBXContainerItemProxy */; 1076 | sourceTree = BUILT_PRODUCTS_DIR; 1077 | }; 1078 | B1F8885B1FB8FAF6005B1AA5 /* PocketSVG.framework */ = { 1079 | isa = PBXReferenceProxy; 1080 | fileType = wrapper.framework; 1081 | path = PocketSVG.framework; 1082 | remoteRef = B1F8885A1FB8FAF6005B1AA5 /* PBXContainerItemProxy */; 1083 | sourceTree = BUILT_PRODUCTS_DIR; 1084 | }; 1085 | B1F888631FB8FAF6005B1AA5 /* libRCTBlob-tvOS.a */ = { 1086 | isa = PBXReferenceProxy; 1087 | fileType = archive.ar; 1088 | path = "libRCTBlob-tvOS.a"; 1089 | remoteRef = B1F888621FB8FAF6005B1AA5 /* PBXContainerItemProxy */; 1090 | sourceTree = BUILT_PRODUCTS_DIR; 1091 | }; 1092 | B1F888751FB8FAF6005B1AA5 /* libfishhook.a */ = { 1093 | isa = PBXReferenceProxy; 1094 | fileType = archive.ar; 1095 | path = libfishhook.a; 1096 | remoteRef = B1F888741FB8FAF6005B1AA5 /* PBXContainerItemProxy */; 1097 | sourceTree = BUILT_PRODUCTS_DIR; 1098 | }; 1099 | B1F888771FB8FAF6005B1AA5 /* libfishhook-tvOS.a */ = { 1100 | isa = PBXReferenceProxy; 1101 | fileType = archive.ar; 1102 | path = "libfishhook-tvOS.a"; 1103 | remoteRef = B1F888761FB8FAF6005B1AA5 /* PBXContainerItemProxy */; 1104 | sourceTree = BUILT_PRODUCTS_DIR; 1105 | }; 1106 | /* End PBXReferenceProxy section */ 1107 | 1108 | /* Begin PBXResourcesBuildPhase section */ 1109 | 00E356EC1AD99517003FC87E /* Resources */ = { 1110 | isa = PBXResourcesBuildPhase; 1111 | buildActionMask = 2147483647; 1112 | files = ( 1113 | ); 1114 | runOnlyForDeploymentPostprocessing = 0; 1115 | }; 1116 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1117 | isa = PBXResourcesBuildPhase; 1118 | buildActionMask = 2147483647; 1119 | files = ( 1120 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1121 | 10CEB5A81F1E3D5700CCE64A /* art.scnassets in Resources */, 1122 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1123 | ); 1124 | runOnlyForDeploymentPostprocessing = 0; 1125 | }; 1126 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1127 | isa = PBXResourcesBuildPhase; 1128 | buildActionMask = 2147483647; 1129 | files = ( 1130 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1131 | ); 1132 | runOnlyForDeploymentPostprocessing = 0; 1133 | }; 1134 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1135 | isa = PBXResourcesBuildPhase; 1136 | buildActionMask = 2147483647; 1137 | files = ( 1138 | ); 1139 | runOnlyForDeploymentPostprocessing = 0; 1140 | }; 1141 | /* End PBXResourcesBuildPhase section */ 1142 | 1143 | /* Begin PBXShellScriptBuildPhase section */ 1144 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1145 | isa = PBXShellScriptBuildPhase; 1146 | buildActionMask = 2147483647; 1147 | files = ( 1148 | ); 1149 | inputPaths = ( 1150 | ); 1151 | name = "Bundle React Native code and images"; 1152 | outputPaths = ( 1153 | ); 1154 | runOnlyForDeploymentPostprocessing = 0; 1155 | shellPath = /bin/sh; 1156 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1157 | }; 1158 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1159 | isa = PBXShellScriptBuildPhase; 1160 | buildActionMask = 2147483647; 1161 | files = ( 1162 | ); 1163 | inputPaths = ( 1164 | ); 1165 | name = "Bundle React Native Code And Images"; 1166 | outputPaths = ( 1167 | ); 1168 | runOnlyForDeploymentPostprocessing = 0; 1169 | shellPath = /bin/sh; 1170 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1171 | }; 1172 | /* End PBXShellScriptBuildPhase section */ 1173 | 1174 | /* Begin PBXSourcesBuildPhase section */ 1175 | 00E356EA1AD99517003FC87E /* Sources */ = { 1176 | isa = PBXSourcesBuildPhase; 1177 | buildActionMask = 2147483647; 1178 | files = ( 1179 | 00E356F31AD99517003FC87E /* ReactNativeARKitTests.m in Sources */, 1180 | ); 1181 | runOnlyForDeploymentPostprocessing = 0; 1182 | }; 1183 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1184 | isa = PBXSourcesBuildPhase; 1185 | buildActionMask = 2147483647; 1186 | files = ( 1187 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1188 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1189 | ); 1190 | runOnlyForDeploymentPostprocessing = 0; 1191 | }; 1192 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1193 | isa = PBXSourcesBuildPhase; 1194 | buildActionMask = 2147483647; 1195 | files = ( 1196 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1197 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1198 | ); 1199 | runOnlyForDeploymentPostprocessing = 0; 1200 | }; 1201 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1202 | isa = PBXSourcesBuildPhase; 1203 | buildActionMask = 2147483647; 1204 | files = ( 1205 | 2DCD954D1E0B4F2C00145EB5 /* ReactNativeARKitTests.m in Sources */, 1206 | ); 1207 | runOnlyForDeploymentPostprocessing = 0; 1208 | }; 1209 | /* End PBXSourcesBuildPhase section */ 1210 | 1211 | /* Begin PBXTargetDependency section */ 1212 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1213 | isa = PBXTargetDependency; 1214 | target = 13B07F861A680F5B00A75B9A /* ReactNativeARKit */; 1215 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1216 | }; 1217 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1218 | isa = PBXTargetDependency; 1219 | target = 2D02E47A1E0B4A5D006451C7 /* ReactNativeARKit-tvOS */; 1220 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1221 | }; 1222 | B1F8887C1FB8FB35005B1AA5 /* PBXTargetDependency */ = { 1223 | isa = PBXTargetDependency; 1224 | name = "PocketSVG (iOS)"; 1225 | targetProxy = B1F8887B1FB8FB35005B1AA5 /* PBXContainerItemProxy */; 1226 | }; 1227 | /* End PBXTargetDependency section */ 1228 | 1229 | /* Begin PBXVariantGroup section */ 1230 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1231 | isa = PBXVariantGroup; 1232 | children = ( 1233 | 13B07FB21A68108700A75B9A /* Base */, 1234 | ); 1235 | name = LaunchScreen.xib; 1236 | path = ReactNativeARKit; 1237 | sourceTree = ""; 1238 | }; 1239 | /* End PBXVariantGroup section */ 1240 | 1241 | /* Begin XCBuildConfiguration section */ 1242 | 00E356F61AD99517003FC87E /* Debug */ = { 1243 | isa = XCBuildConfiguration; 1244 | buildSettings = { 1245 | BUNDLE_LOADER = "$(TEST_HOST)"; 1246 | DEVELOPMENT_TEAM = 84HMS8FGBE; 1247 | GCC_PREPROCESSOR_DEFINITIONS = ( 1248 | "DEBUG=1", 1249 | "$(inherited)", 1250 | ); 1251 | HEADER_SEARCH_PATHS = ( 1252 | "$(inherited)", 1253 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1254 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1255 | ); 1256 | INFOPLIST_FILE = ReactNativeARKitTests/Info.plist; 1257 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1258 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1259 | LIBRARY_SEARCH_PATHS = ( 1260 | "$(inherited)", 1261 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1262 | ); 1263 | OTHER_LDFLAGS = ( 1264 | "-ObjC", 1265 | "-lc++", 1266 | ); 1267 | PRODUCT_NAME = "$(TARGET_NAME)"; 1268 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeARKit.app/ReactNativeARKit"; 1269 | }; 1270 | name = Debug; 1271 | }; 1272 | 00E356F71AD99517003FC87E /* Release */ = { 1273 | isa = XCBuildConfiguration; 1274 | buildSettings = { 1275 | BUNDLE_LOADER = "$(TEST_HOST)"; 1276 | COPY_PHASE_STRIP = NO; 1277 | DEVELOPMENT_TEAM = 84HMS8FGBE; 1278 | HEADER_SEARCH_PATHS = ( 1279 | "$(inherited)", 1280 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1281 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1282 | ); 1283 | INFOPLIST_FILE = ReactNativeARKitTests/Info.plist; 1284 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1285 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1286 | LIBRARY_SEARCH_PATHS = ( 1287 | "$(inherited)", 1288 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1289 | ); 1290 | OTHER_LDFLAGS = ( 1291 | "-ObjC", 1292 | "-lc++", 1293 | ); 1294 | PRODUCT_NAME = "$(TARGET_NAME)"; 1295 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeARKit.app/ReactNativeARKit"; 1296 | }; 1297 | name = Release; 1298 | }; 1299 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1300 | isa = XCBuildConfiguration; 1301 | buildSettings = { 1302 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1303 | CURRENT_PROJECT_VERSION = 1; 1304 | DEAD_CODE_STRIPPING = NO; 1305 | DEVELOPMENT_TEAM = 84HMS8FGBE; 1306 | ENABLE_BITCODE = NO; 1307 | HEADER_SEARCH_PATHS = ( 1308 | "$(inherited)", 1309 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1310 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1311 | ); 1312 | INFOPLIST_FILE = ReactNativeARKit/Info.plist; 1313 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1314 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1315 | OTHER_LDFLAGS = ( 1316 | "$(inherited)", 1317 | "-ObjC", 1318 | "-lc++", 1319 | ); 1320 | PRODUCT_NAME = ReactNativeARKit; 1321 | VERSIONING_SYSTEM = "apple-generic"; 1322 | }; 1323 | name = Debug; 1324 | }; 1325 | 13B07F951A680F5B00A75B9A /* Release */ = { 1326 | isa = XCBuildConfiguration; 1327 | buildSettings = { 1328 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1329 | CURRENT_PROJECT_VERSION = 1; 1330 | DEVELOPMENT_TEAM = 84HMS8FGBE; 1331 | ENABLE_BITCODE = NO; 1332 | HEADER_SEARCH_PATHS = ( 1333 | "$(inherited)", 1334 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1335 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1336 | ); 1337 | INFOPLIST_FILE = ReactNativeARKit/Info.plist; 1338 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1339 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1340 | OTHER_LDFLAGS = ( 1341 | "$(inherited)", 1342 | "-ObjC", 1343 | "-lc++", 1344 | ); 1345 | PRODUCT_NAME = ReactNativeARKit; 1346 | VERSIONING_SYSTEM = "apple-generic"; 1347 | }; 1348 | name = Release; 1349 | }; 1350 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1351 | isa = XCBuildConfiguration; 1352 | buildSettings = { 1353 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1354 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1355 | CLANG_ANALYZER_NONNULL = YES; 1356 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1357 | CLANG_WARN_INFINITE_RECURSION = YES; 1358 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1359 | DEBUG_INFORMATION_FORMAT = dwarf; 1360 | ENABLE_TESTABILITY = YES; 1361 | GCC_NO_COMMON_BLOCKS = YES; 1362 | HEADER_SEARCH_PATHS = ( 1363 | "$(inherited)", 1364 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1365 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1366 | ); 1367 | INFOPLIST_FILE = "ReactNativeARKit-tvOS/Info.plist"; 1368 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1369 | LIBRARY_SEARCH_PATHS = ( 1370 | "$(inherited)", 1371 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1372 | ); 1373 | OTHER_LDFLAGS = ( 1374 | "-ObjC", 1375 | "-lc++", 1376 | ); 1377 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeARKit-tvOS"; 1378 | PRODUCT_NAME = "$(TARGET_NAME)"; 1379 | SDKROOT = appletvos; 1380 | TARGETED_DEVICE_FAMILY = 3; 1381 | TVOS_DEPLOYMENT_TARGET = 9.2; 1382 | }; 1383 | name = Debug; 1384 | }; 1385 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1386 | isa = XCBuildConfiguration; 1387 | buildSettings = { 1388 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1389 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1390 | CLANG_ANALYZER_NONNULL = YES; 1391 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1392 | CLANG_WARN_INFINITE_RECURSION = YES; 1393 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1394 | COPY_PHASE_STRIP = NO; 1395 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1396 | GCC_NO_COMMON_BLOCKS = YES; 1397 | HEADER_SEARCH_PATHS = ( 1398 | "$(inherited)", 1399 | "$(SRCROOT)/../node_modules/react-native-vuforia/ios", 1400 | "$(SRCROOT)/../node_modules/react-native-arkit/ios/**", 1401 | ); 1402 | INFOPLIST_FILE = "ReactNativeARKit-tvOS/Info.plist"; 1403 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1404 | LIBRARY_SEARCH_PATHS = ( 1405 | "$(inherited)", 1406 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1407 | ); 1408 | OTHER_LDFLAGS = ( 1409 | "-ObjC", 1410 | "-lc++", 1411 | ); 1412 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeARKit-tvOS"; 1413 | PRODUCT_NAME = "$(TARGET_NAME)"; 1414 | SDKROOT = appletvos; 1415 | TARGETED_DEVICE_FAMILY = 3; 1416 | TVOS_DEPLOYMENT_TARGET = 9.2; 1417 | }; 1418 | name = Release; 1419 | }; 1420 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1421 | isa = XCBuildConfiguration; 1422 | buildSettings = { 1423 | BUNDLE_LOADER = "$(TEST_HOST)"; 1424 | CLANG_ANALYZER_NONNULL = YES; 1425 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1426 | CLANG_WARN_INFINITE_RECURSION = YES; 1427 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1428 | DEBUG_INFORMATION_FORMAT = dwarf; 1429 | ENABLE_TESTABILITY = YES; 1430 | GCC_NO_COMMON_BLOCKS = YES; 1431 | INFOPLIST_FILE = "ReactNativeARKit-tvOSTests/Info.plist"; 1432 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1433 | LIBRARY_SEARCH_PATHS = ( 1434 | "$(inherited)", 1435 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1436 | ); 1437 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeARKit-tvOSTests"; 1438 | PRODUCT_NAME = "$(TARGET_NAME)"; 1439 | SDKROOT = appletvos; 1440 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeARKit-tvOS.app/ReactNativeARKit-tvOS"; 1441 | TVOS_DEPLOYMENT_TARGET = 10.1; 1442 | }; 1443 | name = Debug; 1444 | }; 1445 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1446 | isa = XCBuildConfiguration; 1447 | buildSettings = { 1448 | BUNDLE_LOADER = "$(TEST_HOST)"; 1449 | CLANG_ANALYZER_NONNULL = YES; 1450 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1451 | CLANG_WARN_INFINITE_RECURSION = YES; 1452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1453 | COPY_PHASE_STRIP = NO; 1454 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1455 | GCC_NO_COMMON_BLOCKS = YES; 1456 | INFOPLIST_FILE = "ReactNativeARKit-tvOSTests/Info.plist"; 1457 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1458 | LIBRARY_SEARCH_PATHS = ( 1459 | "$(inherited)", 1460 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1461 | ); 1462 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.ReactNativeARKit-tvOSTests"; 1463 | PRODUCT_NAME = "$(TARGET_NAME)"; 1464 | SDKROOT = appletvos; 1465 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNativeARKit-tvOS.app/ReactNativeARKit-tvOS"; 1466 | TVOS_DEPLOYMENT_TARGET = 10.1; 1467 | }; 1468 | name = Release; 1469 | }; 1470 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1471 | isa = XCBuildConfiguration; 1472 | buildSettings = { 1473 | ALWAYS_SEARCH_USER_PATHS = NO; 1474 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1475 | CLANG_CXX_LIBRARY = "libc++"; 1476 | CLANG_ENABLE_MODULES = YES; 1477 | CLANG_ENABLE_OBJC_ARC = YES; 1478 | CLANG_WARN_BOOL_CONVERSION = YES; 1479 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1480 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1481 | CLANG_WARN_EMPTY_BODY = YES; 1482 | CLANG_WARN_ENUM_CONVERSION = YES; 1483 | CLANG_WARN_INT_CONVERSION = YES; 1484 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1485 | CLANG_WARN_UNREACHABLE_CODE = YES; 1486 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1487 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1488 | COPY_PHASE_STRIP = NO; 1489 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1490 | GCC_C_LANGUAGE_STANDARD = gnu99; 1491 | GCC_DYNAMIC_NO_PIC = NO; 1492 | GCC_OPTIMIZATION_LEVEL = 0; 1493 | GCC_PREPROCESSOR_DEFINITIONS = ( 1494 | "DEBUG=1", 1495 | "$(inherited)", 1496 | ); 1497 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1498 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1499 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1500 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1501 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1502 | GCC_WARN_UNUSED_FUNCTION = YES; 1503 | GCC_WARN_UNUSED_VARIABLE = YES; 1504 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1505 | MTL_ENABLE_DEBUG_INFO = YES; 1506 | ONLY_ACTIVE_ARCH = YES; 1507 | SDKROOT = iphoneos; 1508 | }; 1509 | name = Debug; 1510 | }; 1511 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1512 | isa = XCBuildConfiguration; 1513 | buildSettings = { 1514 | ALWAYS_SEARCH_USER_PATHS = NO; 1515 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1516 | CLANG_CXX_LIBRARY = "libc++"; 1517 | CLANG_ENABLE_MODULES = YES; 1518 | CLANG_ENABLE_OBJC_ARC = YES; 1519 | CLANG_WARN_BOOL_CONVERSION = YES; 1520 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1521 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1522 | CLANG_WARN_EMPTY_BODY = YES; 1523 | CLANG_WARN_ENUM_CONVERSION = YES; 1524 | CLANG_WARN_INT_CONVERSION = YES; 1525 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1526 | CLANG_WARN_UNREACHABLE_CODE = YES; 1527 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1528 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1529 | COPY_PHASE_STRIP = YES; 1530 | ENABLE_NS_ASSERTIONS = NO; 1531 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1532 | GCC_C_LANGUAGE_STANDARD = gnu99; 1533 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1534 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1535 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1536 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1537 | GCC_WARN_UNUSED_FUNCTION = YES; 1538 | GCC_WARN_UNUSED_VARIABLE = YES; 1539 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1540 | MTL_ENABLE_DEBUG_INFO = NO; 1541 | SDKROOT = iphoneos; 1542 | VALIDATE_PRODUCT = YES; 1543 | }; 1544 | name = Release; 1545 | }; 1546 | /* End XCBuildConfiguration section */ 1547 | 1548 | /* Begin XCConfigurationList section */ 1549 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeARKitTests" */ = { 1550 | isa = XCConfigurationList; 1551 | buildConfigurations = ( 1552 | 00E356F61AD99517003FC87E /* Debug */, 1553 | 00E356F71AD99517003FC87E /* Release */, 1554 | ); 1555 | defaultConfigurationIsVisible = 0; 1556 | defaultConfigurationName = Release; 1557 | }; 1558 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeARKit" */ = { 1559 | isa = XCConfigurationList; 1560 | buildConfigurations = ( 1561 | 13B07F941A680F5B00A75B9A /* Debug */, 1562 | 13B07F951A680F5B00A75B9A /* Release */, 1563 | ); 1564 | defaultConfigurationIsVisible = 0; 1565 | defaultConfigurationName = Release; 1566 | }; 1567 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeARKit-tvOS" */ = { 1568 | isa = XCConfigurationList; 1569 | buildConfigurations = ( 1570 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1571 | 2D02E4981E0B4A5E006451C7 /* Release */, 1572 | ); 1573 | defaultConfigurationIsVisible = 0; 1574 | defaultConfigurationName = Release; 1575 | }; 1576 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeARKit-tvOSTests" */ = { 1577 | isa = XCConfigurationList; 1578 | buildConfigurations = ( 1579 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1580 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1581 | ); 1582 | defaultConfigurationIsVisible = 0; 1583 | defaultConfigurationName = Release; 1584 | }; 1585 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeARKit" */ = { 1586 | isa = XCConfigurationList; 1587 | buildConfigurations = ( 1588 | 83CBBA201A601CBA00E9B192 /* Debug */, 1589 | 83CBBA211A601CBA00E9B192 /* Release */, 1590 | ); 1591 | defaultConfigurationIsVisible = 0; 1592 | defaultConfigurationName = Release; 1593 | }; 1594 | /* End XCConfigurationList section */ 1595 | }; 1596 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1597 | } 1598 | --------------------------------------------------------------------------------