├── .circleci └── config.yml ├── .flowconfig ├── .gitattributes ├── .gitignore ├── Readme.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── detoxexample │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── index.js ├── ios ├── detoxexample-tvOS │ └── Info.plist ├── detoxexample-tvOSTests │ └── Info.plist ├── detoxexample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── detoxexample-tvOS.xcscheme │ │ └── detoxexample.xcscheme ├── detoxexample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── detoxexampleTests │ ├── Info.plist │ └── detoxexampleTests.m ├── jest ├── config.json ├── detox_config.json └── setup.js ├── package.json ├── src ├── App.js ├── __e2e__ │ └── App.test.js └── __tests__ │ └── App.test.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | aliases: 2 | - &restore-cache 3 | keys: 4 | - v2-test-{{ .Branch }}-{{ checksum "package.json" }} 5 | - v2-test-{{ .Branch }} 6 | 7 | - &save-node-cache 8 | key: v2-test-{{ .Branch }}-{{ checksum "package.json" }} 9 | paths: 10 | - node_modules 11 | 12 | - &save-ios-cache 13 | key: v2-test-{{ .Branch }}-{{ checksum "package.json" }} 14 | paths: 15 | - node_modules 16 | - ios/build 17 | 18 | - &install-node-dependencies 19 | | 20 | yarn 21 | 22 | defaults: &defaults 23 | working_directory: ~/react-native-detox-example 24 | 25 | jobs: 26 | test-ios: 27 | <<: *defaults 28 | macos: 29 | xcode: "9.0" 30 | dependencies: 31 | pre: 32 | 33 | steps: 34 | - checkout 35 | - run: 36 | name: Load dependencies 37 | command: 38 | | 39 | brew update 40 | brew tap wix/brew 41 | brew install --HEAD applesimutils 42 | npm install -g detox-cli 43 | - run: *install-node-dependencies 44 | - run: detox build -c ios.sim.release 45 | - run: detox test -c ios.sim.release 46 | 47 | test-js: 48 | <<: *defaults 49 | docker: 50 | - image: circleci/node:8 51 | steps: 52 | - checkout 53 | - restore_cache: *restore-cache 54 | - run: *install-node-dependencies 55 | - save_cache: *save-ios-cache 56 | - run: npm test 57 | 58 | workflows: 59 | version: 2 60 | 61 | build: 62 | jobs: 63 | - test-js 64 | - test-ios 65 | 66 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | 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' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 43 | 44 | unsafe.enable_getters_and_setters=true 45 | 46 | [version] 47 | ^0.42.0 48 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.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://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | react-native-detox-example [![CircleCI](https://circleci.com/gh/callstack/react-native-detox-example.svg?style=svg)](https://circleci.com/gh/callstack/react-native-detox-example) 2 | ========================== 3 | 4 | An example that integrates `detox` with `jest`. 5 | 6 | 7 | -------------------------------------------------------------------------------- /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.detoxexample", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.detoxexample", 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 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"], 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.detoxexample" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile fileTree(dir: "libs", include: ["*.jar"]) 130 | compile "com.android.support:appcompat-v7:23.0.1" 131 | compile "com.facebook.react:react-native:+" // From node_modules 132 | } 133 | 134 | // Run this once to be able to run the application with BUCK 135 | // puts all compile dependencies into folder libs for BUCK to use 136 | task copyDownloadableDepsToLibs(type: Copy) { 137 | from configurations.compile 138 | into 'libs' 139 | } 140 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/detoxexample/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.detoxexample; 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 "detoxexample"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/detoxexample/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.detoxexample; 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 | 30 | @Override 31 | public ReactNativeHost getReactNativeHost() { 32 | return mReactNativeHost; 33 | } 34 | 35 | @Override 36 | public void onCreate() { 37 | super.onCreate(); 38 | SoLoader.init(this, /* native exopackage */ false); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-detox-example/b7f7942662eb55f3dca6d67d0281fe55e779ba4a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-detox-example/b7f7942662eb55f3dca6d67d0281fe55e779ba4a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-detox-example/b7f7942662eb55f3dca6d67d0281fe55e779ba4a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-detox-example/b7f7942662eb55f3dca6d67d0281fe55e779ba4a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | detoxexample 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-detox-example/b7f7942662eb55f3dca6d67d0281fe55e779ba4a/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/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/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /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/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'detoxexample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import { 8 | AppRegistry, 9 | } from 'react-native'; 10 | 11 | import App from './src/App'; 12 | 13 | AppRegistry.registerComponent('detoxexample', () => App); 14 | -------------------------------------------------------------------------------- /ios/detoxexample-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 | -------------------------------------------------------------------------------- /ios/detoxexample-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 | -------------------------------------------------------------------------------- /ios/detoxexample.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 /* detoxexampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* detoxexampleTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* detoxexampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* detoxexampleTests.m */; }; 37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | /* End PBXBuildFile section */ 40 | 41 | /* Begin PBXContainerItemProxy section */ 42 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 43 | isa = PBXContainerItemProxy; 44 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 45 | proxyType = 2; 46 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 47 | remoteInfo = RCTActionSheet; 48 | }; 49 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 50 | isa = PBXContainerItemProxy; 51 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 52 | proxyType = 2; 53 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 54 | remoteInfo = RCTGeolocation; 55 | }; 56 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 57 | isa = PBXContainerItemProxy; 58 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 59 | proxyType = 2; 60 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 61 | remoteInfo = RCTImage; 62 | }; 63 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 64 | isa = PBXContainerItemProxy; 65 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 66 | proxyType = 2; 67 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 68 | remoteInfo = RCTNetwork; 69 | }; 70 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 71 | isa = PBXContainerItemProxy; 72 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 73 | proxyType = 2; 74 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 75 | remoteInfo = RCTVibration; 76 | }; 77 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 78 | isa = PBXContainerItemProxy; 79 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 80 | proxyType = 1; 81 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 82 | remoteInfo = detoxexample; 83 | }; 84 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 85 | isa = PBXContainerItemProxy; 86 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 87 | proxyType = 2; 88 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 89 | remoteInfo = RCTSettings; 90 | }; 91 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 92 | isa = PBXContainerItemProxy; 93 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 94 | proxyType = 2; 95 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 96 | remoteInfo = RCTWebSocket; 97 | }; 98 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 99 | isa = PBXContainerItemProxy; 100 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 101 | proxyType = 2; 102 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 103 | remoteInfo = React; 104 | }; 105 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 106 | isa = PBXContainerItemProxy; 107 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 108 | proxyType = 1; 109 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 110 | remoteInfo = "detoxexample-tvOS"; 111 | }; 112 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 113 | isa = PBXContainerItemProxy; 114 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 115 | proxyType = 2; 116 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 117 | remoteInfo = "RCTImage-tvOS"; 118 | }; 119 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 120 | isa = PBXContainerItemProxy; 121 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 122 | proxyType = 2; 123 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 124 | remoteInfo = "RCTLinking-tvOS"; 125 | }; 126 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 127 | isa = PBXContainerItemProxy; 128 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 129 | proxyType = 2; 130 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 131 | remoteInfo = "RCTNetwork-tvOS"; 132 | }; 133 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 134 | isa = PBXContainerItemProxy; 135 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 136 | proxyType = 2; 137 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 138 | remoteInfo = "RCTSettings-tvOS"; 139 | }; 140 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 141 | isa = PBXContainerItemProxy; 142 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 143 | proxyType = 2; 144 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 145 | remoteInfo = "RCTText-tvOS"; 146 | }; 147 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 148 | isa = PBXContainerItemProxy; 149 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 150 | proxyType = 2; 151 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 152 | remoteInfo = "RCTWebSocket-tvOS"; 153 | }; 154 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 155 | isa = PBXContainerItemProxy; 156 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 157 | proxyType = 2; 158 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 159 | remoteInfo = "React-tvOS"; 160 | }; 161 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 162 | isa = PBXContainerItemProxy; 163 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 164 | proxyType = 2; 165 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 166 | remoteInfo = yoga; 167 | }; 168 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 169 | isa = PBXContainerItemProxy; 170 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 171 | proxyType = 2; 172 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 173 | remoteInfo = "yoga-tvOS"; 174 | }; 175 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 176 | isa = PBXContainerItemProxy; 177 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 178 | proxyType = 2; 179 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 180 | remoteInfo = cxxreact; 181 | }; 182 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 183 | isa = PBXContainerItemProxy; 184 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 185 | proxyType = 2; 186 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 187 | remoteInfo = "cxxreact-tvOS"; 188 | }; 189 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 190 | isa = PBXContainerItemProxy; 191 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 192 | proxyType = 2; 193 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 194 | remoteInfo = jschelpers; 195 | }; 196 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 197 | isa = PBXContainerItemProxy; 198 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 199 | proxyType = 2; 200 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 201 | remoteInfo = "jschelpers-tvOS"; 202 | }; 203 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 204 | isa = PBXContainerItemProxy; 205 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 206 | proxyType = 2; 207 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 208 | remoteInfo = RCTAnimation; 209 | }; 210 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 211 | isa = PBXContainerItemProxy; 212 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 213 | proxyType = 2; 214 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 215 | remoteInfo = "RCTAnimation-tvOS"; 216 | }; 217 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 218 | isa = PBXContainerItemProxy; 219 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 220 | proxyType = 2; 221 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 222 | remoteInfo = RCTLinking; 223 | }; 224 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 225 | isa = PBXContainerItemProxy; 226 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 227 | proxyType = 2; 228 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 229 | remoteInfo = RCTText; 230 | }; 231 | AD22032C1FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 232 | isa = PBXContainerItemProxy; 233 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 234 | proxyType = 2; 235 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 236 | remoteInfo = fishhook; 237 | }; 238 | AD22032E1FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 239 | isa = PBXContainerItemProxy; 240 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 241 | proxyType = 2; 242 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 243 | remoteInfo = "fishhook-tvOS"; 244 | }; 245 | AD22033E1FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 246 | isa = PBXContainerItemProxy; 247 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 248 | proxyType = 2; 249 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 250 | remoteInfo = "third-party"; 251 | }; 252 | AD2203401FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 253 | isa = PBXContainerItemProxy; 254 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 255 | proxyType = 2; 256 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 257 | remoteInfo = "third-party-tvOS"; 258 | }; 259 | AD2203421FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 260 | isa = PBXContainerItemProxy; 261 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 262 | proxyType = 2; 263 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 264 | remoteInfo = "double-conversion"; 265 | }; 266 | AD2203441FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 267 | isa = PBXContainerItemProxy; 268 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 269 | proxyType = 2; 270 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 271 | remoteInfo = "double-conversion-tvOS"; 272 | }; 273 | AD2203461FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 274 | isa = PBXContainerItemProxy; 275 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 276 | proxyType = 2; 277 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 278 | remoteInfo = privatedata; 279 | }; 280 | AD2203481FD8BD9F00D8106A /* PBXContainerItemProxy */ = { 281 | isa = PBXContainerItemProxy; 282 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 283 | proxyType = 2; 284 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 285 | remoteInfo = "privatedata-tvOS"; 286 | }; 287 | /* End PBXContainerItemProxy section */ 288 | 289 | /* Begin PBXFileReference section */ 290 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 291 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 292 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 293 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 294 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 295 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 296 | 00E356EE1AD99517003FC87E /* detoxexampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = detoxexampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 297 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 298 | 00E356F21AD99517003FC87E /* detoxexampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = detoxexampleTests.m; sourceTree = ""; }; 299 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 300 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 301 | 13B07F961A680F5B00A75B9A /* detoxexample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = detoxexample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 302 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = detoxexample/AppDelegate.h; sourceTree = ""; }; 303 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = detoxexample/AppDelegate.m; sourceTree = ""; }; 304 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 305 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = detoxexample/Images.xcassets; sourceTree = ""; }; 306 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = detoxexample/Info.plist; sourceTree = ""; }; 307 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = detoxexample/main.m; sourceTree = ""; }; 308 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 309 | 2D02E47B1E0B4A5D006451C7 /* detoxexample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "detoxexample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 310 | 2D02E4901E0B4A5D006451C7 /* detoxexample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "detoxexample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 311 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 312 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 313 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 314 | /* End PBXFileReference section */ 315 | 316 | /* Begin PBXFrameworksBuildPhase section */ 317 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 318 | isa = PBXFrameworksBuildPhase; 319 | buildActionMask = 2147483647; 320 | files = ( 321 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | }; 325 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 326 | isa = PBXFrameworksBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 330 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 331 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 332 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 333 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 334 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 335 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 336 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 337 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 338 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 339 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 340 | ); 341 | runOnlyForDeploymentPostprocessing = 0; 342 | }; 343 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 344 | isa = PBXFrameworksBuildPhase; 345 | buildActionMask = 2147483647; 346 | files = ( 347 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 348 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 349 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 350 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 351 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 352 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 353 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 354 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 355 | ); 356 | runOnlyForDeploymentPostprocessing = 0; 357 | }; 358 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 359 | isa = PBXFrameworksBuildPhase; 360 | buildActionMask = 2147483647; 361 | files = ( 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | /* End PBXFrameworksBuildPhase section */ 366 | 367 | /* Begin PBXGroup section */ 368 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 369 | isa = PBXGroup; 370 | children = ( 371 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 372 | ); 373 | name = Products; 374 | sourceTree = ""; 375 | }; 376 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 377 | isa = PBXGroup; 378 | children = ( 379 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 380 | ); 381 | name = Products; 382 | sourceTree = ""; 383 | }; 384 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 385 | isa = PBXGroup; 386 | children = ( 387 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 388 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 389 | ); 390 | name = Products; 391 | sourceTree = ""; 392 | }; 393 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 394 | isa = PBXGroup; 395 | children = ( 396 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 397 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 398 | ); 399 | name = Products; 400 | sourceTree = ""; 401 | }; 402 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 403 | isa = PBXGroup; 404 | children = ( 405 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 406 | ); 407 | name = Products; 408 | sourceTree = ""; 409 | }; 410 | 00E356EF1AD99517003FC87E /* detoxexampleTests */ = { 411 | isa = PBXGroup; 412 | children = ( 413 | 00E356F21AD99517003FC87E /* detoxexampleTests.m */, 414 | 00E356F01AD99517003FC87E /* Supporting Files */, 415 | ); 416 | path = detoxexampleTests; 417 | sourceTree = ""; 418 | }; 419 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 420 | isa = PBXGroup; 421 | children = ( 422 | 00E356F11AD99517003FC87E /* Info.plist */, 423 | ); 424 | name = "Supporting Files"; 425 | sourceTree = ""; 426 | }; 427 | 139105B71AF99BAD00B5F7CC /* Products */ = { 428 | isa = PBXGroup; 429 | children = ( 430 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 431 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 432 | ); 433 | name = Products; 434 | sourceTree = ""; 435 | }; 436 | 139FDEE71B06529A00C62182 /* Products */ = { 437 | isa = PBXGroup; 438 | children = ( 439 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 440 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 441 | AD22032D1FD8BD9F00D8106A /* libfishhook.a */, 442 | AD22032F1FD8BD9F00D8106A /* libfishhook-tvOS.a */, 443 | ); 444 | name = Products; 445 | sourceTree = ""; 446 | }; 447 | 13B07FAE1A68108700A75B9A /* detoxexample */ = { 448 | isa = PBXGroup; 449 | children = ( 450 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 451 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 452 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 453 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 454 | 13B07FB61A68108700A75B9A /* Info.plist */, 455 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 456 | 13B07FB71A68108700A75B9A /* main.m */, 457 | ); 458 | name = detoxexample; 459 | sourceTree = ""; 460 | }; 461 | 146834001AC3E56700842450 /* Products */ = { 462 | isa = PBXGroup; 463 | children = ( 464 | 146834041AC3E56700842450 /* libReact.a */, 465 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 466 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 467 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 468 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 469 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 470 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 471 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 472 | AD22033F1FD8BD9F00D8106A /* libthird-party.a */, 473 | AD2203411FD8BD9F00D8106A /* libthird-party.a */, 474 | AD2203431FD8BD9F00D8106A /* libdouble-conversion.a */, 475 | AD2203451FD8BD9F00D8106A /* libdouble-conversion.a */, 476 | AD2203471FD8BD9F00D8106A /* libprivatedata.a */, 477 | AD2203491FD8BD9F00D8106A /* libprivatedata-tvOS.a */, 478 | ); 479 | name = Products; 480 | sourceTree = ""; 481 | }; 482 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 486 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 487 | ); 488 | name = Products; 489 | sourceTree = ""; 490 | }; 491 | 78C398B11ACF4ADC00677621 /* Products */ = { 492 | isa = PBXGroup; 493 | children = ( 494 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 495 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 496 | ); 497 | name = Products; 498 | sourceTree = ""; 499 | }; 500 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 501 | isa = PBXGroup; 502 | children = ( 503 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 504 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 505 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 506 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 507 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 508 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 509 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 510 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 511 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 512 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 513 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 514 | ); 515 | name = Libraries; 516 | sourceTree = ""; 517 | }; 518 | 832341B11AAA6A8300B99B32 /* Products */ = { 519 | isa = PBXGroup; 520 | children = ( 521 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 522 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 523 | ); 524 | name = Products; 525 | sourceTree = ""; 526 | }; 527 | 83CBB9F61A601CBA00E9B192 = { 528 | isa = PBXGroup; 529 | children = ( 530 | 13B07FAE1A68108700A75B9A /* detoxexample */, 531 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 532 | 00E356EF1AD99517003FC87E /* detoxexampleTests */, 533 | 83CBBA001A601CBA00E9B192 /* Products */, 534 | ); 535 | indentWidth = 2; 536 | sourceTree = ""; 537 | tabWidth = 2; 538 | }; 539 | 83CBBA001A601CBA00E9B192 /* Products */ = { 540 | isa = PBXGroup; 541 | children = ( 542 | 13B07F961A680F5B00A75B9A /* detoxexample.app */, 543 | 00E356EE1AD99517003FC87E /* detoxexampleTests.xctest */, 544 | 2D02E47B1E0B4A5D006451C7 /* detoxexample-tvOS.app */, 545 | 2D02E4901E0B4A5D006451C7 /* detoxexample-tvOSTests.xctest */, 546 | ); 547 | name = Products; 548 | sourceTree = ""; 549 | }; 550 | /* End PBXGroup section */ 551 | 552 | /* Begin PBXNativeTarget section */ 553 | 00E356ED1AD99517003FC87E /* detoxexampleTests */ = { 554 | isa = PBXNativeTarget; 555 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "detoxexampleTests" */; 556 | buildPhases = ( 557 | 00E356EA1AD99517003FC87E /* Sources */, 558 | 00E356EB1AD99517003FC87E /* Frameworks */, 559 | 00E356EC1AD99517003FC87E /* Resources */, 560 | ); 561 | buildRules = ( 562 | ); 563 | dependencies = ( 564 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 565 | ); 566 | name = detoxexampleTests; 567 | productName = detoxexampleTests; 568 | productReference = 00E356EE1AD99517003FC87E /* detoxexampleTests.xctest */; 569 | productType = "com.apple.product-type.bundle.unit-test"; 570 | }; 571 | 13B07F861A680F5B00A75B9A /* detoxexample */ = { 572 | isa = PBXNativeTarget; 573 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "detoxexample" */; 574 | buildPhases = ( 575 | 13B07F871A680F5B00A75B9A /* Sources */, 576 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 577 | 13B07F8E1A680F5B00A75B9A /* Resources */, 578 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 579 | ); 580 | buildRules = ( 581 | ); 582 | dependencies = ( 583 | ); 584 | name = detoxexample; 585 | productName = "Hello World"; 586 | productReference = 13B07F961A680F5B00A75B9A /* detoxexample.app */; 587 | productType = "com.apple.product-type.application"; 588 | }; 589 | 2D02E47A1E0B4A5D006451C7 /* detoxexample-tvOS */ = { 590 | isa = PBXNativeTarget; 591 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "detoxexample-tvOS" */; 592 | buildPhases = ( 593 | 2D02E4771E0B4A5D006451C7 /* Sources */, 594 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 595 | 2D02E4791E0B4A5D006451C7 /* Resources */, 596 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 597 | ); 598 | buildRules = ( 599 | ); 600 | dependencies = ( 601 | ); 602 | name = "detoxexample-tvOS"; 603 | productName = "detoxexample-tvOS"; 604 | productReference = 2D02E47B1E0B4A5D006451C7 /* detoxexample-tvOS.app */; 605 | productType = "com.apple.product-type.application"; 606 | }; 607 | 2D02E48F1E0B4A5D006451C7 /* detoxexample-tvOSTests */ = { 608 | isa = PBXNativeTarget; 609 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "detoxexample-tvOSTests" */; 610 | buildPhases = ( 611 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 612 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 613 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 614 | ); 615 | buildRules = ( 616 | ); 617 | dependencies = ( 618 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 619 | ); 620 | name = "detoxexample-tvOSTests"; 621 | productName = "detoxexample-tvOSTests"; 622 | productReference = 2D02E4901E0B4A5D006451C7 /* detoxexample-tvOSTests.xctest */; 623 | productType = "com.apple.product-type.bundle.unit-test"; 624 | }; 625 | /* End PBXNativeTarget section */ 626 | 627 | /* Begin PBXProject section */ 628 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 629 | isa = PBXProject; 630 | attributes = { 631 | LastUpgradeCheck = 0610; 632 | ORGANIZATIONNAME = Facebook; 633 | TargetAttributes = { 634 | 00E356ED1AD99517003FC87E = { 635 | CreatedOnToolsVersion = 6.2; 636 | TestTargetID = 13B07F861A680F5B00A75B9A; 637 | }; 638 | 2D02E47A1E0B4A5D006451C7 = { 639 | CreatedOnToolsVersion = 8.2.1; 640 | ProvisioningStyle = Automatic; 641 | }; 642 | 2D02E48F1E0B4A5D006451C7 = { 643 | CreatedOnToolsVersion = 8.2.1; 644 | ProvisioningStyle = Automatic; 645 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 646 | }; 647 | }; 648 | }; 649 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "detoxexample" */; 650 | compatibilityVersion = "Xcode 3.2"; 651 | developmentRegion = English; 652 | hasScannedForEncodings = 0; 653 | knownRegions = ( 654 | en, 655 | Base, 656 | ); 657 | mainGroup = 83CBB9F61A601CBA00E9B192; 658 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 659 | projectDirPath = ""; 660 | projectReferences = ( 661 | { 662 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 663 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 664 | }, 665 | { 666 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 667 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 668 | }, 669 | { 670 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 671 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 672 | }, 673 | { 674 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 675 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 676 | }, 677 | { 678 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 679 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 680 | }, 681 | { 682 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 683 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 684 | }, 685 | { 686 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 687 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 688 | }, 689 | { 690 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 691 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 692 | }, 693 | { 694 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 695 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 696 | }, 697 | { 698 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 699 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 700 | }, 701 | { 702 | ProductGroup = 146834001AC3E56700842450 /* Products */; 703 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 704 | }, 705 | ); 706 | projectRoot = ""; 707 | targets = ( 708 | 13B07F861A680F5B00A75B9A /* detoxexample */, 709 | 00E356ED1AD99517003FC87E /* detoxexampleTests */, 710 | 2D02E47A1E0B4A5D006451C7 /* detoxexample-tvOS */, 711 | 2D02E48F1E0B4A5D006451C7 /* detoxexample-tvOSTests */, 712 | ); 713 | }; 714 | /* End PBXProject section */ 715 | 716 | /* Begin PBXReferenceProxy section */ 717 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 718 | isa = PBXReferenceProxy; 719 | fileType = archive.ar; 720 | path = libRCTActionSheet.a; 721 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 722 | sourceTree = BUILT_PRODUCTS_DIR; 723 | }; 724 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 725 | isa = PBXReferenceProxy; 726 | fileType = archive.ar; 727 | path = libRCTGeolocation.a; 728 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 729 | sourceTree = BUILT_PRODUCTS_DIR; 730 | }; 731 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 732 | isa = PBXReferenceProxy; 733 | fileType = archive.ar; 734 | path = libRCTImage.a; 735 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 736 | sourceTree = BUILT_PRODUCTS_DIR; 737 | }; 738 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 739 | isa = PBXReferenceProxy; 740 | fileType = archive.ar; 741 | path = libRCTNetwork.a; 742 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 743 | sourceTree = BUILT_PRODUCTS_DIR; 744 | }; 745 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 746 | isa = PBXReferenceProxy; 747 | fileType = archive.ar; 748 | path = libRCTVibration.a; 749 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 750 | sourceTree = BUILT_PRODUCTS_DIR; 751 | }; 752 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 753 | isa = PBXReferenceProxy; 754 | fileType = archive.ar; 755 | path = libRCTSettings.a; 756 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 757 | sourceTree = BUILT_PRODUCTS_DIR; 758 | }; 759 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 760 | isa = PBXReferenceProxy; 761 | fileType = archive.ar; 762 | path = libRCTWebSocket.a; 763 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 764 | sourceTree = BUILT_PRODUCTS_DIR; 765 | }; 766 | 146834041AC3E56700842450 /* libReact.a */ = { 767 | isa = PBXReferenceProxy; 768 | fileType = archive.ar; 769 | path = libReact.a; 770 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 771 | sourceTree = BUILT_PRODUCTS_DIR; 772 | }; 773 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 774 | isa = PBXReferenceProxy; 775 | fileType = archive.ar; 776 | path = "libRCTImage-tvOS.a"; 777 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 778 | sourceTree = BUILT_PRODUCTS_DIR; 779 | }; 780 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 781 | isa = PBXReferenceProxy; 782 | fileType = archive.ar; 783 | path = "libRCTLinking-tvOS.a"; 784 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 785 | sourceTree = BUILT_PRODUCTS_DIR; 786 | }; 787 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 788 | isa = PBXReferenceProxy; 789 | fileType = archive.ar; 790 | path = "libRCTNetwork-tvOS.a"; 791 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 792 | sourceTree = BUILT_PRODUCTS_DIR; 793 | }; 794 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 795 | isa = PBXReferenceProxy; 796 | fileType = archive.ar; 797 | path = "libRCTSettings-tvOS.a"; 798 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 799 | sourceTree = BUILT_PRODUCTS_DIR; 800 | }; 801 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 802 | isa = PBXReferenceProxy; 803 | fileType = archive.ar; 804 | path = "libRCTText-tvOS.a"; 805 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 806 | sourceTree = BUILT_PRODUCTS_DIR; 807 | }; 808 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 809 | isa = PBXReferenceProxy; 810 | fileType = archive.ar; 811 | path = "libRCTWebSocket-tvOS.a"; 812 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 813 | sourceTree = BUILT_PRODUCTS_DIR; 814 | }; 815 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 816 | isa = PBXReferenceProxy; 817 | fileType = archive.ar; 818 | path = libReact.a; 819 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 820 | sourceTree = BUILT_PRODUCTS_DIR; 821 | }; 822 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 823 | isa = PBXReferenceProxy; 824 | fileType = archive.ar; 825 | path = libyoga.a; 826 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 827 | sourceTree = BUILT_PRODUCTS_DIR; 828 | }; 829 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 830 | isa = PBXReferenceProxy; 831 | fileType = archive.ar; 832 | path = libyoga.a; 833 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 834 | sourceTree = BUILT_PRODUCTS_DIR; 835 | }; 836 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 837 | isa = PBXReferenceProxy; 838 | fileType = archive.ar; 839 | path = libcxxreact.a; 840 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 841 | sourceTree = BUILT_PRODUCTS_DIR; 842 | }; 843 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 844 | isa = PBXReferenceProxy; 845 | fileType = archive.ar; 846 | path = libcxxreact.a; 847 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 848 | sourceTree = BUILT_PRODUCTS_DIR; 849 | }; 850 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 851 | isa = PBXReferenceProxy; 852 | fileType = archive.ar; 853 | path = libjschelpers.a; 854 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 855 | sourceTree = BUILT_PRODUCTS_DIR; 856 | }; 857 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 858 | isa = PBXReferenceProxy; 859 | fileType = archive.ar; 860 | path = libjschelpers.a; 861 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 862 | sourceTree = BUILT_PRODUCTS_DIR; 863 | }; 864 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 865 | isa = PBXReferenceProxy; 866 | fileType = archive.ar; 867 | path = libRCTAnimation.a; 868 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 869 | sourceTree = BUILT_PRODUCTS_DIR; 870 | }; 871 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 872 | isa = PBXReferenceProxy; 873 | fileType = archive.ar; 874 | path = libRCTAnimation.a; 875 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 876 | sourceTree = BUILT_PRODUCTS_DIR; 877 | }; 878 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 879 | isa = PBXReferenceProxy; 880 | fileType = archive.ar; 881 | path = libRCTLinking.a; 882 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 883 | sourceTree = BUILT_PRODUCTS_DIR; 884 | }; 885 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 886 | isa = PBXReferenceProxy; 887 | fileType = archive.ar; 888 | path = libRCTText.a; 889 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 890 | sourceTree = BUILT_PRODUCTS_DIR; 891 | }; 892 | AD22032D1FD8BD9F00D8106A /* libfishhook.a */ = { 893 | isa = PBXReferenceProxy; 894 | fileType = archive.ar; 895 | path = libfishhook.a; 896 | remoteRef = AD22032C1FD8BD9F00D8106A /* PBXContainerItemProxy */; 897 | sourceTree = BUILT_PRODUCTS_DIR; 898 | }; 899 | AD22032F1FD8BD9F00D8106A /* libfishhook-tvOS.a */ = { 900 | isa = PBXReferenceProxy; 901 | fileType = archive.ar; 902 | path = "libfishhook-tvOS.a"; 903 | remoteRef = AD22032E1FD8BD9F00D8106A /* PBXContainerItemProxy */; 904 | sourceTree = BUILT_PRODUCTS_DIR; 905 | }; 906 | AD22033F1FD8BD9F00D8106A /* libthird-party.a */ = { 907 | isa = PBXReferenceProxy; 908 | fileType = archive.ar; 909 | path = "libthird-party.a"; 910 | remoteRef = AD22033E1FD8BD9F00D8106A /* PBXContainerItemProxy */; 911 | sourceTree = BUILT_PRODUCTS_DIR; 912 | }; 913 | AD2203411FD8BD9F00D8106A /* libthird-party.a */ = { 914 | isa = PBXReferenceProxy; 915 | fileType = archive.ar; 916 | path = "libthird-party.a"; 917 | remoteRef = AD2203401FD8BD9F00D8106A /* PBXContainerItemProxy */; 918 | sourceTree = BUILT_PRODUCTS_DIR; 919 | }; 920 | AD2203431FD8BD9F00D8106A /* libdouble-conversion.a */ = { 921 | isa = PBXReferenceProxy; 922 | fileType = archive.ar; 923 | path = "libdouble-conversion.a"; 924 | remoteRef = AD2203421FD8BD9F00D8106A /* PBXContainerItemProxy */; 925 | sourceTree = BUILT_PRODUCTS_DIR; 926 | }; 927 | AD2203451FD8BD9F00D8106A /* libdouble-conversion.a */ = { 928 | isa = PBXReferenceProxy; 929 | fileType = archive.ar; 930 | path = "libdouble-conversion.a"; 931 | remoteRef = AD2203441FD8BD9F00D8106A /* PBXContainerItemProxy */; 932 | sourceTree = BUILT_PRODUCTS_DIR; 933 | }; 934 | AD2203471FD8BD9F00D8106A /* libprivatedata.a */ = { 935 | isa = PBXReferenceProxy; 936 | fileType = archive.ar; 937 | path = libprivatedata.a; 938 | remoteRef = AD2203461FD8BD9F00D8106A /* PBXContainerItemProxy */; 939 | sourceTree = BUILT_PRODUCTS_DIR; 940 | }; 941 | AD2203491FD8BD9F00D8106A /* libprivatedata-tvOS.a */ = { 942 | isa = PBXReferenceProxy; 943 | fileType = archive.ar; 944 | path = "libprivatedata-tvOS.a"; 945 | remoteRef = AD2203481FD8BD9F00D8106A /* PBXContainerItemProxy */; 946 | sourceTree = BUILT_PRODUCTS_DIR; 947 | }; 948 | /* End PBXReferenceProxy section */ 949 | 950 | /* Begin PBXResourcesBuildPhase section */ 951 | 00E356EC1AD99517003FC87E /* Resources */ = { 952 | isa = PBXResourcesBuildPhase; 953 | buildActionMask = 2147483647; 954 | files = ( 955 | ); 956 | runOnlyForDeploymentPostprocessing = 0; 957 | }; 958 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 959 | isa = PBXResourcesBuildPhase; 960 | buildActionMask = 2147483647; 961 | files = ( 962 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 963 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 964 | ); 965 | runOnlyForDeploymentPostprocessing = 0; 966 | }; 967 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 968 | isa = PBXResourcesBuildPhase; 969 | buildActionMask = 2147483647; 970 | files = ( 971 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 972 | ); 973 | runOnlyForDeploymentPostprocessing = 0; 974 | }; 975 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 976 | isa = PBXResourcesBuildPhase; 977 | buildActionMask = 2147483647; 978 | files = ( 979 | ); 980 | runOnlyForDeploymentPostprocessing = 0; 981 | }; 982 | /* End PBXResourcesBuildPhase section */ 983 | 984 | /* Begin PBXShellScriptBuildPhase section */ 985 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 986 | isa = PBXShellScriptBuildPhase; 987 | buildActionMask = 2147483647; 988 | files = ( 989 | ); 990 | inputPaths = ( 991 | ); 992 | name = "Bundle React Native code and images"; 993 | outputPaths = ( 994 | ); 995 | runOnlyForDeploymentPostprocessing = 0; 996 | shellPath = /bin/sh; 997 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 998 | }; 999 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1000 | isa = PBXShellScriptBuildPhase; 1001 | buildActionMask = 2147483647; 1002 | files = ( 1003 | ); 1004 | inputPaths = ( 1005 | ); 1006 | name = "Bundle React Native Code And Images"; 1007 | outputPaths = ( 1008 | ); 1009 | runOnlyForDeploymentPostprocessing = 0; 1010 | shellPath = /bin/sh; 1011 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 1012 | }; 1013 | /* End PBXShellScriptBuildPhase section */ 1014 | 1015 | /* Begin PBXSourcesBuildPhase section */ 1016 | 00E356EA1AD99517003FC87E /* Sources */ = { 1017 | isa = PBXSourcesBuildPhase; 1018 | buildActionMask = 2147483647; 1019 | files = ( 1020 | 00E356F31AD99517003FC87E /* detoxexampleTests.m in Sources */, 1021 | ); 1022 | runOnlyForDeploymentPostprocessing = 0; 1023 | }; 1024 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1025 | isa = PBXSourcesBuildPhase; 1026 | buildActionMask = 2147483647; 1027 | files = ( 1028 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1029 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1030 | ); 1031 | runOnlyForDeploymentPostprocessing = 0; 1032 | }; 1033 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1034 | isa = PBXSourcesBuildPhase; 1035 | buildActionMask = 2147483647; 1036 | files = ( 1037 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1038 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1039 | ); 1040 | runOnlyForDeploymentPostprocessing = 0; 1041 | }; 1042 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1043 | isa = PBXSourcesBuildPhase; 1044 | buildActionMask = 2147483647; 1045 | files = ( 1046 | 2DCD954D1E0B4F2C00145EB5 /* detoxexampleTests.m in Sources */, 1047 | ); 1048 | runOnlyForDeploymentPostprocessing = 0; 1049 | }; 1050 | /* End PBXSourcesBuildPhase section */ 1051 | 1052 | /* Begin PBXTargetDependency section */ 1053 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1054 | isa = PBXTargetDependency; 1055 | target = 13B07F861A680F5B00A75B9A /* detoxexample */; 1056 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1057 | }; 1058 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1059 | isa = PBXTargetDependency; 1060 | target = 2D02E47A1E0B4A5D006451C7 /* detoxexample-tvOS */; 1061 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1062 | }; 1063 | /* End PBXTargetDependency section */ 1064 | 1065 | /* Begin PBXVariantGroup section */ 1066 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1067 | isa = PBXVariantGroup; 1068 | children = ( 1069 | 13B07FB21A68108700A75B9A /* Base */, 1070 | ); 1071 | name = LaunchScreen.xib; 1072 | path = detoxexample; 1073 | sourceTree = ""; 1074 | }; 1075 | /* End PBXVariantGroup section */ 1076 | 1077 | /* Begin XCBuildConfiguration section */ 1078 | 00E356F61AD99517003FC87E /* Debug */ = { 1079 | isa = XCBuildConfiguration; 1080 | buildSettings = { 1081 | BUNDLE_LOADER = "$(TEST_HOST)"; 1082 | GCC_PREPROCESSOR_DEFINITIONS = ( 1083 | "DEBUG=1", 1084 | "$(inherited)", 1085 | ); 1086 | INFOPLIST_FILE = detoxexampleTests/Info.plist; 1087 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1088 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1089 | OTHER_LDFLAGS = ( 1090 | "-ObjC", 1091 | "-lc++", 1092 | ); 1093 | PRODUCT_NAME = "$(TARGET_NAME)"; 1094 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/detoxexample.app/detoxexample"; 1095 | }; 1096 | name = Debug; 1097 | }; 1098 | 00E356F71AD99517003FC87E /* Release */ = { 1099 | isa = XCBuildConfiguration; 1100 | buildSettings = { 1101 | BUNDLE_LOADER = "$(TEST_HOST)"; 1102 | COPY_PHASE_STRIP = NO; 1103 | INFOPLIST_FILE = detoxexampleTests/Info.plist; 1104 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1105 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1106 | OTHER_LDFLAGS = ( 1107 | "-ObjC", 1108 | "-lc++", 1109 | ); 1110 | PRODUCT_NAME = "$(TARGET_NAME)"; 1111 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/detoxexample.app/detoxexample"; 1112 | }; 1113 | name = Release; 1114 | }; 1115 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1116 | isa = XCBuildConfiguration; 1117 | buildSettings = { 1118 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1119 | CURRENT_PROJECT_VERSION = 1; 1120 | DEAD_CODE_STRIPPING = NO; 1121 | INFOPLIST_FILE = detoxexample/Info.plist; 1122 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1123 | OTHER_LDFLAGS = ( 1124 | "$(inherited)", 1125 | "-ObjC", 1126 | "-lc++", 1127 | ); 1128 | PRODUCT_NAME = detoxexample; 1129 | VERSIONING_SYSTEM = "apple-generic"; 1130 | }; 1131 | name = Debug; 1132 | }; 1133 | 13B07F951A680F5B00A75B9A /* Release */ = { 1134 | isa = XCBuildConfiguration; 1135 | buildSettings = { 1136 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1137 | CURRENT_PROJECT_VERSION = 1; 1138 | INFOPLIST_FILE = detoxexample/Info.plist; 1139 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1140 | OTHER_LDFLAGS = ( 1141 | "$(inherited)", 1142 | "-ObjC", 1143 | "-lc++", 1144 | ); 1145 | PRODUCT_NAME = detoxexample; 1146 | VERSIONING_SYSTEM = "apple-generic"; 1147 | }; 1148 | name = Release; 1149 | }; 1150 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1151 | isa = XCBuildConfiguration; 1152 | buildSettings = { 1153 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1154 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1155 | CLANG_ANALYZER_NONNULL = YES; 1156 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1157 | CLANG_WARN_INFINITE_RECURSION = YES; 1158 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1159 | DEBUG_INFORMATION_FORMAT = dwarf; 1160 | ENABLE_TESTABILITY = YES; 1161 | GCC_NO_COMMON_BLOCKS = YES; 1162 | INFOPLIST_FILE = "detoxexample-tvOS/Info.plist"; 1163 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1164 | OTHER_LDFLAGS = ( 1165 | "-ObjC", 1166 | "-lc++", 1167 | ); 1168 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.detoxexample-tvOS"; 1169 | PRODUCT_NAME = "$(TARGET_NAME)"; 1170 | SDKROOT = appletvos; 1171 | TARGETED_DEVICE_FAMILY = 3; 1172 | TVOS_DEPLOYMENT_TARGET = 9.2; 1173 | }; 1174 | name = Debug; 1175 | }; 1176 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1177 | isa = XCBuildConfiguration; 1178 | buildSettings = { 1179 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1180 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1181 | CLANG_ANALYZER_NONNULL = YES; 1182 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1183 | CLANG_WARN_INFINITE_RECURSION = YES; 1184 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1185 | COPY_PHASE_STRIP = NO; 1186 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1187 | GCC_NO_COMMON_BLOCKS = YES; 1188 | INFOPLIST_FILE = "detoxexample-tvOS/Info.plist"; 1189 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1190 | OTHER_LDFLAGS = ( 1191 | "-ObjC", 1192 | "-lc++", 1193 | ); 1194 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.detoxexample-tvOS"; 1195 | PRODUCT_NAME = "$(TARGET_NAME)"; 1196 | SDKROOT = appletvos; 1197 | TARGETED_DEVICE_FAMILY = 3; 1198 | TVOS_DEPLOYMENT_TARGET = 9.2; 1199 | }; 1200 | name = Release; 1201 | }; 1202 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1203 | isa = XCBuildConfiguration; 1204 | buildSettings = { 1205 | BUNDLE_LOADER = "$(TEST_HOST)"; 1206 | CLANG_ANALYZER_NONNULL = YES; 1207 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1208 | CLANG_WARN_INFINITE_RECURSION = YES; 1209 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1210 | DEBUG_INFORMATION_FORMAT = dwarf; 1211 | ENABLE_TESTABILITY = YES; 1212 | GCC_NO_COMMON_BLOCKS = YES; 1213 | INFOPLIST_FILE = "detoxexample-tvOSTests/Info.plist"; 1214 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1215 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.detoxexample-tvOSTests"; 1216 | PRODUCT_NAME = "$(TARGET_NAME)"; 1217 | SDKROOT = appletvos; 1218 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/detoxexample-tvOS.app/detoxexample-tvOS"; 1219 | TVOS_DEPLOYMENT_TARGET = 10.1; 1220 | }; 1221 | name = Debug; 1222 | }; 1223 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1224 | isa = XCBuildConfiguration; 1225 | buildSettings = { 1226 | BUNDLE_LOADER = "$(TEST_HOST)"; 1227 | CLANG_ANALYZER_NONNULL = YES; 1228 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1229 | CLANG_WARN_INFINITE_RECURSION = YES; 1230 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1231 | COPY_PHASE_STRIP = NO; 1232 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1233 | GCC_NO_COMMON_BLOCKS = YES; 1234 | INFOPLIST_FILE = "detoxexample-tvOSTests/Info.plist"; 1235 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1236 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.detoxexample-tvOSTests"; 1237 | PRODUCT_NAME = "$(TARGET_NAME)"; 1238 | SDKROOT = appletvos; 1239 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/detoxexample-tvOS.app/detoxexample-tvOS"; 1240 | TVOS_DEPLOYMENT_TARGET = 10.1; 1241 | }; 1242 | name = Release; 1243 | }; 1244 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1245 | isa = XCBuildConfiguration; 1246 | buildSettings = { 1247 | ALWAYS_SEARCH_USER_PATHS = NO; 1248 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1249 | CLANG_CXX_LIBRARY = "libc++"; 1250 | CLANG_ENABLE_MODULES = YES; 1251 | CLANG_ENABLE_OBJC_ARC = YES; 1252 | CLANG_WARN_BOOL_CONVERSION = YES; 1253 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1254 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1255 | CLANG_WARN_EMPTY_BODY = YES; 1256 | CLANG_WARN_ENUM_CONVERSION = YES; 1257 | CLANG_WARN_INT_CONVERSION = YES; 1258 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1259 | CLANG_WARN_UNREACHABLE_CODE = YES; 1260 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1261 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1262 | COPY_PHASE_STRIP = NO; 1263 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1264 | GCC_C_LANGUAGE_STANDARD = gnu99; 1265 | GCC_DYNAMIC_NO_PIC = NO; 1266 | GCC_OPTIMIZATION_LEVEL = 0; 1267 | GCC_PREPROCESSOR_DEFINITIONS = ( 1268 | "DEBUG=1", 1269 | "$(inherited)", 1270 | ); 1271 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1272 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1273 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1274 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1275 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1276 | GCC_WARN_UNUSED_FUNCTION = YES; 1277 | GCC_WARN_UNUSED_VARIABLE = YES; 1278 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1279 | MTL_ENABLE_DEBUG_INFO = YES; 1280 | ONLY_ACTIVE_ARCH = YES; 1281 | SDKROOT = iphoneos; 1282 | }; 1283 | name = Debug; 1284 | }; 1285 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1286 | isa = XCBuildConfiguration; 1287 | buildSettings = { 1288 | ALWAYS_SEARCH_USER_PATHS = NO; 1289 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1290 | CLANG_CXX_LIBRARY = "libc++"; 1291 | CLANG_ENABLE_MODULES = YES; 1292 | CLANG_ENABLE_OBJC_ARC = YES; 1293 | CLANG_WARN_BOOL_CONVERSION = YES; 1294 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1295 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1296 | CLANG_WARN_EMPTY_BODY = YES; 1297 | CLANG_WARN_ENUM_CONVERSION = YES; 1298 | CLANG_WARN_INT_CONVERSION = YES; 1299 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1300 | CLANG_WARN_UNREACHABLE_CODE = YES; 1301 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1302 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1303 | COPY_PHASE_STRIP = YES; 1304 | ENABLE_NS_ASSERTIONS = NO; 1305 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1306 | GCC_C_LANGUAGE_STANDARD = gnu99; 1307 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1308 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1309 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1310 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1311 | GCC_WARN_UNUSED_FUNCTION = YES; 1312 | GCC_WARN_UNUSED_VARIABLE = YES; 1313 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1314 | MTL_ENABLE_DEBUG_INFO = NO; 1315 | SDKROOT = iphoneos; 1316 | VALIDATE_PRODUCT = YES; 1317 | }; 1318 | name = Release; 1319 | }; 1320 | /* End XCBuildConfiguration section */ 1321 | 1322 | /* Begin XCConfigurationList section */ 1323 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "detoxexampleTests" */ = { 1324 | isa = XCConfigurationList; 1325 | buildConfigurations = ( 1326 | 00E356F61AD99517003FC87E /* Debug */, 1327 | 00E356F71AD99517003FC87E /* Release */, 1328 | ); 1329 | defaultConfigurationIsVisible = 0; 1330 | defaultConfigurationName = Release; 1331 | }; 1332 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "detoxexample" */ = { 1333 | isa = XCConfigurationList; 1334 | buildConfigurations = ( 1335 | 13B07F941A680F5B00A75B9A /* Debug */, 1336 | 13B07F951A680F5B00A75B9A /* Release */, 1337 | ); 1338 | defaultConfigurationIsVisible = 0; 1339 | defaultConfigurationName = Release; 1340 | }; 1341 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "detoxexample-tvOS" */ = { 1342 | isa = XCConfigurationList; 1343 | buildConfigurations = ( 1344 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1345 | 2D02E4981E0B4A5E006451C7 /* Release */, 1346 | ); 1347 | defaultConfigurationIsVisible = 0; 1348 | defaultConfigurationName = Release; 1349 | }; 1350 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "detoxexample-tvOSTests" */ = { 1351 | isa = XCConfigurationList; 1352 | buildConfigurations = ( 1353 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1354 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1355 | ); 1356 | defaultConfigurationIsVisible = 0; 1357 | defaultConfigurationName = Release; 1358 | }; 1359 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "detoxexample" */ = { 1360 | isa = XCConfigurationList; 1361 | buildConfigurations = ( 1362 | 83CBBA201A601CBA00E9B192 /* Debug */, 1363 | 83CBBA211A601CBA00E9B192 /* Release */, 1364 | ); 1365 | defaultConfigurationIsVisible = 0; 1366 | defaultConfigurationName = Release; 1367 | }; 1368 | /* End XCConfigurationList section */ 1369 | }; 1370 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1371 | } 1372 | -------------------------------------------------------------------------------- /ios/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample-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/detoxexample.xcodeproj/xcshareddata/xcschemes/detoxexample.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/detoxexample/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/detoxexample/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:@"detoxexample" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/detoxexample/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/detoxexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/detoxexample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | detoxexample 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | 46 | NSExceptionDomains 47 | 48 | localhost 49 | 50 | NSExceptionAllowsInsecureHTTPLoads 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /ios/detoxexample/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 | -------------------------------------------------------------------------------- /ios/detoxexampleTests/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/detoxexampleTests/detoxexampleTests.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 detoxexampleTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation detoxexampleTests 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 | -------------------------------------------------------------------------------- /jest/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "react-native", 3 | "rootDir": "../", 4 | "testPathIgnorePatterns": ["__e2e__", "node_modules"] 5 | } 6 | -------------------------------------------------------------------------------- /jest/detox_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "rootDir": "../", 3 | "setupTestFrameworkScriptFile": "./jest/setup.js", 4 | "testMatch": ["**/__e2e__/**/*.js"] 5 | } 6 | -------------------------------------------------------------------------------- /jest/setup.js: -------------------------------------------------------------------------------- 1 | const detox = require('detox'); 2 | const config = require('../package.json').detox; 3 | 4 | // Set the default timeout 5 | jasmine.DEFAULT_TIMEOUT_INTERVAL = 120000; 6 | 7 | beforeAll(async () => { 8 | await detox.init(config); 9 | }); 10 | 11 | afterAll(async () => { 12 | await detox.cleanup(); 13 | }); 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "detoxexample", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test:ios:release": "detox build -c ios.sim.release && detox test -c ios.sim.release", 8 | "test:ios:debug": "detox build -c ios.sim.debug && detox test -c ios.sim.debug", 9 | "test": "jest . --config=./jest/config.json" 10 | }, 11 | "dependencies": { 12 | "react": "16.0.0", 13 | "react-native": "^0.51.0" 14 | }, 15 | "devDependencies": { 16 | "babel-jest": "20.0.3", 17 | "babel-preset-react-native": "1.9.2", 18 | "detox": "^6.0.2", 19 | "jest": "20.0.4", 20 | "react-test-renderer": "16.0.0" 21 | }, 22 | "detox": { 23 | "test-runner": "jest", 24 | "runner-config": "./jest/detox_config.json", 25 | "specs": ".", 26 | "configurations": { 27 | "ios.sim.debug": { 28 | "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/detoxexample.app", 29 | "build": "xcodebuild -project ios/detoxexample.xcodeproj -scheme detoxexample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build", 30 | "type": "ios.simulator", 31 | "name": "iPhone 8" 32 | }, 33 | "ios.sim.release": { 34 | "binaryPath": "ios/build/Build/Products/Release-iphonesimulator/detoxexample.app", 35 | "build": "xcodebuild -project ios/detoxexample.xcodeproj -scheme detoxexample -configuration Release -sdk iphonesimulator -derivedDataPath ios/build", 36 | "type": "ios.simulator", 37 | "name": "iPhone 8" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | StyleSheet, 10 | TouchableOpacity, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class App extends Component { 16 | /** 17 | * We display this dummy alert to demonstrate 18 | * a different querying of an element with Detox. 19 | * 20 | * See `__e2e__/App.test.js` for details 21 | */ 22 | displayAlert() { 23 | alert('Hey, I am an alert!'); 24 | } 25 | 26 | render() { 27 | return ( 28 | 29 | 34 | 35 | Welcome to React Native! 36 | 37 | 38 | 39 | To get started, edit index.ios.js 40 | 41 | 42 | Press Cmd+R to reload,{'\n'} 43 | Cmd+D or shake for dev menu 44 | 45 | 46 | ); 47 | } 48 | } 49 | 50 | const styles = StyleSheet.create({ 51 | container: { 52 | flex: 1, 53 | justifyContent: 'center', 54 | alignItems: 'center', 55 | backgroundColor: '#F5FCFF', 56 | }, 57 | welcome: { 58 | fontSize: 20, 59 | textAlign: 'center', 60 | margin: 10, 61 | }, 62 | instructions: { 63 | textAlign: 'center', 64 | color: '#333333', 65 | marginBottom: 5, 66 | }, 67 | }); 68 | -------------------------------------------------------------------------------- /src/__e2e__/App.test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | describe('Main', () => { 6 | it('should have welcome heading', async () => { 7 | const text = element(by.id('welcome')); 8 | 9 | await expect(text).toHaveText('Welcome to React Native!'); 10 | }); 11 | 12 | it('should display an alert', async () => { 13 | await element(by.id('alertLink')).tap(); 14 | 15 | await expect(element(by.type('UILabel')).atIndex(0)) 16 | .toHaveText('Hey, I am an alert!'); 17 | }); 18 | }) 19 | -------------------------------------------------------------------------------- /src/__tests__/App.test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @flow 3 | */ 4 | 5 | describe('Test', () => { 6 | 7 | it('should pass', () => { 8 | expect(true).toBe(true); 9 | }); 10 | 11 | }); 12 | --------------------------------------------------------------------------------