├── .gitignore ├── .merlin ├── LICENSE ├── README.md ├── RNPlayground ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .merlin ├── .watchmanconfig ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── rnplayground │ │ │ │ ├── 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 ├── app.json ├── bsconfig.json ├── copy.js ├── index.android.js ├── index.ios.js ├── ios │ ├── RNPlayground-tvOS │ │ └── Info.plist │ ├── RNPlayground-tvOSTests │ │ └── Info.plist │ ├── RNPlayground.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── RNPlayground-tvOS.xcscheme │ │ │ └── RNPlayground.xcscheme │ ├── RNPlayground │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── RNPlaygroundTests │ │ ├── Info.plist │ │ └── RNPlaygroundTests.m ├── jsconfig.json ├── package-lock.json ├── package.json ├── re │ ├── app.re │ ├── appNavigator.re │ ├── ionicons.re │ ├── sampleText.re │ ├── simpleStack.re │ └── simpleTab.re ├── react-navigation │ ├── navUtils.re │ ├── navigationActionsRe.re │ ├── navigationRe.re │ ├── reactNavigation.re │ ├── stackNavigatorRe.re │ └── tabNavigatorRe.re ├── watch.js └── yarn.lock ├── bsconfig.json ├── package-lock.json ├── package.json └── re ├── navUtils.re ├── navigationActionsRe.re ├── navigationRe.re ├── reactNavigation.re ├── stackNavigatorRe.re └── tabNavigatorRe.re /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib/ -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- 1 | ####{BSB GENERATED: NO EDIT 2 | FLG -ppx '/Users/sascha/coding/private/bs-react-navigation/node_modules/bs-platform/bin/reactjs_jsx_ppx_2.exe' 3 | FLG -ppx /Users/sascha/coding/private/bs-react-navigation/node_modules/bs-platform/bin/bsppx.exe 4 | S /Users/sascha/coding/private/bs-react-navigation/node_modules/bs-platform/lib/ocaml 5 | B /Users/sascha/coding/private/bs-react-navigation/node_modules/bs-platform/lib/ocaml 6 | FLG -nostdlib -no-alias-deps -color always -w -40+6+7+27+32..39+44+45 7 | S /Users/sascha/coding/private/bs-react-navigation/node_modules/bs-react-native/lib/ocaml 8 | B /Users/sascha/coding/private/bs-react-navigation/node_modules/bs-react-native/lib/ocaml 9 | S /Users/sascha/coding/private/bs-react-navigation/node_modules/reason-react/lib/ocaml 10 | B /Users/sascha/coding/private/bs-react-navigation/node_modules/reason-react/lib/ocaml 11 | S re 12 | B lib/bs/re 13 | ####BSB GENERATED: NO EDIT} 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sascha Timme 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Bucklescript](https://github.com/bloomberg/bucklescript) bindings for [React Navigation](https://reactnavigation.org) 2 | 3 | ### Disclaimer 4 | 5 | This is **work in progress**. Currently only `StackNavigator` works. 6 | 7 | ### More React-Native 8 | 9 | If you want to use Reason with React Native checkout [bs-react-native](https://github.com/BuckleTypes/bs-react-native). 10 | -------------------------------------------------------------------------------- /RNPlayground/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /RNPlayground/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /RNPlayground/.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 | -------------------------------------------------------------------------------- /RNPlayground/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /RNPlayground/.gitignore: -------------------------------------------------------------------------------- 1 | reactNavigation/** 2 | !reactNavigation/.keep 3 | 4 | # OSX 5 | # 6 | .DS_Store 7 | 8 | # Xcode 9 | # 10 | build/ 11 | *.pbxuser 12 | !default.pbxuser 13 | *.mode1v3 14 | !default.mode1v3 15 | *.mode2v3 16 | !default.mode2v3 17 | *.perspectivev3 18 | !default.perspectivev3 19 | xcuserdata 20 | *.xccheckout 21 | *.moved-aside 22 | DerivedData 23 | *.hmap 24 | *.ipa 25 | *.xcuserstate 26 | project.xcworkspace 27 | 28 | # Android/IntelliJ 29 | # 30 | build/ 31 | .idea 32 | .gradle 33 | local.properties 34 | *.iml 35 | 36 | # node.js 37 | # 38 | node_modules/ 39 | npm-debug.log 40 | yarn-error.log 41 | 42 | # BUCK 43 | buck-out/ 44 | \.buckd/ 45 | *.keystore 46 | 47 | # fastlane 48 | # 49 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 50 | # screenshots whenever they are needed. 51 | # For more information about the recommended setup visit: 52 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 53 | 54 | fastlane/report.xml 55 | fastlane/Preview.html 56 | fastlane/screenshots 57 | -------------------------------------------------------------------------------- /RNPlayground/.merlin: -------------------------------------------------------------------------------- 1 | ####{BSB GENERATED: NO EDIT 2 | FLG -ppx '/Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-platform/bin/reactjs_jsx_ppx_2.exe' 3 | FLG -ppx /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-platform/bin/bsppx.exe 4 | S /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-platform/lib/ocaml 5 | B /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-platform/lib/ocaml 6 | FLG -nostdlib -no-alias-deps -color always -w -40+6+7+27+32..39+44+45 7 | S /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-react-native/lib/ocaml 8 | B /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/bs-react-native/lib/ocaml 9 | S /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/reason-react/lib/ocaml 10 | B /Users/sascha/coding/private/bs-react-navigation/RNPlayground/node_modules/reason-react/lib/ocaml 11 | S react-navigation 12 | B lib/bs/react-navigation 13 | S re 14 | B lib/bs/re 15 | ####BSB GENERATED: NO EDIT} 16 | -------------------------------------------------------------------------------- /RNPlayground/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /RNPlayground/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /RNPlayground/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /RNPlayground/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.rnplayground", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.rnplayground", 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 | -------------------------------------------------------------------------------- /RNPlayground/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.rnplayground" 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 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/java/com/rnplayground/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.rnplayground; 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 "RNPlayground"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/java/com/rnplayground/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.rnplayground; 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 | -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschatimme/bs-react-navigation/658773e8997be7a8ec329a18a5a24057307b21eb/RNPlayground/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschatimme/bs-react-navigation/658773e8997be7a8ec329a18a5a24057307b21eb/RNPlayground/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschatimme/bs-react-navigation/658773e8997be7a8ec329a18a5a24057307b21eb/RNPlayground/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschatimme/bs-react-navigation/658773e8997be7a8ec329a18a5a24057307b21eb/RNPlayground/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RNPlayground 3 | 4 | -------------------------------------------------------------------------------- /RNPlayground/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saschatimme/bs-react-navigation/658773e8997be7a8ec329a18a5a24057307b21eb/RNPlayground/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNPlayground' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /RNPlayground/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNPlayground", 3 | "displayName": "RNPlayground" 4 | } -------------------------------------------------------------------------------- /RNPlayground/bsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bs-react-navigation", 3 | "reason": { 4 | "react-jsx": 2 5 | }, 6 | "bs-dependencies": ["bs-react-native", "reason-react"], 7 | "sources": [{ 8 | "dir": "re" 9 | }, { 10 | "dir": "react-navigation" 11 | }] 12 | } -------------------------------------------------------------------------------- /RNPlayground/copy.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs-extra"); 2 | const path = require("path"); 3 | 4 | fs.ensureDirSync(path.join(__dirname, "./react-navigation")); 5 | fs.copySync(path.join(__dirname, "../re"), path.join(__dirname, "./react-navigation")); 6 | -------------------------------------------------------------------------------- /RNPlayground/index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import { comp as App } from "../lib/js/RNPlayground/src/app.js"; 8 | import React from "react"; 9 | import { 10 | AppRegistry 11 | } from 'react-native'; 12 | 13 | AppRegistry.registerComponent('RNPlayground', () => App); 14 | -------------------------------------------------------------------------------- /RNPlayground/index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import { jsComponent as App } from "./lib/js/re/app.js"; 8 | import React from "react"; 9 | import { 10 | AppRegistry 11 | } from 'react-native'; 12 | 13 | console.disableYellowBox = true; 14 | 15 | AppRegistry.registerComponent('RNPlayground', () => App); 16 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground-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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground-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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground.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 /* RNPlaygroundTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNPlaygroundTests.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 | 2B2DE77D1EC9019C001E0600 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7731EC9019C001E0600 /* Entypo.ttf */; }; 26 | 2B2DE77E1EC9019C001E0600 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7741EC9019C001E0600 /* EvilIcons.ttf */; }; 27 | 2B2DE77F1EC9019C001E0600 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7751EC9019C001E0600 /* FontAwesome.ttf */; }; 28 | 2B2DE7801EC9019C001E0600 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7761EC9019C001E0600 /* Foundation.ttf */; }; 29 | 2B2DE7811EC9019C001E0600 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7771EC9019C001E0600 /* Ionicons.ttf */; }; 30 | 2B2DE7821EC9019C001E0600 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7781EC9019C001E0600 /* MaterialCommunityIcons.ttf */; }; 31 | 2B2DE7831EC9019C001E0600 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE7791EC9019C001E0600 /* MaterialIcons.ttf */; }; 32 | 2B2DE7841EC9019C001E0600 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE77A1EC9019C001E0600 /* Octicons.ttf */; }; 33 | 2B2DE7851EC9019C001E0600 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE77B1EC9019C001E0600 /* SimpleLineIcons.ttf */; }; 34 | 2B2DE7861EC9019C001E0600 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B2DE77C1EC9019C001E0600 /* Zocial.ttf */; }; 35 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 36 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 37 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 38 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 39 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 40 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 41 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 42 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 43 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 44 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 45 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 46 | 2DCD954D1E0B4F2C00145EB5 /* RNPlaygroundTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNPlaygroundTests.m */; }; 47 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 48 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 49 | /* End PBXBuildFile section */ 50 | 51 | /* Begin PBXContainerItemProxy section */ 52 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 57 | remoteInfo = RCTActionSheet; 58 | }; 59 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 64 | remoteInfo = RCTGeolocation; 65 | }; 66 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 71 | remoteInfo = RCTImage; 72 | }; 73 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 78 | remoteInfo = RCTNetwork; 79 | }; 80 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 83 | proxyType = 2; 84 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 85 | remoteInfo = RCTVibration; 86 | }; 87 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 90 | proxyType = 1; 91 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 92 | remoteInfo = RNPlayground; 93 | }; 94 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 99 | remoteInfo = RCTSettings; 100 | }; 101 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 106 | remoteInfo = RCTWebSocket; 107 | }; 108 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 111 | proxyType = 2; 112 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 113 | remoteInfo = React; 114 | }; 115 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 118 | proxyType = 1; 119 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 120 | remoteInfo = "RNPlayground-tvOS"; 121 | }; 122 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 127 | remoteInfo = "RCTImage-tvOS"; 128 | }; 129 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 132 | proxyType = 2; 133 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 134 | remoteInfo = "RCTLinking-tvOS"; 135 | }; 136 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 141 | remoteInfo = "RCTNetwork-tvOS"; 142 | }; 143 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 148 | remoteInfo = "RCTSettings-tvOS"; 149 | }; 150 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 153 | proxyType = 2; 154 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 155 | remoteInfo = "RCTText-tvOS"; 156 | }; 157 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 162 | remoteInfo = "RCTWebSocket-tvOS"; 163 | }; 164 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 169 | remoteInfo = "React-tvOS"; 170 | }; 171 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 176 | remoteInfo = yoga; 177 | }; 178 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 183 | remoteInfo = "yoga-tvOS"; 184 | }; 185 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 190 | remoteInfo = cxxreact; 191 | }; 192 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 197 | remoteInfo = "cxxreact-tvOS"; 198 | }; 199 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 204 | remoteInfo = jschelpers; 205 | }; 206 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 211 | remoteInfo = "jschelpers-tvOS"; 212 | }; 213 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 218 | remoteInfo = RCTAnimation; 219 | }; 220 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 225 | remoteInfo = "RCTAnimation-tvOS"; 226 | }; 227 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 232 | remoteInfo = RCTLinking; 233 | }; 234 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 239 | remoteInfo = RCTText; 240 | }; 241 | /* End PBXContainerItemProxy section */ 242 | 243 | /* Begin PBXFileReference section */ 244 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 245 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 246 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 247 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 248 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 249 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 250 | 00E356EE1AD99517003FC87E /* RNPlaygroundTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNPlaygroundTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 251 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 252 | 00E356F21AD99517003FC87E /* RNPlaygroundTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNPlaygroundTests.m; sourceTree = ""; }; 253 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 254 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 255 | 13B07F961A680F5B00A75B9A /* RNPlayground.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNPlayground.app; sourceTree = BUILT_PRODUCTS_DIR; }; 256 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNPlayground/AppDelegate.h; sourceTree = ""; }; 257 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RNPlayground/AppDelegate.m; sourceTree = ""; }; 258 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 259 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNPlayground/Images.xcassets; sourceTree = ""; }; 260 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNPlayground/Info.plist; sourceTree = ""; }; 261 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNPlayground/main.m; sourceTree = ""; }; 262 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 263 | 2B2DE7731EC9019C001E0600 /* Entypo.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Entypo.ttf; sourceTree = ""; }; 264 | 2B2DE7741EC9019C001E0600 /* EvilIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = EvilIcons.ttf; sourceTree = ""; }; 265 | 2B2DE7751EC9019C001E0600 /* FontAwesome.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = FontAwesome.ttf; sourceTree = ""; }; 266 | 2B2DE7761EC9019C001E0600 /* Foundation.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Foundation.ttf; sourceTree = ""; }; 267 | 2B2DE7771EC9019C001E0600 /* Ionicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ionicons.ttf; sourceTree = ""; }; 268 | 2B2DE7781EC9019C001E0600 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = MaterialCommunityIcons.ttf; sourceTree = ""; }; 269 | 2B2DE7791EC9019C001E0600 /* MaterialIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = MaterialIcons.ttf; sourceTree = ""; }; 270 | 2B2DE77A1EC9019C001E0600 /* Octicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Octicons.ttf; sourceTree = ""; }; 271 | 2B2DE77B1EC9019C001E0600 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = SimpleLineIcons.ttf; sourceTree = ""; }; 272 | 2B2DE77C1EC9019C001E0600 /* Zocial.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Zocial.ttf; sourceTree = ""; }; 273 | 2D02E47B1E0B4A5D006451C7 /* RNPlayground-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RNPlayground-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 274 | 2D02E4901E0B4A5D006451C7 /* RNPlayground-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RNPlayground-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 275 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 276 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 277 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 278 | /* End PBXFileReference section */ 279 | 280 | /* Begin PBXFrameworksBuildPhase section */ 281 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 282 | isa = PBXFrameworksBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | }; 289 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 290 | isa = PBXFrameworksBuildPhase; 291 | buildActionMask = 2147483647; 292 | files = ( 293 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 294 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 295 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 296 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 297 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 298 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 299 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 300 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 301 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 302 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 303 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | }; 307 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 308 | isa = PBXFrameworksBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 312 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 313 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 314 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 315 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 316 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 317 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 318 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 319 | ); 320 | runOnlyForDeploymentPostprocessing = 0; 321 | }; 322 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 323 | isa = PBXFrameworksBuildPhase; 324 | buildActionMask = 2147483647; 325 | files = ( 326 | ); 327 | runOnlyForDeploymentPostprocessing = 0; 328 | }; 329 | /* End PBXFrameworksBuildPhase section */ 330 | 331 | /* Begin PBXGroup section */ 332 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 333 | isa = PBXGroup; 334 | children = ( 335 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 336 | ); 337 | name = Products; 338 | sourceTree = ""; 339 | }; 340 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 341 | isa = PBXGroup; 342 | children = ( 343 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 344 | ); 345 | name = Products; 346 | sourceTree = ""; 347 | }; 348 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 349 | isa = PBXGroup; 350 | children = ( 351 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 352 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 353 | ); 354 | name = Products; 355 | sourceTree = ""; 356 | }; 357 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 358 | isa = PBXGroup; 359 | children = ( 360 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 361 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 362 | ); 363 | name = Products; 364 | sourceTree = ""; 365 | }; 366 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 367 | isa = PBXGroup; 368 | children = ( 369 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 370 | ); 371 | name = Products; 372 | sourceTree = ""; 373 | }; 374 | 00E356EF1AD99517003FC87E /* RNPlaygroundTests */ = { 375 | isa = PBXGroup; 376 | children = ( 377 | 00E356F21AD99517003FC87E /* RNPlaygroundTests.m */, 378 | 00E356F01AD99517003FC87E /* Supporting Files */, 379 | ); 380 | path = RNPlaygroundTests; 381 | sourceTree = ""; 382 | }; 383 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 384 | isa = PBXGroup; 385 | children = ( 386 | 00E356F11AD99517003FC87E /* Info.plist */, 387 | ); 388 | name = "Supporting Files"; 389 | sourceTree = ""; 390 | }; 391 | 139105B71AF99BAD00B5F7CC /* Products */ = { 392 | isa = PBXGroup; 393 | children = ( 394 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 395 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 396 | ); 397 | name = Products; 398 | sourceTree = ""; 399 | }; 400 | 139FDEE71B06529A00C62182 /* Products */ = { 401 | isa = PBXGroup; 402 | children = ( 403 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 404 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 405 | ); 406 | name = Products; 407 | sourceTree = ""; 408 | }; 409 | 13B07FAE1A68108700A75B9A /* RNPlayground */ = { 410 | isa = PBXGroup; 411 | children = ( 412 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 413 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 414 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 415 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 416 | 13B07FB61A68108700A75B9A /* Info.plist */, 417 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 418 | 13B07FB71A68108700A75B9A /* main.m */, 419 | 2B2DE7721EC9019C001E0600 /* Fonts */, 420 | ); 421 | name = RNPlayground; 422 | sourceTree = ""; 423 | }; 424 | 146834001AC3E56700842450 /* Products */ = { 425 | isa = PBXGroup; 426 | children = ( 427 | 146834041AC3E56700842450 /* libReact.a */, 428 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 429 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 430 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 431 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 432 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 433 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 434 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 435 | ); 436 | name = Products; 437 | sourceTree = ""; 438 | }; 439 | 2B2DE7721EC9019C001E0600 /* Fonts */ = { 440 | isa = PBXGroup; 441 | children = ( 442 | 2B2DE7731EC9019C001E0600 /* Entypo.ttf */, 443 | 2B2DE7741EC9019C001E0600 /* EvilIcons.ttf */, 444 | 2B2DE7751EC9019C001E0600 /* FontAwesome.ttf */, 445 | 2B2DE7761EC9019C001E0600 /* Foundation.ttf */, 446 | 2B2DE7771EC9019C001E0600 /* Ionicons.ttf */, 447 | 2B2DE7781EC9019C001E0600 /* MaterialCommunityIcons.ttf */, 448 | 2B2DE7791EC9019C001E0600 /* MaterialIcons.ttf */, 449 | 2B2DE77A1EC9019C001E0600 /* Octicons.ttf */, 450 | 2B2DE77B1EC9019C001E0600 /* SimpleLineIcons.ttf */, 451 | 2B2DE77C1EC9019C001E0600 /* Zocial.ttf */, 452 | ); 453 | name = Fonts; 454 | path = "../node_modules/react-native-vector-icons/Fonts"; 455 | sourceTree = ""; 456 | }; 457 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 458 | isa = PBXGroup; 459 | children = ( 460 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 461 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 462 | ); 463 | name = Products; 464 | sourceTree = ""; 465 | }; 466 | 78C398B11ACF4ADC00677621 /* Products */ = { 467 | isa = PBXGroup; 468 | children = ( 469 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 470 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 471 | ); 472 | name = Products; 473 | sourceTree = ""; 474 | }; 475 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 479 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 480 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 481 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 482 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 483 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 484 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 485 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 486 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 487 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 488 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 489 | ); 490 | name = Libraries; 491 | sourceTree = ""; 492 | }; 493 | 832341B11AAA6A8300B99B32 /* Products */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 497 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 498 | ); 499 | name = Products; 500 | sourceTree = ""; 501 | }; 502 | 83CBB9F61A601CBA00E9B192 = { 503 | isa = PBXGroup; 504 | children = ( 505 | 13B07FAE1A68108700A75B9A /* RNPlayground */, 506 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 507 | 00E356EF1AD99517003FC87E /* RNPlaygroundTests */, 508 | 83CBBA001A601CBA00E9B192 /* Products */, 509 | ); 510 | indentWidth = 2; 511 | sourceTree = ""; 512 | tabWidth = 2; 513 | }; 514 | 83CBBA001A601CBA00E9B192 /* Products */ = { 515 | isa = PBXGroup; 516 | children = ( 517 | 13B07F961A680F5B00A75B9A /* RNPlayground.app */, 518 | 00E356EE1AD99517003FC87E /* RNPlaygroundTests.xctest */, 519 | 2D02E47B1E0B4A5D006451C7 /* RNPlayground-tvOS.app */, 520 | 2D02E4901E0B4A5D006451C7 /* RNPlayground-tvOSTests.xctest */, 521 | ); 522 | name = Products; 523 | sourceTree = ""; 524 | }; 525 | /* End PBXGroup section */ 526 | 527 | /* Begin PBXNativeTarget section */ 528 | 00E356ED1AD99517003FC87E /* RNPlaygroundTests */ = { 529 | isa = PBXNativeTarget; 530 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNPlaygroundTests" */; 531 | buildPhases = ( 532 | 00E356EA1AD99517003FC87E /* Sources */, 533 | 00E356EB1AD99517003FC87E /* Frameworks */, 534 | 00E356EC1AD99517003FC87E /* Resources */, 535 | ); 536 | buildRules = ( 537 | ); 538 | dependencies = ( 539 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 540 | ); 541 | name = RNPlaygroundTests; 542 | productName = RNPlaygroundTests; 543 | productReference = 00E356EE1AD99517003FC87E /* RNPlaygroundTests.xctest */; 544 | productType = "com.apple.product-type.bundle.unit-test"; 545 | }; 546 | 13B07F861A680F5B00A75B9A /* RNPlayground */ = { 547 | isa = PBXNativeTarget; 548 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNPlayground" */; 549 | buildPhases = ( 550 | 13B07F871A680F5B00A75B9A /* Sources */, 551 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 552 | 13B07F8E1A680F5B00A75B9A /* Resources */, 553 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 554 | ); 555 | buildRules = ( 556 | ); 557 | dependencies = ( 558 | ); 559 | name = RNPlayground; 560 | productName = "Hello World"; 561 | productReference = 13B07F961A680F5B00A75B9A /* RNPlayground.app */; 562 | productType = "com.apple.product-type.application"; 563 | }; 564 | 2D02E47A1E0B4A5D006451C7 /* RNPlayground-tvOS */ = { 565 | isa = PBXNativeTarget; 566 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNPlayground-tvOS" */; 567 | buildPhases = ( 568 | 2D02E4771E0B4A5D006451C7 /* Sources */, 569 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 570 | 2D02E4791E0B4A5D006451C7 /* Resources */, 571 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 572 | ); 573 | buildRules = ( 574 | ); 575 | dependencies = ( 576 | ); 577 | name = "RNPlayground-tvOS"; 578 | productName = "RNPlayground-tvOS"; 579 | productReference = 2D02E47B1E0B4A5D006451C7 /* RNPlayground-tvOS.app */; 580 | productType = "com.apple.product-type.application"; 581 | }; 582 | 2D02E48F1E0B4A5D006451C7 /* RNPlayground-tvOSTests */ = { 583 | isa = PBXNativeTarget; 584 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNPlayground-tvOSTests" */; 585 | buildPhases = ( 586 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 587 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 588 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 589 | ); 590 | buildRules = ( 591 | ); 592 | dependencies = ( 593 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 594 | ); 595 | name = "RNPlayground-tvOSTests"; 596 | productName = "RNPlayground-tvOSTests"; 597 | productReference = 2D02E4901E0B4A5D006451C7 /* RNPlayground-tvOSTests.xctest */; 598 | productType = "com.apple.product-type.bundle.unit-test"; 599 | }; 600 | /* End PBXNativeTarget section */ 601 | 602 | /* Begin PBXProject section */ 603 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 604 | isa = PBXProject; 605 | attributes = { 606 | LastUpgradeCheck = 0610; 607 | ORGANIZATIONNAME = Facebook; 608 | TargetAttributes = { 609 | 00E356ED1AD99517003FC87E = { 610 | CreatedOnToolsVersion = 6.2; 611 | TestTargetID = 13B07F861A680F5B00A75B9A; 612 | }; 613 | 2D02E47A1E0B4A5D006451C7 = { 614 | CreatedOnToolsVersion = 8.2.1; 615 | ProvisioningStyle = Automatic; 616 | }; 617 | 2D02E48F1E0B4A5D006451C7 = { 618 | CreatedOnToolsVersion = 8.2.1; 619 | ProvisioningStyle = Automatic; 620 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 621 | }; 622 | }; 623 | }; 624 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNPlayground" */; 625 | compatibilityVersion = "Xcode 3.2"; 626 | developmentRegion = English; 627 | hasScannedForEncodings = 0; 628 | knownRegions = ( 629 | en, 630 | Base, 631 | ); 632 | mainGroup = 83CBB9F61A601CBA00E9B192; 633 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 634 | projectDirPath = ""; 635 | projectReferences = ( 636 | { 637 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 638 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 639 | }, 640 | { 641 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 642 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 643 | }, 644 | { 645 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 646 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 647 | }, 648 | { 649 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 650 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 651 | }, 652 | { 653 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 654 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 655 | }, 656 | { 657 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 658 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 659 | }, 660 | { 661 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 662 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 663 | }, 664 | { 665 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 666 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 667 | }, 668 | { 669 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 670 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 671 | }, 672 | { 673 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 674 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 675 | }, 676 | { 677 | ProductGroup = 146834001AC3E56700842450 /* Products */; 678 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 679 | }, 680 | ); 681 | projectRoot = ""; 682 | targets = ( 683 | 13B07F861A680F5B00A75B9A /* RNPlayground */, 684 | 00E356ED1AD99517003FC87E /* RNPlaygroundTests */, 685 | 2D02E47A1E0B4A5D006451C7 /* RNPlayground-tvOS */, 686 | 2D02E48F1E0B4A5D006451C7 /* RNPlayground-tvOSTests */, 687 | ); 688 | }; 689 | /* End PBXProject section */ 690 | 691 | /* Begin PBXReferenceProxy section */ 692 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 693 | isa = PBXReferenceProxy; 694 | fileType = archive.ar; 695 | path = libRCTActionSheet.a; 696 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 697 | sourceTree = BUILT_PRODUCTS_DIR; 698 | }; 699 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 700 | isa = PBXReferenceProxy; 701 | fileType = archive.ar; 702 | path = libRCTGeolocation.a; 703 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 704 | sourceTree = BUILT_PRODUCTS_DIR; 705 | }; 706 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 707 | isa = PBXReferenceProxy; 708 | fileType = archive.ar; 709 | path = libRCTImage.a; 710 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 711 | sourceTree = BUILT_PRODUCTS_DIR; 712 | }; 713 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 714 | isa = PBXReferenceProxy; 715 | fileType = archive.ar; 716 | path = libRCTNetwork.a; 717 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 718 | sourceTree = BUILT_PRODUCTS_DIR; 719 | }; 720 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 721 | isa = PBXReferenceProxy; 722 | fileType = archive.ar; 723 | path = libRCTVibration.a; 724 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 725 | sourceTree = BUILT_PRODUCTS_DIR; 726 | }; 727 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 728 | isa = PBXReferenceProxy; 729 | fileType = archive.ar; 730 | path = libRCTSettings.a; 731 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 732 | sourceTree = BUILT_PRODUCTS_DIR; 733 | }; 734 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 735 | isa = PBXReferenceProxy; 736 | fileType = archive.ar; 737 | path = libRCTWebSocket.a; 738 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 739 | sourceTree = BUILT_PRODUCTS_DIR; 740 | }; 741 | 146834041AC3E56700842450 /* libReact.a */ = { 742 | isa = PBXReferenceProxy; 743 | fileType = archive.ar; 744 | path = libReact.a; 745 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 746 | sourceTree = BUILT_PRODUCTS_DIR; 747 | }; 748 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 749 | isa = PBXReferenceProxy; 750 | fileType = archive.ar; 751 | path = "libRCTImage-tvOS.a"; 752 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 753 | sourceTree = BUILT_PRODUCTS_DIR; 754 | }; 755 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 756 | isa = PBXReferenceProxy; 757 | fileType = archive.ar; 758 | path = "libRCTLinking-tvOS.a"; 759 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 760 | sourceTree = BUILT_PRODUCTS_DIR; 761 | }; 762 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 763 | isa = PBXReferenceProxy; 764 | fileType = archive.ar; 765 | path = "libRCTNetwork-tvOS.a"; 766 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 767 | sourceTree = BUILT_PRODUCTS_DIR; 768 | }; 769 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 770 | isa = PBXReferenceProxy; 771 | fileType = archive.ar; 772 | path = "libRCTSettings-tvOS.a"; 773 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 774 | sourceTree = BUILT_PRODUCTS_DIR; 775 | }; 776 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 777 | isa = PBXReferenceProxy; 778 | fileType = archive.ar; 779 | path = "libRCTText-tvOS.a"; 780 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 781 | sourceTree = BUILT_PRODUCTS_DIR; 782 | }; 783 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 784 | isa = PBXReferenceProxy; 785 | fileType = archive.ar; 786 | path = "libRCTWebSocket-tvOS.a"; 787 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 788 | sourceTree = BUILT_PRODUCTS_DIR; 789 | }; 790 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 791 | isa = PBXReferenceProxy; 792 | fileType = archive.ar; 793 | path = libReact.a; 794 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 795 | sourceTree = BUILT_PRODUCTS_DIR; 796 | }; 797 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 798 | isa = PBXReferenceProxy; 799 | fileType = archive.ar; 800 | path = libyoga.a; 801 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 802 | sourceTree = BUILT_PRODUCTS_DIR; 803 | }; 804 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 805 | isa = PBXReferenceProxy; 806 | fileType = archive.ar; 807 | path = libyoga.a; 808 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 809 | sourceTree = BUILT_PRODUCTS_DIR; 810 | }; 811 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 812 | isa = PBXReferenceProxy; 813 | fileType = archive.ar; 814 | path = libcxxreact.a; 815 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 816 | sourceTree = BUILT_PRODUCTS_DIR; 817 | }; 818 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 819 | isa = PBXReferenceProxy; 820 | fileType = archive.ar; 821 | path = libcxxreact.a; 822 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 823 | sourceTree = BUILT_PRODUCTS_DIR; 824 | }; 825 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 826 | isa = PBXReferenceProxy; 827 | fileType = archive.ar; 828 | path = libjschelpers.a; 829 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 830 | sourceTree = BUILT_PRODUCTS_DIR; 831 | }; 832 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 833 | isa = PBXReferenceProxy; 834 | fileType = archive.ar; 835 | path = libjschelpers.a; 836 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 837 | sourceTree = BUILT_PRODUCTS_DIR; 838 | }; 839 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 840 | isa = PBXReferenceProxy; 841 | fileType = archive.ar; 842 | path = libRCTAnimation.a; 843 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 844 | sourceTree = BUILT_PRODUCTS_DIR; 845 | }; 846 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 847 | isa = PBXReferenceProxy; 848 | fileType = archive.ar; 849 | path = libRCTAnimation.a; 850 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 851 | sourceTree = BUILT_PRODUCTS_DIR; 852 | }; 853 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 854 | isa = PBXReferenceProxy; 855 | fileType = archive.ar; 856 | path = libRCTLinking.a; 857 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 858 | sourceTree = BUILT_PRODUCTS_DIR; 859 | }; 860 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 861 | isa = PBXReferenceProxy; 862 | fileType = archive.ar; 863 | path = libRCTText.a; 864 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 865 | sourceTree = BUILT_PRODUCTS_DIR; 866 | }; 867 | /* End PBXReferenceProxy section */ 868 | 869 | /* Begin PBXResourcesBuildPhase section */ 870 | 00E356EC1AD99517003FC87E /* Resources */ = { 871 | isa = PBXResourcesBuildPhase; 872 | buildActionMask = 2147483647; 873 | files = ( 874 | ); 875 | runOnlyForDeploymentPostprocessing = 0; 876 | }; 877 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 878 | isa = PBXResourcesBuildPhase; 879 | buildActionMask = 2147483647; 880 | files = ( 881 | 2B2DE7841EC9019C001E0600 /* Octicons.ttf in Resources */, 882 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 883 | 2B2DE77F1EC9019C001E0600 /* FontAwesome.ttf in Resources */, 884 | 2B2DE77E1EC9019C001E0600 /* EvilIcons.ttf in Resources */, 885 | 2B2DE7861EC9019C001E0600 /* Zocial.ttf in Resources */, 886 | 2B2DE7851EC9019C001E0600 /* SimpleLineIcons.ttf in Resources */, 887 | 2B2DE7811EC9019C001E0600 /* Ionicons.ttf in Resources */, 888 | 2B2DE7801EC9019C001E0600 /* Foundation.ttf in Resources */, 889 | 2B2DE7831EC9019C001E0600 /* MaterialIcons.ttf in Resources */, 890 | 2B2DE77D1EC9019C001E0600 /* Entypo.ttf in Resources */, 891 | 2B2DE7821EC9019C001E0600 /* MaterialCommunityIcons.ttf in Resources */, 892 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 893 | ); 894 | runOnlyForDeploymentPostprocessing = 0; 895 | }; 896 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 897 | isa = PBXResourcesBuildPhase; 898 | buildActionMask = 2147483647; 899 | files = ( 900 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 901 | ); 902 | runOnlyForDeploymentPostprocessing = 0; 903 | }; 904 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 905 | isa = PBXResourcesBuildPhase; 906 | buildActionMask = 2147483647; 907 | files = ( 908 | ); 909 | runOnlyForDeploymentPostprocessing = 0; 910 | }; 911 | /* End PBXResourcesBuildPhase section */ 912 | 913 | /* Begin PBXShellScriptBuildPhase section */ 914 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 915 | isa = PBXShellScriptBuildPhase; 916 | buildActionMask = 2147483647; 917 | files = ( 918 | ); 919 | inputPaths = ( 920 | ); 921 | name = "Bundle React Native code and images"; 922 | outputPaths = ( 923 | ); 924 | runOnlyForDeploymentPostprocessing = 0; 925 | shellPath = /bin/sh; 926 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 927 | }; 928 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 929 | isa = PBXShellScriptBuildPhase; 930 | buildActionMask = 2147483647; 931 | files = ( 932 | ); 933 | inputPaths = ( 934 | ); 935 | name = "Bundle React Native Code And Images"; 936 | outputPaths = ( 937 | ); 938 | runOnlyForDeploymentPostprocessing = 0; 939 | shellPath = /bin/sh; 940 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 941 | }; 942 | /* End PBXShellScriptBuildPhase section */ 943 | 944 | /* Begin PBXSourcesBuildPhase section */ 945 | 00E356EA1AD99517003FC87E /* Sources */ = { 946 | isa = PBXSourcesBuildPhase; 947 | buildActionMask = 2147483647; 948 | files = ( 949 | 00E356F31AD99517003FC87E /* RNPlaygroundTests.m in Sources */, 950 | ); 951 | runOnlyForDeploymentPostprocessing = 0; 952 | }; 953 | 13B07F871A680F5B00A75B9A /* Sources */ = { 954 | isa = PBXSourcesBuildPhase; 955 | buildActionMask = 2147483647; 956 | files = ( 957 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 958 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 959 | ); 960 | runOnlyForDeploymentPostprocessing = 0; 961 | }; 962 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 963 | isa = PBXSourcesBuildPhase; 964 | buildActionMask = 2147483647; 965 | files = ( 966 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 967 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 968 | ); 969 | runOnlyForDeploymentPostprocessing = 0; 970 | }; 971 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 972 | isa = PBXSourcesBuildPhase; 973 | buildActionMask = 2147483647; 974 | files = ( 975 | 2DCD954D1E0B4F2C00145EB5 /* RNPlaygroundTests.m in Sources */, 976 | ); 977 | runOnlyForDeploymentPostprocessing = 0; 978 | }; 979 | /* End PBXSourcesBuildPhase section */ 980 | 981 | /* Begin PBXTargetDependency section */ 982 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 983 | isa = PBXTargetDependency; 984 | target = 13B07F861A680F5B00A75B9A /* RNPlayground */; 985 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 986 | }; 987 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 988 | isa = PBXTargetDependency; 989 | target = 2D02E47A1E0B4A5D006451C7 /* RNPlayground-tvOS */; 990 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 991 | }; 992 | /* End PBXTargetDependency section */ 993 | 994 | /* Begin PBXVariantGroup section */ 995 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 996 | isa = PBXVariantGroup; 997 | children = ( 998 | 13B07FB21A68108700A75B9A /* Base */, 999 | ); 1000 | name = LaunchScreen.xib; 1001 | path = RNPlayground; 1002 | sourceTree = ""; 1003 | }; 1004 | /* End PBXVariantGroup section */ 1005 | 1006 | /* Begin XCBuildConfiguration section */ 1007 | 00E356F61AD99517003FC87E /* Debug */ = { 1008 | isa = XCBuildConfiguration; 1009 | buildSettings = { 1010 | BUNDLE_LOADER = "$(TEST_HOST)"; 1011 | GCC_PREPROCESSOR_DEFINITIONS = ( 1012 | "DEBUG=1", 1013 | "$(inherited)", 1014 | ); 1015 | INFOPLIST_FILE = RNPlaygroundTests/Info.plist; 1016 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1017 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1018 | OTHER_LDFLAGS = ( 1019 | "-ObjC", 1020 | "-lc++", 1021 | ); 1022 | PRODUCT_NAME = "$(TARGET_NAME)"; 1023 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNPlayground.app/RNPlayground"; 1024 | }; 1025 | name = Debug; 1026 | }; 1027 | 00E356F71AD99517003FC87E /* Release */ = { 1028 | isa = XCBuildConfiguration; 1029 | buildSettings = { 1030 | BUNDLE_LOADER = "$(TEST_HOST)"; 1031 | COPY_PHASE_STRIP = NO; 1032 | INFOPLIST_FILE = RNPlaygroundTests/Info.plist; 1033 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1034 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1035 | OTHER_LDFLAGS = ( 1036 | "-ObjC", 1037 | "-lc++", 1038 | ); 1039 | PRODUCT_NAME = "$(TARGET_NAME)"; 1040 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNPlayground.app/RNPlayground"; 1041 | }; 1042 | name = Release; 1043 | }; 1044 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1045 | isa = XCBuildConfiguration; 1046 | buildSettings = { 1047 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1048 | CURRENT_PROJECT_VERSION = 1; 1049 | DEAD_CODE_STRIPPING = NO; 1050 | INFOPLIST_FILE = RNPlayground/Info.plist; 1051 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1052 | OTHER_LDFLAGS = ( 1053 | "$(inherited)", 1054 | "-ObjC", 1055 | "-lc++", 1056 | ); 1057 | PRODUCT_NAME = RNPlayground; 1058 | VERSIONING_SYSTEM = "apple-generic"; 1059 | }; 1060 | name = Debug; 1061 | }; 1062 | 13B07F951A680F5B00A75B9A /* Release */ = { 1063 | isa = XCBuildConfiguration; 1064 | buildSettings = { 1065 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1066 | CURRENT_PROJECT_VERSION = 1; 1067 | INFOPLIST_FILE = RNPlayground/Info.plist; 1068 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1069 | OTHER_LDFLAGS = ( 1070 | "$(inherited)", 1071 | "-ObjC", 1072 | "-lc++", 1073 | ); 1074 | PRODUCT_NAME = RNPlayground; 1075 | VERSIONING_SYSTEM = "apple-generic"; 1076 | }; 1077 | name = Release; 1078 | }; 1079 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1080 | isa = XCBuildConfiguration; 1081 | buildSettings = { 1082 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1083 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1084 | CLANG_ANALYZER_NONNULL = YES; 1085 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1086 | CLANG_WARN_INFINITE_RECURSION = YES; 1087 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1088 | DEBUG_INFORMATION_FORMAT = dwarf; 1089 | ENABLE_TESTABILITY = YES; 1090 | GCC_NO_COMMON_BLOCKS = YES; 1091 | INFOPLIST_FILE = "RNPlayground-tvOS/Info.plist"; 1092 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1093 | OTHER_LDFLAGS = ( 1094 | "-ObjC", 1095 | "-lc++", 1096 | ); 1097 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNPlayground-tvOS"; 1098 | PRODUCT_NAME = "$(TARGET_NAME)"; 1099 | SDKROOT = appletvos; 1100 | TARGETED_DEVICE_FAMILY = 3; 1101 | TVOS_DEPLOYMENT_TARGET = 9.2; 1102 | }; 1103 | name = Debug; 1104 | }; 1105 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1106 | isa = XCBuildConfiguration; 1107 | buildSettings = { 1108 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1109 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1110 | CLANG_ANALYZER_NONNULL = YES; 1111 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1112 | CLANG_WARN_INFINITE_RECURSION = YES; 1113 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1114 | COPY_PHASE_STRIP = NO; 1115 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1116 | GCC_NO_COMMON_BLOCKS = YES; 1117 | INFOPLIST_FILE = "RNPlayground-tvOS/Info.plist"; 1118 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1119 | OTHER_LDFLAGS = ( 1120 | "-ObjC", 1121 | "-lc++", 1122 | ); 1123 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNPlayground-tvOS"; 1124 | PRODUCT_NAME = "$(TARGET_NAME)"; 1125 | SDKROOT = appletvos; 1126 | TARGETED_DEVICE_FAMILY = 3; 1127 | TVOS_DEPLOYMENT_TARGET = 9.2; 1128 | }; 1129 | name = Release; 1130 | }; 1131 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1132 | isa = XCBuildConfiguration; 1133 | buildSettings = { 1134 | BUNDLE_LOADER = "$(TEST_HOST)"; 1135 | CLANG_ANALYZER_NONNULL = YES; 1136 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1137 | CLANG_WARN_INFINITE_RECURSION = YES; 1138 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1139 | DEBUG_INFORMATION_FORMAT = dwarf; 1140 | ENABLE_TESTABILITY = YES; 1141 | GCC_NO_COMMON_BLOCKS = YES; 1142 | INFOPLIST_FILE = "RNPlayground-tvOSTests/Info.plist"; 1143 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1144 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNPlayground-tvOSTests"; 1145 | PRODUCT_NAME = "$(TARGET_NAME)"; 1146 | SDKROOT = appletvos; 1147 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNPlayground-tvOS.app/RNPlayground-tvOS"; 1148 | TVOS_DEPLOYMENT_TARGET = 10.1; 1149 | }; 1150 | name = Debug; 1151 | }; 1152 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1153 | isa = XCBuildConfiguration; 1154 | buildSettings = { 1155 | BUNDLE_LOADER = "$(TEST_HOST)"; 1156 | CLANG_ANALYZER_NONNULL = YES; 1157 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1158 | CLANG_WARN_INFINITE_RECURSION = YES; 1159 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1160 | COPY_PHASE_STRIP = NO; 1161 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1162 | GCC_NO_COMMON_BLOCKS = YES; 1163 | INFOPLIST_FILE = "RNPlayground-tvOSTests/Info.plist"; 1164 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1165 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNPlayground-tvOSTests"; 1166 | PRODUCT_NAME = "$(TARGET_NAME)"; 1167 | SDKROOT = appletvos; 1168 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNPlayground-tvOS.app/RNPlayground-tvOS"; 1169 | TVOS_DEPLOYMENT_TARGET = 10.1; 1170 | }; 1171 | name = Release; 1172 | }; 1173 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1174 | isa = XCBuildConfiguration; 1175 | buildSettings = { 1176 | ALWAYS_SEARCH_USER_PATHS = NO; 1177 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1178 | CLANG_CXX_LIBRARY = "libc++"; 1179 | CLANG_ENABLE_MODULES = YES; 1180 | CLANG_ENABLE_OBJC_ARC = YES; 1181 | CLANG_WARN_BOOL_CONVERSION = YES; 1182 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1183 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1184 | CLANG_WARN_EMPTY_BODY = YES; 1185 | CLANG_WARN_ENUM_CONVERSION = YES; 1186 | CLANG_WARN_INT_CONVERSION = YES; 1187 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1188 | CLANG_WARN_UNREACHABLE_CODE = YES; 1189 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1190 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1191 | COPY_PHASE_STRIP = NO; 1192 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1193 | GCC_C_LANGUAGE_STANDARD = gnu99; 1194 | GCC_DYNAMIC_NO_PIC = NO; 1195 | GCC_OPTIMIZATION_LEVEL = 0; 1196 | GCC_PREPROCESSOR_DEFINITIONS = ( 1197 | "DEBUG=1", 1198 | "$(inherited)", 1199 | ); 1200 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1201 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1202 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1203 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1204 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1205 | GCC_WARN_UNUSED_FUNCTION = YES; 1206 | GCC_WARN_UNUSED_VARIABLE = YES; 1207 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1208 | MTL_ENABLE_DEBUG_INFO = YES; 1209 | ONLY_ACTIVE_ARCH = YES; 1210 | SDKROOT = iphoneos; 1211 | }; 1212 | name = Debug; 1213 | }; 1214 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1215 | isa = XCBuildConfiguration; 1216 | buildSettings = { 1217 | ALWAYS_SEARCH_USER_PATHS = NO; 1218 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1219 | CLANG_CXX_LIBRARY = "libc++"; 1220 | CLANG_ENABLE_MODULES = YES; 1221 | CLANG_ENABLE_OBJC_ARC = YES; 1222 | CLANG_WARN_BOOL_CONVERSION = YES; 1223 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1224 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1225 | CLANG_WARN_EMPTY_BODY = YES; 1226 | CLANG_WARN_ENUM_CONVERSION = YES; 1227 | CLANG_WARN_INT_CONVERSION = YES; 1228 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1229 | CLANG_WARN_UNREACHABLE_CODE = YES; 1230 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1231 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1232 | COPY_PHASE_STRIP = YES; 1233 | ENABLE_NS_ASSERTIONS = NO; 1234 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1235 | GCC_C_LANGUAGE_STANDARD = gnu99; 1236 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1237 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1238 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1239 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1240 | GCC_WARN_UNUSED_FUNCTION = YES; 1241 | GCC_WARN_UNUSED_VARIABLE = YES; 1242 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1243 | MTL_ENABLE_DEBUG_INFO = NO; 1244 | SDKROOT = iphoneos; 1245 | VALIDATE_PRODUCT = YES; 1246 | }; 1247 | name = Release; 1248 | }; 1249 | /* End XCBuildConfiguration section */ 1250 | 1251 | /* Begin XCConfigurationList section */ 1252 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNPlaygroundTests" */ = { 1253 | isa = XCConfigurationList; 1254 | buildConfigurations = ( 1255 | 00E356F61AD99517003FC87E /* Debug */, 1256 | 00E356F71AD99517003FC87E /* Release */, 1257 | ); 1258 | defaultConfigurationIsVisible = 0; 1259 | defaultConfigurationName = Release; 1260 | }; 1261 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNPlayground" */ = { 1262 | isa = XCConfigurationList; 1263 | buildConfigurations = ( 1264 | 13B07F941A680F5B00A75B9A /* Debug */, 1265 | 13B07F951A680F5B00A75B9A /* Release */, 1266 | ); 1267 | defaultConfigurationIsVisible = 0; 1268 | defaultConfigurationName = Release; 1269 | }; 1270 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNPlayground-tvOS" */ = { 1271 | isa = XCConfigurationList; 1272 | buildConfigurations = ( 1273 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1274 | 2D02E4981E0B4A5E006451C7 /* Release */, 1275 | ); 1276 | defaultConfigurationIsVisible = 0; 1277 | defaultConfigurationName = Release; 1278 | }; 1279 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNPlayground-tvOSTests" */ = { 1280 | isa = XCConfigurationList; 1281 | buildConfigurations = ( 1282 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1283 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1284 | ); 1285 | defaultConfigurationIsVisible = 0; 1286 | defaultConfigurationName = Release; 1287 | }; 1288 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNPlayground" */ = { 1289 | isa = XCConfigurationList; 1290 | buildConfigurations = ( 1291 | 83CBBA201A601CBA00E9B192 /* Debug */, 1292 | 83CBBA211A601CBA00E9B192 /* Release */, 1293 | ); 1294 | defaultConfigurationIsVisible = 0; 1295 | defaultConfigurationName = Release; 1296 | }; 1297 | /* End XCConfigurationList section */ 1298 | }; 1299 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1300 | } 1301 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground.xcodeproj/xcshareddata/xcschemes/RNPlayground-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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground.xcodeproj/xcshareddata/xcschemes/RNPlayground.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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"RNPlayground" 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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/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 | } -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIAppFonts 6 | 7 | Ionicons.ttf 8 | 9 | CFBundleDevelopmentRegion 10 | en 11 | CFBundleDisplayName 12 | RNPlayground 13 | CFBundleExecutable 14 | $(EXECUTABLE_NAME) 15 | CFBundleIdentifier 16 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 17 | CFBundleInfoDictionaryVersion 18 | 6.0 19 | CFBundleName 20 | $(PRODUCT_NAME) 21 | CFBundlePackageType 22 | APPL 23 | CFBundleShortVersionString 24 | 1.0 25 | CFBundleSignature 26 | ???? 27 | CFBundleVersion 28 | 1 29 | LSRequiresIPhoneOS 30 | 31 | UILaunchStoryboardName 32 | LaunchScreen 33 | UIRequiredDeviceCapabilities 34 | 35 | armv7 36 | 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | UIViewControllerBasedStatusBarAppearance 44 | 45 | NSLocationWhenInUseUsageDescription 46 | 47 | NSAppTransportSecurity 48 | 49 | NSExceptionDomains 50 | 51 | localhost 52 | 53 | NSExceptionAllowsInsecureHTTPLoads 54 | 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlayground/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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlaygroundTests/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 | -------------------------------------------------------------------------------- /RNPlayground/ios/RNPlaygroundTests/RNPlaygroundTests.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 RNPlaygroundTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation RNPlaygroundTests 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 | -------------------------------------------------------------------------------- /RNPlayground/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "allowJs": true, 4 | "allowSyntheticDefaultImports": true 5 | }, 6 | "exclude": [ 7 | "node_modules" 8 | ] 9 | } -------------------------------------------------------------------------------- /RNPlayground/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RNPlayground", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "packager:start": "node node_modules/react-native/local-cli/cli.js start", 7 | "copy:nav": "node copy.js", 8 | "build": "npm run copy:nav && bsb -make-world", 9 | "watch:bsb": "bsb -make-world -w", 10 | "watch:nav": "node watch.js", 11 | "start": "node copy.js && bsb -make-world && npm run packager:start" 12 | }, 13 | "dependencies": { 14 | "bs-react-native": "https://github.com/BuckleTypes/bs-react-native", 15 | "react": "16.0.0-alpha.6", 16 | "react-native": "0.44.0", 17 | "react-native-vector-icons": "^4.1.1", 18 | "react-navigation": "^1.0.0-beta.9", 19 | "reason-react": "^0.2.3" 20 | }, 21 | "devDependencies": { 22 | "babel-jest": "20.0.1", 23 | "babel-preset-react-native": "1.9.2", 24 | "bs-platform": "^1.7.3", 25 | "chokidar": "^1.7.0", 26 | "fs-extra": "^3.0.1", 27 | "jest": "20.0.1", 28 | "react-test-renderer": "16.0.0-alpha.6" 29 | }, 30 | "jest": { 31 | "preset": "react-native" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /RNPlayground/re/app.re: -------------------------------------------------------------------------------- 1 | let component = ReasonReact.statelessComponent "App"; 2 | 3 | let make _children => {...component, render: fun _ => }; 4 | 5 | let jsComponent = ReasonReact.wrapReasonForJs ::component (fun _ => make [||]); -------------------------------------------------------------------------------- /RNPlayground/re/appNavigator.re: -------------------------------------------------------------------------------- 1 | open ReactNative; 2 | 3 | open ReactNavigation; 4 | 5 | let styles = 6 | StyleSheet.create 7 | Style.( 8 | { 9 | "item": 10 | style [ 11 | backgroundColor "#fff", 12 | paddingHorizontal 16., 13 | paddingVertical 12., 14 | borderBottomWidth StyleSheet.hairlineWidth, 15 | borderBottomColor "#ddd" 16 | ], 17 | "title": style [fontSize 16., fontWeight `bold, color "#444"], 18 | "header": 19 | style [ 20 | backgroundColor "#fff", 21 | paddingHorizontal 16., 22 | paddingVertical 12., 23 | borderBottomWidth StyleSheet.hairlineWidth, 24 | borderBottomColor "#ddd", 25 | margin 12. 26 | ], 27 | "description": style [fontSize 13., color "#999"] 28 | } 29 | ); 30 | 31 | type example 'a = { 32 | name: string, 33 | description: string, 34 | screen: 'a => ReasonReact.reactElement 35 | }; 36 | 37 | let examples () => [| 38 | ( 39 | "SimpleStack", 40 | { 41 | name: "Stack Example", 42 | description: "A card stack", 43 | screen: fun _ => ReasonReact.element (SimpleStack.stackRouter screenProps::() [||]) 44 | } 45 | ) 46 | |]; 47 | 48 | let mainScreen {StackNavigator.navigation: navigation} => 49 | 50 | 51 | 52 | 53 | (ReasonReact.stringToElement "React Navigation powered by Reason") 54 | 55 | 56 | ( 57 | Array.map 58 | ( 59 | fun (routeName, {name, description}) => 60 | Navigation.navigate navigation ::routeName ())> 62 | 63 | (ReasonReact.stringToElement name) 64 | (ReasonReact.stringToElement description) 65 | 66 | 67 | ) 68 | (examples ()) |> ReasonReact.arrayToElement 69 | ) 70 | ; 71 | 72 | let exampleRoutes () => 73 | Array.map (fun (routeName, {screen}) => (routeName, StackNavigator.route ::screen ())) (examples ()) |> Array.to_list; 74 | 75 | let config = 76 | Some (StackNavigator.config initialRouteName::"Index" headerMode::`none () mode::`modal); 77 | 78 | let navigator = 79 | StackNavigator.create 80 | StackNavigator.(routes [("Index", route screen::mainScreen ()), ...exampleRoutes ()]) config; 81 | 82 | let make children => navigator screenProps::() children; -------------------------------------------------------------------------------- /RNPlayground/re/ionicons.re: -------------------------------------------------------------------------------- 1 | external reactClass : ReasonReact.reactClass = 2 | "default" [@@bs.module "react-native-vector-icons/Ionicons"]; 3 | 4 | let make 5 | name::(name: string) 6 | size::(size: int) 7 | style::(style: option ReactNative.Style.t)=? 8 | children => 9 | ReasonReact.wrapJsForReason 10 | ::reactClass 11 | props::{"name": name, "size": size, "style": Js.Undefined.from_opt style} 12 | children; -------------------------------------------------------------------------------- /RNPlayground/re/sampleText.re: -------------------------------------------------------------------------------- 1 | let make ::value children => 2 | ReactNative.Text.make style::ReactNative.Style.(style [margin 14.]) ::value children; -------------------------------------------------------------------------------- /RNPlayground/re/simpleStack.re: -------------------------------------------------------------------------------- 1 | open ReactNative; 2 | 3 | open ReactNavigation; 4 | 5 | /*type screenProps = unit;*/ 6 | type mode = 7 | | Editing 8 | | NotEditing; 9 | 10 | /*type params = {. mode : mode, name : string};*/ 11 | let myNavScreen navigation banner::(banner: string) => 12 | 13 | 14 |