├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── __tests__ └── index.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── app │ │ │ ├── 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 ├── index.ejs ├── index.js ├── index.web.js ├── ios ├── app-tvOS │ └── Info.plist ├── app-tvOSTests │ └── Info.plist ├── app.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── app-tvOS.xcscheme │ │ └── app.xcscheme ├── app │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── appTests │ ├── Info.plist │ └── appTests.m ├── package.json ├── readme.md ├── src ├── index.js ├── store │ ├── action │ │ └── app.js │ ├── actions.js │ ├── index.js │ └── reducers │ │ ├── app.js │ │ └── index.js └── typeDefinition.js ├── webpack.config.js ├── webpack.devserver.js ├── webpack.vendor.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "loose": true, 7 | "modules": false, 8 | "targets": { 9 | "browsers": "last 2 chrome versions" 10 | } 11 | } 12 | ], 13 | "react-native" 14 | ], 15 | "plugins": [ 16 | ["transform-class-properties", { "loose": true }], 17 | "transform-decorators-legacy" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb", 4 | "plugins": [ 5 | "react", 6 | "flowtype" 7 | ], 8 | "rules": { 9 | "func-names": ["error", "never"], 10 | "no-tabs": "off", 11 | "global-require": "off", 12 | "no-shadow": "off", 13 | "key-spacing": "off", 14 | "no-param-reassign": "off", 15 | "no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"], 16 | "one-var": "off", 17 | "eol-last": "off", 18 | "comma-dangle": "off", 19 | "indent": [2, "tab"], 20 | "array-bracket-spacing": "off", 21 | "object-property-newline": "off", 22 | "no-unused-expressions": "warn", 23 | "no-unused-vars": "warn", 24 | "no-else-return": "off", 25 | "no-use-before-define": "off", 26 | "arrow-body-style": "off", 27 | "one-var-declaration-per-line": "off", 28 | "import/no-extraneous-dependencies": "off", 29 | "import/no-named-as-default": "off", 30 | "import/prefer-default-export": "off", 31 | "react/require-default-props": "off", 32 | "react/forbid-prop-types": "off", 33 | "react/sort-comp": "off", 34 | "react/no-unused-prop-types": "off", 35 | "react/no-array-index-key": "off", 36 | "react/prefer-stateless-function": "off", 37 | "react/jsx-filename-extension": "off", 38 | "react/jsx-indent-props": "off", 39 | "react/jsx-wrap-multilines": "off", 40 | "react/jsx-indent": "off", 41 | "react/jsx-closing-bracket-location": "off", 42 | "react/jsx-closing-tag-location": "off", 43 | "react/jsx-space-before-closing": "off", 44 | "react/jsx-tag-spacing": "off" 45 | }, 46 | "globals": { 47 | "localStorage": true, 48 | "window": true, 49 | "Paho": true, 50 | "Headers": true, 51 | "fetch": true, 52 | "document": true 53 | } 54 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | 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' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | unsafe.enable_getters_and_setters=true 54 | 55 | [version] 56 | ^0.61.0 57 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | #Web 6 | web 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 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import App from '../src'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/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.app", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.app", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion 25 98 | buildToolsVersion "25.0.2" 99 | 100 | defaultConfig { 101 | applicationId "com.app" 102 | minSdkVersion 16 103 | targetSdkVersion 25 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile fileTree(dir: "libs", include: ["*.jar"]) 141 | compile "com.android.support:appcompat-v7:23.0.1" 142 | compile "com.facebook.react:react-native:+" // From node_modules 143 | } 144 | 145 | // Run this once to be able to run the application with BUCK 146 | // puts all compile dependencies into folder libs for BUCK to use 147 | task copyDownloadableDepsToLibs(type: Copy) { 148 | from configurations.compile 149 | into 'libs' 150 | } 151 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/app/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.app; 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 "app"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/app/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.app; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage() 26 | ); 27 | } 28 | 29 | @Override 30 | protected String getJSMainModuleName() { 31 | return "index"; 32 | } 33 | }; 34 | 35 | @Override 36 | public ReactNativeHost getReactNativeHost() { 37 | return mReactNativeHost; 38 | } 39 | 40 | @Override 41 | public void onCreate() { 42 | super.onCreate(); 43 | SoLoader.init(this, /* native exopackage */ false); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | app 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudle/react-universal-ui-boilerplate/873b8beca904bd5dea77437cac76ed562768bacf/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'app' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "displayName": "app" 4 | } -------------------------------------------------------------------------------- /index.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | React Universal UI Boilerplate 5 | 6 | 7 | 8 | 9 | 28 | 29 | 30 | 31 |
32 | 33 | <%if (htmlWebpackPlugin.options.useVendorChunks) { %> 34 | 35 | <% } %> 36 | 37 | 38 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './src'; 3 | 4 | AppRegistry.registerComponent('app', () => App); -------------------------------------------------------------------------------- /index.web.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from 'react-dom'; 3 | import { AppContainer } from 'react-hot-loader'; 4 | 5 | import app from './src'; 6 | import { store } from './src/store'; 7 | import * as appActions from './src/store/action/app'; 8 | 9 | const renderApp = (Component) => { 10 | render( 11 | 12 | , document.getElementById('root')); 13 | }; 14 | 15 | renderApp(app); 16 | 17 | if (module.hot) { 18 | module.hot.accept('./src', () => { 19 | const nextApp = require('./src').default; 20 | renderApp(nextApp); 21 | 22 | /* Beautiful workaround: 23 | Force update unrelated modules in the next execution loop. */ 24 | setTimeout(() => store.dispatch(appActions.increaseCounter()), 0); 25 | }); 26 | } -------------------------------------------------------------------------------- /ios/app-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/app-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/app.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 /* appTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* appTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 26 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 27 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 28 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 29 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 30 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 31 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 32 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 33 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 34 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 35 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 36 | 2DCD954D1E0B4F2C00145EB5 /* appTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* appTests.m */; }; 37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | /* End PBXBuildFile section */ 41 | 42 | /* Begin PBXContainerItemProxy section */ 43 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 46 | proxyType = 2; 47 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 48 | remoteInfo = RCTActionSheet; 49 | }; 50 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 51 | isa = PBXContainerItemProxy; 52 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 53 | proxyType = 2; 54 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 55 | remoteInfo = RCTGeolocation; 56 | }; 57 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 58 | isa = PBXContainerItemProxy; 59 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 60 | proxyType = 2; 61 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 62 | remoteInfo = RCTImage; 63 | }; 64 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 69 | remoteInfo = RCTNetwork; 70 | }; 71 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 76 | remoteInfo = RCTVibration; 77 | }; 78 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 81 | proxyType = 1; 82 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 83 | remoteInfo = app; 84 | }; 85 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 90 | remoteInfo = RCTSettings; 91 | }; 92 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 97 | remoteInfo = RCTWebSocket; 98 | }; 99 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 104 | remoteInfo = React; 105 | }; 106 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 109 | proxyType = 1; 110 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 111 | remoteInfo = "app-tvOS"; 112 | }; 113 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 118 | remoteInfo = "RCTBlob-tvOS"; 119 | }; 120 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 123 | proxyType = 2; 124 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 125 | remoteInfo = fishhook; 126 | }; 127 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 130 | proxyType = 2; 131 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 132 | remoteInfo = "fishhook-tvOS"; 133 | }; 134 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 137 | proxyType = 2; 138 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 139 | remoteInfo = "RCTImage-tvOS"; 140 | }; 141 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 146 | remoteInfo = "RCTLinking-tvOS"; 147 | }; 148 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 153 | remoteInfo = "RCTNetwork-tvOS"; 154 | }; 155 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 160 | remoteInfo = "RCTSettings-tvOS"; 161 | }; 162 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 167 | remoteInfo = "RCTText-tvOS"; 168 | }; 169 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 174 | remoteInfo = "RCTWebSocket-tvOS"; 175 | }; 176 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 181 | remoteInfo = "React-tvOS"; 182 | }; 183 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 188 | remoteInfo = yoga; 189 | }; 190 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 195 | remoteInfo = "yoga-tvOS"; 196 | }; 197 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 202 | remoteInfo = cxxreact; 203 | }; 204 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 209 | remoteInfo = "cxxreact-tvOS"; 210 | }; 211 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 216 | remoteInfo = jschelpers; 217 | }; 218 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 223 | remoteInfo = "jschelpers-tvOS"; 224 | }; 225 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 230 | remoteInfo = RCTAnimation; 231 | }; 232 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 237 | remoteInfo = "RCTAnimation-tvOS"; 238 | }; 239 | 768D7DFF201D474D00E97329 /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 244 | remoteInfo = jsinspector; 245 | }; 246 | 768D7E01201D474D00E97329 /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 251 | remoteInfo = "jsinspector-tvOS"; 252 | }; 253 | 768D7E03201D474D00E97329 /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 258 | remoteInfo = "third-party"; 259 | }; 260 | 768D7E05201D474D00E97329 /* PBXContainerItemProxy */ = { 261 | isa = PBXContainerItemProxy; 262 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 263 | proxyType = 2; 264 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 265 | remoteInfo = "third-party-tvOS"; 266 | }; 267 | 768D7E07201D474D00E97329 /* PBXContainerItemProxy */ = { 268 | isa = PBXContainerItemProxy; 269 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 270 | proxyType = 2; 271 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 272 | remoteInfo = "double-conversion"; 273 | }; 274 | 768D7E09201D474D00E97329 /* PBXContainerItemProxy */ = { 275 | isa = PBXContainerItemProxy; 276 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 277 | proxyType = 2; 278 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 279 | remoteInfo = "double-conversion-tvOS"; 280 | }; 281 | 768D7E0B201D474D00E97329 /* PBXContainerItemProxy */ = { 282 | isa = PBXContainerItemProxy; 283 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 284 | proxyType = 2; 285 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 286 | remoteInfo = privatedata; 287 | }; 288 | 768D7E0D201D474D00E97329 /* PBXContainerItemProxy */ = { 289 | isa = PBXContainerItemProxy; 290 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 291 | proxyType = 2; 292 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 293 | remoteInfo = "privatedata-tvOS"; 294 | }; 295 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 296 | isa = PBXContainerItemProxy; 297 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 298 | proxyType = 2; 299 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 300 | remoteInfo = RCTLinking; 301 | }; 302 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 303 | isa = PBXContainerItemProxy; 304 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 305 | proxyType = 2; 306 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 307 | remoteInfo = RCTText; 308 | }; 309 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 310 | isa = PBXContainerItemProxy; 311 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 312 | proxyType = 2; 313 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 314 | remoteInfo = RCTBlob; 315 | }; 316 | /* End PBXContainerItemProxy section */ 317 | 318 | /* Begin PBXFileReference section */ 319 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 320 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 321 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 322 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 323 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 324 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 325 | 00E356EE1AD99517003FC87E /* appTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = appTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 326 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 327 | 00E356F21AD99517003FC87E /* appTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = appTests.m; sourceTree = ""; }; 328 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 329 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 330 | 13B07F961A680F5B00A75B9A /* app.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = app.app; sourceTree = BUILT_PRODUCTS_DIR; }; 331 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = app/AppDelegate.h; sourceTree = ""; }; 332 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = app/AppDelegate.m; sourceTree = ""; }; 333 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 334 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = app/Images.xcassets; sourceTree = ""; }; 335 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = app/Info.plist; sourceTree = ""; }; 336 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = app/main.m; sourceTree = ""; }; 337 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 338 | 2D02E47B1E0B4A5D006451C7 /* app-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "app-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 339 | 2D02E4901E0B4A5D006451C7 /* app-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "app-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 340 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 341 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 342 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 343 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 344 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 345 | /* End PBXFileReference section */ 346 | 347 | /* Begin PBXFrameworksBuildPhase section */ 348 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 349 | isa = PBXFrameworksBuildPhase; 350 | buildActionMask = 2147483647; 351 | files = ( 352 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 357 | isa = PBXFrameworksBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 361 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 362 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 363 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 364 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 365 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 366 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 367 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 368 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 369 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 370 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 371 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 372 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | }; 376 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 377 | isa = PBXFrameworksBuildPhase; 378 | buildActionMask = 2147483647; 379 | files = ( 380 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 381 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 382 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 383 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 384 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 385 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 386 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 387 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 388 | ); 389 | runOnlyForDeploymentPostprocessing = 0; 390 | }; 391 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 392 | isa = PBXFrameworksBuildPhase; 393 | buildActionMask = 2147483647; 394 | files = ( 395 | ); 396 | runOnlyForDeploymentPostprocessing = 0; 397 | }; 398 | /* End PBXFrameworksBuildPhase section */ 399 | 400 | /* Begin PBXGroup section */ 401 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 402 | isa = PBXGroup; 403 | children = ( 404 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 405 | ); 406 | name = Products; 407 | sourceTree = ""; 408 | }; 409 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 410 | isa = PBXGroup; 411 | children = ( 412 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 413 | ); 414 | name = Products; 415 | sourceTree = ""; 416 | }; 417 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 418 | isa = PBXGroup; 419 | children = ( 420 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 421 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 422 | ); 423 | name = Products; 424 | sourceTree = ""; 425 | }; 426 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 427 | isa = PBXGroup; 428 | children = ( 429 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 430 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 431 | ); 432 | name = Products; 433 | sourceTree = ""; 434 | }; 435 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 436 | isa = PBXGroup; 437 | children = ( 438 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 439 | ); 440 | name = Products; 441 | sourceTree = ""; 442 | }; 443 | 00E356EF1AD99517003FC87E /* appTests */ = { 444 | isa = PBXGroup; 445 | children = ( 446 | 00E356F21AD99517003FC87E /* appTests.m */, 447 | 00E356F01AD99517003FC87E /* Supporting Files */, 448 | ); 449 | path = appTests; 450 | sourceTree = ""; 451 | }; 452 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 453 | isa = PBXGroup; 454 | children = ( 455 | 00E356F11AD99517003FC87E /* Info.plist */, 456 | ); 457 | name = "Supporting Files"; 458 | sourceTree = ""; 459 | }; 460 | 139105B71AF99BAD00B5F7CC /* Products */ = { 461 | isa = PBXGroup; 462 | children = ( 463 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 464 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 465 | ); 466 | name = Products; 467 | sourceTree = ""; 468 | }; 469 | 139FDEE71B06529A00C62182 /* Products */ = { 470 | isa = PBXGroup; 471 | children = ( 472 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 473 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 474 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 475 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 476 | ); 477 | name = Products; 478 | sourceTree = ""; 479 | }; 480 | 13B07FAE1A68108700A75B9A /* app */ = { 481 | isa = PBXGroup; 482 | children = ( 483 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 484 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 485 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 486 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 487 | 13B07FB61A68108700A75B9A /* Info.plist */, 488 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 489 | 13B07FB71A68108700A75B9A /* main.m */, 490 | ); 491 | name = app; 492 | sourceTree = ""; 493 | }; 494 | 146834001AC3E56700842450 /* Products */ = { 495 | isa = PBXGroup; 496 | children = ( 497 | 146834041AC3E56700842450 /* libReact.a */, 498 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */, 499 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 500 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 501 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 502 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 503 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 504 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 505 | 768D7E00201D474D00E97329 /* libjsinspector.a */, 506 | 768D7E02201D474D00E97329 /* libjsinspector-tvOS.a */, 507 | 768D7E04201D474D00E97329 /* libthird-party.a */, 508 | 768D7E06201D474D00E97329 /* libthird-party.a */, 509 | 768D7E08201D474D00E97329 /* libdouble-conversion.a */, 510 | 768D7E0A201D474D00E97329 /* libdouble-conversion.a */, 511 | 768D7E0C201D474D00E97329 /* libprivatedata.a */, 512 | 768D7E0E201D474D00E97329 /* libprivatedata-tvOS.a */, 513 | ); 514 | name = Products; 515 | sourceTree = ""; 516 | }; 517 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 518 | isa = PBXGroup; 519 | children = ( 520 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 521 | ); 522 | name = Frameworks; 523 | sourceTree = ""; 524 | }; 525 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 526 | isa = PBXGroup; 527 | children = ( 528 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 529 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 530 | ); 531 | name = Products; 532 | sourceTree = ""; 533 | }; 534 | 78C398B11ACF4ADC00677621 /* Products */ = { 535 | isa = PBXGroup; 536 | children = ( 537 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 538 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 539 | ); 540 | name = Products; 541 | sourceTree = ""; 542 | }; 543 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 544 | isa = PBXGroup; 545 | children = ( 546 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 547 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 548 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 549 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 550 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 551 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 552 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 553 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 554 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 555 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 556 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 557 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 558 | ); 559 | name = Libraries; 560 | sourceTree = ""; 561 | }; 562 | 832341B11AAA6A8300B99B32 /* Products */ = { 563 | isa = PBXGroup; 564 | children = ( 565 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 566 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 567 | ); 568 | name = Products; 569 | sourceTree = ""; 570 | }; 571 | 83CBB9F61A601CBA00E9B192 = { 572 | isa = PBXGroup; 573 | children = ( 574 | 13B07FAE1A68108700A75B9A /* app */, 575 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 576 | 00E356EF1AD99517003FC87E /* appTests */, 577 | 83CBBA001A601CBA00E9B192 /* Products */, 578 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 579 | ); 580 | indentWidth = 2; 581 | sourceTree = ""; 582 | tabWidth = 2; 583 | usesTabs = 0; 584 | }; 585 | 83CBBA001A601CBA00E9B192 /* Products */ = { 586 | isa = PBXGroup; 587 | children = ( 588 | 13B07F961A680F5B00A75B9A /* app.app */, 589 | 00E356EE1AD99517003FC87E /* appTests.xctest */, 590 | 2D02E47B1E0B4A5D006451C7 /* app-tvOS.app */, 591 | 2D02E4901E0B4A5D006451C7 /* app-tvOSTests.xctest */, 592 | ); 593 | name = Products; 594 | sourceTree = ""; 595 | }; 596 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 597 | isa = PBXGroup; 598 | children = ( 599 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 600 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 601 | ); 602 | name = Products; 603 | sourceTree = ""; 604 | }; 605 | /* End PBXGroup section */ 606 | 607 | /* Begin PBXNativeTarget section */ 608 | 00E356ED1AD99517003FC87E /* appTests */ = { 609 | isa = PBXNativeTarget; 610 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "appTests" */; 611 | buildPhases = ( 612 | 00E356EA1AD99517003FC87E /* Sources */, 613 | 00E356EB1AD99517003FC87E /* Frameworks */, 614 | 00E356EC1AD99517003FC87E /* Resources */, 615 | ); 616 | buildRules = ( 617 | ); 618 | dependencies = ( 619 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 620 | ); 621 | name = appTests; 622 | productName = appTests; 623 | productReference = 00E356EE1AD99517003FC87E /* appTests.xctest */; 624 | productType = "com.apple.product-type.bundle.unit-test"; 625 | }; 626 | 13B07F861A680F5B00A75B9A /* app */ = { 627 | isa = PBXNativeTarget; 628 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "app" */; 629 | buildPhases = ( 630 | 13B07F871A680F5B00A75B9A /* Sources */, 631 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 632 | 13B07F8E1A680F5B00A75B9A /* Resources */, 633 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 634 | ); 635 | buildRules = ( 636 | ); 637 | dependencies = ( 638 | ); 639 | name = app; 640 | productName = "Hello World"; 641 | productReference = 13B07F961A680F5B00A75B9A /* app.app */; 642 | productType = "com.apple.product-type.application"; 643 | }; 644 | 2D02E47A1E0B4A5D006451C7 /* app-tvOS */ = { 645 | isa = PBXNativeTarget; 646 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "app-tvOS" */; 647 | buildPhases = ( 648 | 2D02E4771E0B4A5D006451C7 /* Sources */, 649 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 650 | 2D02E4791E0B4A5D006451C7 /* Resources */, 651 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 652 | ); 653 | buildRules = ( 654 | ); 655 | dependencies = ( 656 | ); 657 | name = "app-tvOS"; 658 | productName = "app-tvOS"; 659 | productReference = 2D02E47B1E0B4A5D006451C7 /* app-tvOS.app */; 660 | productType = "com.apple.product-type.application"; 661 | }; 662 | 2D02E48F1E0B4A5D006451C7 /* app-tvOSTests */ = { 663 | isa = PBXNativeTarget; 664 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "app-tvOSTests" */; 665 | buildPhases = ( 666 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 667 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 668 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 669 | ); 670 | buildRules = ( 671 | ); 672 | dependencies = ( 673 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 674 | ); 675 | name = "app-tvOSTests"; 676 | productName = "app-tvOSTests"; 677 | productReference = 2D02E4901E0B4A5D006451C7 /* app-tvOSTests.xctest */; 678 | productType = "com.apple.product-type.bundle.unit-test"; 679 | }; 680 | /* End PBXNativeTarget section */ 681 | 682 | /* Begin PBXProject section */ 683 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 684 | isa = PBXProject; 685 | attributes = { 686 | LastUpgradeCheck = 0610; 687 | ORGANIZATIONNAME = Facebook; 688 | TargetAttributes = { 689 | 00E356ED1AD99517003FC87E = { 690 | CreatedOnToolsVersion = 6.2; 691 | TestTargetID = 13B07F861A680F5B00A75B9A; 692 | }; 693 | 13B07F861A680F5B00A75B9A = { 694 | DevelopmentTeam = ML9AV5SA29; 695 | }; 696 | 2D02E47A1E0B4A5D006451C7 = { 697 | CreatedOnToolsVersion = 8.2.1; 698 | ProvisioningStyle = Automatic; 699 | }; 700 | 2D02E48F1E0B4A5D006451C7 = { 701 | CreatedOnToolsVersion = 8.2.1; 702 | ProvisioningStyle = Automatic; 703 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 704 | }; 705 | }; 706 | }; 707 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "app" */; 708 | compatibilityVersion = "Xcode 3.2"; 709 | developmentRegion = English; 710 | hasScannedForEncodings = 0; 711 | knownRegions = ( 712 | en, 713 | Base, 714 | ); 715 | mainGroup = 83CBB9F61A601CBA00E9B192; 716 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 717 | projectDirPath = ""; 718 | projectReferences = ( 719 | { 720 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 721 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 722 | }, 723 | { 724 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 725 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 726 | }, 727 | { 728 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 729 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 730 | }, 731 | { 732 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 733 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 734 | }, 735 | { 736 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 737 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 738 | }, 739 | { 740 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 741 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 742 | }, 743 | { 744 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 745 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 746 | }, 747 | { 748 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 749 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 750 | }, 751 | { 752 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 753 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 754 | }, 755 | { 756 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 757 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 758 | }, 759 | { 760 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 761 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 762 | }, 763 | { 764 | ProductGroup = 146834001AC3E56700842450 /* Products */; 765 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 766 | }, 767 | ); 768 | projectRoot = ""; 769 | targets = ( 770 | 13B07F861A680F5B00A75B9A /* app */, 771 | 00E356ED1AD99517003FC87E /* appTests */, 772 | 2D02E47A1E0B4A5D006451C7 /* app-tvOS */, 773 | 2D02E48F1E0B4A5D006451C7 /* app-tvOSTests */, 774 | ); 775 | }; 776 | /* End PBXProject section */ 777 | 778 | /* Begin PBXReferenceProxy section */ 779 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 780 | isa = PBXReferenceProxy; 781 | fileType = archive.ar; 782 | path = libRCTActionSheet.a; 783 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 784 | sourceTree = BUILT_PRODUCTS_DIR; 785 | }; 786 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 787 | isa = PBXReferenceProxy; 788 | fileType = archive.ar; 789 | path = libRCTGeolocation.a; 790 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 791 | sourceTree = BUILT_PRODUCTS_DIR; 792 | }; 793 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 794 | isa = PBXReferenceProxy; 795 | fileType = archive.ar; 796 | path = libRCTImage.a; 797 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 798 | sourceTree = BUILT_PRODUCTS_DIR; 799 | }; 800 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 801 | isa = PBXReferenceProxy; 802 | fileType = archive.ar; 803 | path = libRCTNetwork.a; 804 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 805 | sourceTree = BUILT_PRODUCTS_DIR; 806 | }; 807 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 808 | isa = PBXReferenceProxy; 809 | fileType = archive.ar; 810 | path = libRCTVibration.a; 811 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 812 | sourceTree = BUILT_PRODUCTS_DIR; 813 | }; 814 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 815 | isa = PBXReferenceProxy; 816 | fileType = archive.ar; 817 | path = libRCTSettings.a; 818 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 819 | sourceTree = BUILT_PRODUCTS_DIR; 820 | }; 821 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 822 | isa = PBXReferenceProxy; 823 | fileType = archive.ar; 824 | path = libRCTWebSocket.a; 825 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 826 | sourceTree = BUILT_PRODUCTS_DIR; 827 | }; 828 | 146834041AC3E56700842450 /* libReact.a */ = { 829 | isa = PBXReferenceProxy; 830 | fileType = archive.ar; 831 | path = libReact.a; 832 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 833 | sourceTree = BUILT_PRODUCTS_DIR; 834 | }; 835 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 836 | isa = PBXReferenceProxy; 837 | fileType = archive.ar; 838 | path = "libRCTBlob-tvOS.a"; 839 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 840 | sourceTree = BUILT_PRODUCTS_DIR; 841 | }; 842 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 843 | isa = PBXReferenceProxy; 844 | fileType = archive.ar; 845 | path = libfishhook.a; 846 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 847 | sourceTree = BUILT_PRODUCTS_DIR; 848 | }; 849 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 850 | isa = PBXReferenceProxy; 851 | fileType = archive.ar; 852 | path = "libfishhook-tvOS.a"; 853 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 854 | sourceTree = BUILT_PRODUCTS_DIR; 855 | }; 856 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 857 | isa = PBXReferenceProxy; 858 | fileType = archive.ar; 859 | path = "libRCTImage-tvOS.a"; 860 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 861 | sourceTree = BUILT_PRODUCTS_DIR; 862 | }; 863 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 864 | isa = PBXReferenceProxy; 865 | fileType = archive.ar; 866 | path = "libRCTLinking-tvOS.a"; 867 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 868 | sourceTree = BUILT_PRODUCTS_DIR; 869 | }; 870 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 871 | isa = PBXReferenceProxy; 872 | fileType = archive.ar; 873 | path = "libRCTNetwork-tvOS.a"; 874 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 875 | sourceTree = BUILT_PRODUCTS_DIR; 876 | }; 877 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 878 | isa = PBXReferenceProxy; 879 | fileType = archive.ar; 880 | path = "libRCTSettings-tvOS.a"; 881 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 882 | sourceTree = BUILT_PRODUCTS_DIR; 883 | }; 884 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 885 | isa = PBXReferenceProxy; 886 | fileType = archive.ar; 887 | path = "libRCTText-tvOS.a"; 888 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 889 | sourceTree = BUILT_PRODUCTS_DIR; 890 | }; 891 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 892 | isa = PBXReferenceProxy; 893 | fileType = archive.ar; 894 | path = "libRCTWebSocket-tvOS.a"; 895 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 896 | sourceTree = BUILT_PRODUCTS_DIR; 897 | }; 898 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = { 899 | isa = PBXReferenceProxy; 900 | fileType = archive.ar; 901 | path = libReact.a; 902 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 903 | sourceTree = BUILT_PRODUCTS_DIR; 904 | }; 905 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 906 | isa = PBXReferenceProxy; 907 | fileType = archive.ar; 908 | path = libyoga.a; 909 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 910 | sourceTree = BUILT_PRODUCTS_DIR; 911 | }; 912 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 913 | isa = PBXReferenceProxy; 914 | fileType = archive.ar; 915 | path = libyoga.a; 916 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 917 | sourceTree = BUILT_PRODUCTS_DIR; 918 | }; 919 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 920 | isa = PBXReferenceProxy; 921 | fileType = archive.ar; 922 | path = libcxxreact.a; 923 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 924 | sourceTree = BUILT_PRODUCTS_DIR; 925 | }; 926 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 927 | isa = PBXReferenceProxy; 928 | fileType = archive.ar; 929 | path = libcxxreact.a; 930 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 931 | sourceTree = BUILT_PRODUCTS_DIR; 932 | }; 933 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 934 | isa = PBXReferenceProxy; 935 | fileType = archive.ar; 936 | path = libjschelpers.a; 937 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 938 | sourceTree = BUILT_PRODUCTS_DIR; 939 | }; 940 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 941 | isa = PBXReferenceProxy; 942 | fileType = archive.ar; 943 | path = libjschelpers.a; 944 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 945 | sourceTree = BUILT_PRODUCTS_DIR; 946 | }; 947 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 948 | isa = PBXReferenceProxy; 949 | fileType = archive.ar; 950 | path = libRCTAnimation.a; 951 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 952 | sourceTree = BUILT_PRODUCTS_DIR; 953 | }; 954 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 955 | isa = PBXReferenceProxy; 956 | fileType = archive.ar; 957 | path = libRCTAnimation.a; 958 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 959 | sourceTree = BUILT_PRODUCTS_DIR; 960 | }; 961 | 768D7E00201D474D00E97329 /* libjsinspector.a */ = { 962 | isa = PBXReferenceProxy; 963 | fileType = archive.ar; 964 | path = libjsinspector.a; 965 | remoteRef = 768D7DFF201D474D00E97329 /* PBXContainerItemProxy */; 966 | sourceTree = BUILT_PRODUCTS_DIR; 967 | }; 968 | 768D7E02201D474D00E97329 /* libjsinspector-tvOS.a */ = { 969 | isa = PBXReferenceProxy; 970 | fileType = archive.ar; 971 | path = "libjsinspector-tvOS.a"; 972 | remoteRef = 768D7E01201D474D00E97329 /* PBXContainerItemProxy */; 973 | sourceTree = BUILT_PRODUCTS_DIR; 974 | }; 975 | 768D7E04201D474D00E97329 /* libthird-party.a */ = { 976 | isa = PBXReferenceProxy; 977 | fileType = archive.ar; 978 | path = "libthird-party.a"; 979 | remoteRef = 768D7E03201D474D00E97329 /* PBXContainerItemProxy */; 980 | sourceTree = BUILT_PRODUCTS_DIR; 981 | }; 982 | 768D7E06201D474D00E97329 /* libthird-party.a */ = { 983 | isa = PBXReferenceProxy; 984 | fileType = archive.ar; 985 | path = "libthird-party.a"; 986 | remoteRef = 768D7E05201D474D00E97329 /* PBXContainerItemProxy */; 987 | sourceTree = BUILT_PRODUCTS_DIR; 988 | }; 989 | 768D7E08201D474D00E97329 /* libdouble-conversion.a */ = { 990 | isa = PBXReferenceProxy; 991 | fileType = archive.ar; 992 | path = "libdouble-conversion.a"; 993 | remoteRef = 768D7E07201D474D00E97329 /* PBXContainerItemProxy */; 994 | sourceTree = BUILT_PRODUCTS_DIR; 995 | }; 996 | 768D7E0A201D474D00E97329 /* libdouble-conversion.a */ = { 997 | isa = PBXReferenceProxy; 998 | fileType = archive.ar; 999 | path = "libdouble-conversion.a"; 1000 | remoteRef = 768D7E09201D474D00E97329 /* PBXContainerItemProxy */; 1001 | sourceTree = BUILT_PRODUCTS_DIR; 1002 | }; 1003 | 768D7E0C201D474D00E97329 /* libprivatedata.a */ = { 1004 | isa = PBXReferenceProxy; 1005 | fileType = archive.ar; 1006 | path = libprivatedata.a; 1007 | remoteRef = 768D7E0B201D474D00E97329 /* PBXContainerItemProxy */; 1008 | sourceTree = BUILT_PRODUCTS_DIR; 1009 | }; 1010 | 768D7E0E201D474D00E97329 /* libprivatedata-tvOS.a */ = { 1011 | isa = PBXReferenceProxy; 1012 | fileType = archive.ar; 1013 | path = "libprivatedata-tvOS.a"; 1014 | remoteRef = 768D7E0D201D474D00E97329 /* PBXContainerItemProxy */; 1015 | sourceTree = BUILT_PRODUCTS_DIR; 1016 | }; 1017 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1018 | isa = PBXReferenceProxy; 1019 | fileType = archive.ar; 1020 | path = libRCTLinking.a; 1021 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1022 | sourceTree = BUILT_PRODUCTS_DIR; 1023 | }; 1024 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1025 | isa = PBXReferenceProxy; 1026 | fileType = archive.ar; 1027 | path = libRCTText.a; 1028 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1029 | sourceTree = BUILT_PRODUCTS_DIR; 1030 | }; 1031 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1032 | isa = PBXReferenceProxy; 1033 | fileType = archive.ar; 1034 | path = libRCTBlob.a; 1035 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1036 | sourceTree = BUILT_PRODUCTS_DIR; 1037 | }; 1038 | /* End PBXReferenceProxy section */ 1039 | 1040 | /* Begin PBXResourcesBuildPhase section */ 1041 | 00E356EC1AD99517003FC87E /* Resources */ = { 1042 | isa = PBXResourcesBuildPhase; 1043 | buildActionMask = 2147483647; 1044 | files = ( 1045 | ); 1046 | runOnlyForDeploymentPostprocessing = 0; 1047 | }; 1048 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1049 | isa = PBXResourcesBuildPhase; 1050 | buildActionMask = 2147483647; 1051 | files = ( 1052 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1053 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1054 | ); 1055 | runOnlyForDeploymentPostprocessing = 0; 1056 | }; 1057 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1058 | isa = PBXResourcesBuildPhase; 1059 | buildActionMask = 2147483647; 1060 | files = ( 1061 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1062 | ); 1063 | runOnlyForDeploymentPostprocessing = 0; 1064 | }; 1065 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1066 | isa = PBXResourcesBuildPhase; 1067 | buildActionMask = 2147483647; 1068 | files = ( 1069 | ); 1070 | runOnlyForDeploymentPostprocessing = 0; 1071 | }; 1072 | /* End PBXResourcesBuildPhase section */ 1073 | 1074 | /* Begin PBXShellScriptBuildPhase section */ 1075 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1076 | isa = PBXShellScriptBuildPhase; 1077 | buildActionMask = 2147483647; 1078 | files = ( 1079 | ); 1080 | inputPaths = ( 1081 | ); 1082 | name = "Bundle React Native code and images"; 1083 | outputPaths = ( 1084 | ); 1085 | runOnlyForDeploymentPostprocessing = 0; 1086 | shellPath = /bin/sh; 1087 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1088 | }; 1089 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1090 | isa = PBXShellScriptBuildPhase; 1091 | buildActionMask = 2147483647; 1092 | files = ( 1093 | ); 1094 | inputPaths = ( 1095 | ); 1096 | name = "Bundle React Native Code And Images"; 1097 | outputPaths = ( 1098 | ); 1099 | runOnlyForDeploymentPostprocessing = 0; 1100 | shellPath = /bin/sh; 1101 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1102 | }; 1103 | /* End PBXShellScriptBuildPhase section */ 1104 | 1105 | /* Begin PBXSourcesBuildPhase section */ 1106 | 00E356EA1AD99517003FC87E /* Sources */ = { 1107 | isa = PBXSourcesBuildPhase; 1108 | buildActionMask = 2147483647; 1109 | files = ( 1110 | 00E356F31AD99517003FC87E /* appTests.m in Sources */, 1111 | ); 1112 | runOnlyForDeploymentPostprocessing = 0; 1113 | }; 1114 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1115 | isa = PBXSourcesBuildPhase; 1116 | buildActionMask = 2147483647; 1117 | files = ( 1118 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1119 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1120 | ); 1121 | runOnlyForDeploymentPostprocessing = 0; 1122 | }; 1123 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1124 | isa = PBXSourcesBuildPhase; 1125 | buildActionMask = 2147483647; 1126 | files = ( 1127 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1128 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1129 | ); 1130 | runOnlyForDeploymentPostprocessing = 0; 1131 | }; 1132 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1133 | isa = PBXSourcesBuildPhase; 1134 | buildActionMask = 2147483647; 1135 | files = ( 1136 | 2DCD954D1E0B4F2C00145EB5 /* appTests.m in Sources */, 1137 | ); 1138 | runOnlyForDeploymentPostprocessing = 0; 1139 | }; 1140 | /* End PBXSourcesBuildPhase section */ 1141 | 1142 | /* Begin PBXTargetDependency section */ 1143 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1144 | isa = PBXTargetDependency; 1145 | target = 13B07F861A680F5B00A75B9A /* app */; 1146 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1147 | }; 1148 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1149 | isa = PBXTargetDependency; 1150 | target = 2D02E47A1E0B4A5D006451C7 /* app-tvOS */; 1151 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1152 | }; 1153 | /* End PBXTargetDependency section */ 1154 | 1155 | /* Begin PBXVariantGroup section */ 1156 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1157 | isa = PBXVariantGroup; 1158 | children = ( 1159 | 13B07FB21A68108700A75B9A /* Base */, 1160 | ); 1161 | name = LaunchScreen.xib; 1162 | path = app; 1163 | sourceTree = ""; 1164 | }; 1165 | /* End PBXVariantGroup section */ 1166 | 1167 | /* Begin XCBuildConfiguration section */ 1168 | 00E356F61AD99517003FC87E /* Debug */ = { 1169 | isa = XCBuildConfiguration; 1170 | buildSettings = { 1171 | BUNDLE_LOADER = "$(TEST_HOST)"; 1172 | GCC_PREPROCESSOR_DEFINITIONS = ( 1173 | "DEBUG=1", 1174 | "$(inherited)", 1175 | ); 1176 | INFOPLIST_FILE = appTests/Info.plist; 1177 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1178 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1179 | OTHER_LDFLAGS = ( 1180 | "-ObjC", 1181 | "-lc++", 1182 | ); 1183 | PRODUCT_NAME = "$(TARGET_NAME)"; 1184 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app.app/app"; 1185 | }; 1186 | name = Debug; 1187 | }; 1188 | 00E356F71AD99517003FC87E /* Release */ = { 1189 | isa = XCBuildConfiguration; 1190 | buildSettings = { 1191 | BUNDLE_LOADER = "$(TEST_HOST)"; 1192 | COPY_PHASE_STRIP = NO; 1193 | INFOPLIST_FILE = appTests/Info.plist; 1194 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1195 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1196 | OTHER_LDFLAGS = ( 1197 | "-ObjC", 1198 | "-lc++", 1199 | ); 1200 | PRODUCT_NAME = "$(TARGET_NAME)"; 1201 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app.app/app"; 1202 | }; 1203 | name = Release; 1204 | }; 1205 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1206 | isa = XCBuildConfiguration; 1207 | buildSettings = { 1208 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1209 | CURRENT_PROJECT_VERSION = 1; 1210 | DEAD_CODE_STRIPPING = NO; 1211 | DEVELOPMENT_TEAM = ML9AV5SA29; 1212 | INFOPLIST_FILE = app/Info.plist; 1213 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1214 | OTHER_LDFLAGS = ( 1215 | "$(inherited)", 1216 | "-ObjC", 1217 | "-lc++", 1218 | ); 1219 | PRODUCT_NAME = app; 1220 | VERSIONING_SYSTEM = "apple-generic"; 1221 | }; 1222 | name = Debug; 1223 | }; 1224 | 13B07F951A680F5B00A75B9A /* Release */ = { 1225 | isa = XCBuildConfiguration; 1226 | buildSettings = { 1227 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1228 | CURRENT_PROJECT_VERSION = 1; 1229 | DEVELOPMENT_TEAM = ML9AV5SA29; 1230 | INFOPLIST_FILE = app/Info.plist; 1231 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1232 | OTHER_LDFLAGS = ( 1233 | "$(inherited)", 1234 | "-ObjC", 1235 | "-lc++", 1236 | ); 1237 | PRODUCT_NAME = app; 1238 | VERSIONING_SYSTEM = "apple-generic"; 1239 | }; 1240 | name = Release; 1241 | }; 1242 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1243 | isa = XCBuildConfiguration; 1244 | buildSettings = { 1245 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1246 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1247 | CLANG_ANALYZER_NONNULL = YES; 1248 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1249 | CLANG_WARN_INFINITE_RECURSION = YES; 1250 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1251 | DEBUG_INFORMATION_FORMAT = dwarf; 1252 | ENABLE_TESTABILITY = YES; 1253 | GCC_NO_COMMON_BLOCKS = YES; 1254 | INFOPLIST_FILE = "app-tvOS/Info.plist"; 1255 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1256 | OTHER_LDFLAGS = ( 1257 | "-ObjC", 1258 | "-lc++", 1259 | ); 1260 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOS"; 1261 | PRODUCT_NAME = "$(TARGET_NAME)"; 1262 | SDKROOT = appletvos; 1263 | TARGETED_DEVICE_FAMILY = 3; 1264 | TVOS_DEPLOYMENT_TARGET = 9.2; 1265 | }; 1266 | name = Debug; 1267 | }; 1268 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1269 | isa = XCBuildConfiguration; 1270 | buildSettings = { 1271 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1272 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1273 | CLANG_ANALYZER_NONNULL = YES; 1274 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1275 | CLANG_WARN_INFINITE_RECURSION = YES; 1276 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1277 | COPY_PHASE_STRIP = NO; 1278 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1279 | GCC_NO_COMMON_BLOCKS = YES; 1280 | INFOPLIST_FILE = "app-tvOS/Info.plist"; 1281 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1282 | OTHER_LDFLAGS = ( 1283 | "-ObjC", 1284 | "-lc++", 1285 | ); 1286 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOS"; 1287 | PRODUCT_NAME = "$(TARGET_NAME)"; 1288 | SDKROOT = appletvos; 1289 | TARGETED_DEVICE_FAMILY = 3; 1290 | TVOS_DEPLOYMENT_TARGET = 9.2; 1291 | }; 1292 | name = Release; 1293 | }; 1294 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1295 | isa = XCBuildConfiguration; 1296 | buildSettings = { 1297 | BUNDLE_LOADER = "$(TEST_HOST)"; 1298 | CLANG_ANALYZER_NONNULL = YES; 1299 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1300 | CLANG_WARN_INFINITE_RECURSION = YES; 1301 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1302 | DEBUG_INFORMATION_FORMAT = dwarf; 1303 | ENABLE_TESTABILITY = YES; 1304 | GCC_NO_COMMON_BLOCKS = YES; 1305 | INFOPLIST_FILE = "app-tvOSTests/Info.plist"; 1306 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1307 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOSTests"; 1308 | PRODUCT_NAME = "$(TARGET_NAME)"; 1309 | SDKROOT = appletvos; 1310 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app-tvOS.app/app-tvOS"; 1311 | TVOS_DEPLOYMENT_TARGET = 10.1; 1312 | }; 1313 | name = Debug; 1314 | }; 1315 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1316 | isa = XCBuildConfiguration; 1317 | buildSettings = { 1318 | BUNDLE_LOADER = "$(TEST_HOST)"; 1319 | CLANG_ANALYZER_NONNULL = YES; 1320 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1321 | CLANG_WARN_INFINITE_RECURSION = YES; 1322 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1323 | COPY_PHASE_STRIP = NO; 1324 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1325 | GCC_NO_COMMON_BLOCKS = YES; 1326 | INFOPLIST_FILE = "app-tvOSTests/Info.plist"; 1327 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1328 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.app-tvOSTests"; 1329 | PRODUCT_NAME = "$(TARGET_NAME)"; 1330 | SDKROOT = appletvos; 1331 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/app-tvOS.app/app-tvOS"; 1332 | TVOS_DEPLOYMENT_TARGET = 10.1; 1333 | }; 1334 | name = Release; 1335 | }; 1336 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1337 | isa = XCBuildConfiguration; 1338 | buildSettings = { 1339 | ALWAYS_SEARCH_USER_PATHS = NO; 1340 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1341 | CLANG_CXX_LIBRARY = "libc++"; 1342 | CLANG_ENABLE_MODULES = YES; 1343 | CLANG_ENABLE_OBJC_ARC = YES; 1344 | CLANG_WARN_BOOL_CONVERSION = YES; 1345 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1346 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1347 | CLANG_WARN_EMPTY_BODY = YES; 1348 | CLANG_WARN_ENUM_CONVERSION = YES; 1349 | CLANG_WARN_INT_CONVERSION = YES; 1350 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1351 | CLANG_WARN_UNREACHABLE_CODE = YES; 1352 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1353 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1354 | COPY_PHASE_STRIP = NO; 1355 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1356 | GCC_C_LANGUAGE_STANDARD = gnu99; 1357 | GCC_DYNAMIC_NO_PIC = NO; 1358 | GCC_OPTIMIZATION_LEVEL = 0; 1359 | GCC_PREPROCESSOR_DEFINITIONS = ( 1360 | "DEBUG=1", 1361 | "$(inherited)", 1362 | ); 1363 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1364 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1365 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1366 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1367 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1368 | GCC_WARN_UNUSED_FUNCTION = YES; 1369 | GCC_WARN_UNUSED_VARIABLE = YES; 1370 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1371 | MTL_ENABLE_DEBUG_INFO = YES; 1372 | ONLY_ACTIVE_ARCH = YES; 1373 | SDKROOT = iphoneos; 1374 | }; 1375 | name = Debug; 1376 | }; 1377 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1378 | isa = XCBuildConfiguration; 1379 | buildSettings = { 1380 | ALWAYS_SEARCH_USER_PATHS = NO; 1381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1382 | CLANG_CXX_LIBRARY = "libc++"; 1383 | CLANG_ENABLE_MODULES = YES; 1384 | CLANG_ENABLE_OBJC_ARC = YES; 1385 | CLANG_WARN_BOOL_CONVERSION = YES; 1386 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1387 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1388 | CLANG_WARN_EMPTY_BODY = YES; 1389 | CLANG_WARN_ENUM_CONVERSION = YES; 1390 | CLANG_WARN_INT_CONVERSION = YES; 1391 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1392 | CLANG_WARN_UNREACHABLE_CODE = YES; 1393 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1394 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1395 | COPY_PHASE_STRIP = YES; 1396 | ENABLE_NS_ASSERTIONS = NO; 1397 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1398 | GCC_C_LANGUAGE_STANDARD = gnu99; 1399 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1400 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1401 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1402 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1403 | GCC_WARN_UNUSED_FUNCTION = YES; 1404 | GCC_WARN_UNUSED_VARIABLE = YES; 1405 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1406 | MTL_ENABLE_DEBUG_INFO = NO; 1407 | SDKROOT = iphoneos; 1408 | VALIDATE_PRODUCT = YES; 1409 | }; 1410 | name = Release; 1411 | }; 1412 | /* End XCBuildConfiguration section */ 1413 | 1414 | /* Begin XCConfigurationList section */ 1415 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "appTests" */ = { 1416 | isa = XCConfigurationList; 1417 | buildConfigurations = ( 1418 | 00E356F61AD99517003FC87E /* Debug */, 1419 | 00E356F71AD99517003FC87E /* Release */, 1420 | ); 1421 | defaultConfigurationIsVisible = 0; 1422 | defaultConfigurationName = Release; 1423 | }; 1424 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "app" */ = { 1425 | isa = XCConfigurationList; 1426 | buildConfigurations = ( 1427 | 13B07F941A680F5B00A75B9A /* Debug */, 1428 | 13B07F951A680F5B00A75B9A /* Release */, 1429 | ); 1430 | defaultConfigurationIsVisible = 0; 1431 | defaultConfigurationName = Release; 1432 | }; 1433 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "app-tvOS" */ = { 1434 | isa = XCConfigurationList; 1435 | buildConfigurations = ( 1436 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1437 | 2D02E4981E0B4A5E006451C7 /* Release */, 1438 | ); 1439 | defaultConfigurationIsVisible = 0; 1440 | defaultConfigurationName = Release; 1441 | }; 1442 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "app-tvOSTests" */ = { 1443 | isa = XCConfigurationList; 1444 | buildConfigurations = ( 1445 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1446 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1447 | ); 1448 | defaultConfigurationIsVisible = 0; 1449 | defaultConfigurationName = Release; 1450 | }; 1451 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "app" */ = { 1452 | isa = XCConfigurationList; 1453 | buildConfigurations = ( 1454 | 83CBBA201A601CBA00E9B192 /* Debug */, 1455 | 83CBBA211A601CBA00E9B192 /* Release */, 1456 | ); 1457 | defaultConfigurationIsVisible = 0; 1458 | defaultConfigurationName = Release; 1459 | }; 1460 | /* End XCConfigurationList section */ 1461 | }; 1462 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1463 | } 1464 | -------------------------------------------------------------------------------- /ios/app.xcodeproj/xcshareddata/xcschemes/app-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/app.xcodeproj/xcshareddata/xcschemes/app.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/app/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/app/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"app" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/app/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/app/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/app/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | app 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | 46 | NSExceptionDomains 47 | 48 | localhost 49 | 50 | NSExceptionAllowsInsecureHTTPLoads 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /ios/app/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/appTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/appTests/appTests.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 appTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation appTests 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "version": "0.1.2", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest", 8 | "vendor": "webpack --config webpack.vendor.js", 9 | "optimize": "better-npm-run optimize", 10 | "web": "node webpack.devserver", 11 | "bundle": "better-npm-run bundle", 12 | "ios": "react-native run-ios", 13 | "android": "react-native run-android" 14 | }, 15 | "betterScripts": { 16 | "bundle": { 17 | "env": { 18 | "ENV": "production" 19 | }, 20 | "command": "webpack --config webpack.config.js --progress" 21 | }, 22 | "optimize": { 23 | "env": { 24 | "OPTIMIZE": "true" 25 | }, 26 | "command": "webpack-dev-server --hot" 27 | } 28 | }, 29 | "dependencies": { 30 | "babel-polyfill": "^6.26.0", 31 | "react": "^16.2.0", 32 | "react-dom": "^16.2.0", 33 | "react-native": "0.52.2", 34 | "react-native-drawer": "^2.3.0", 35 | "react-native-web": "^0.5.4", 36 | "react-universal-ui": "^0.2.14", 37 | "universal-vector-icons": "^4.4.1" 38 | }, 39 | "devDependencies": { 40 | "babel-cli": "^6.24.1", 41 | "babel-core": "^6.26.0", 42 | "babel-eslint": "^8.2.1", 43 | "babel-jest": "22.1.0", 44 | "babel-loader": "^7.1.2", 45 | "babel-plugin-transform-class-properties": "^6.24.1", 46 | "babel-plugin-transform-decorators-legacy": "^1.3.4", 47 | "babel-preset-env": "^1.6.1", 48 | "babel-preset-react-native": "^4.0.0", 49 | "better-npm-run": "^0.1.0", 50 | "colors": "^1.1.2", 51 | "eslint": "^4.16.0", 52 | "eslint-config-airbnb": "^16.1.0", 53 | "eslint-loader": "^1.7.1", 54 | "eslint-plugin-flowtype": "^2.42.0", 55 | "eslint-plugin-import": "^2.8.0", 56 | "eslint-plugin-jsx-a11y": "^6.0.3", 57 | "eslint-plugin-react": "^7.6.0", 58 | "file-loader": "^1.1.6", 59 | "html-webpack-plugin": "^2.30.1", 60 | "jest": "22.1.4", 61 | "json-loader": "^0.5.7", 62 | "progress-bar-webpack-plugin": "^1.10.0", 63 | "react-hot-loader": "3.0.0-beta.7", 64 | "react-test-renderer": "16.2.0", 65 | "redux-logger": "^3.0.6", 66 | "webpack": "^3.10.0", 67 | "webpack-dev-server": "^2.11.1" 68 | }, 69 | "jest": { 70 | "preset": "react-native" 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # React Universal UI Boilerplate 2 | 3 | [react-native-url]: https://facebook.github.io/react-native/ 4 | [react-native-web-url]: https://github.com/necolas/react-native-web 5 | [react-universal-ui-url]: https://npmjs.org/package/react-universal-ui 6 | [react-native-windows-url]: https://github.com/Microsoft/react-native-windows 7 | 8 | #### A boilerplate for cross-platform React project - which let you run your [React Native][react-native-url] App on Native Mobile (iOs, Android), Native Windows and Web (Browser). 9 | 10 | Extending [React Native][react-native-url]'s initial structure using [react-native-web][react-native-web-url] and UI components form [react-universal-ui][react-universal-ui-url]. 11 | 12 | ## New updates: 13 | - Boost up build speed (first time build massively faster) 14 | - Allow skip common chunks (`yarn web-vendor` step) which always required on `legacy` version (however it is still highly recommended to use) 15 | - Improves `cli` message, `hot-loader` for Browser `development-server` 16 | - Update to latest version of React, React Native ;) 17 | - Most up to date `iOs` and `Android` project template (by `react-native-cli`) 18 | - Official Windows support! 19 | 20 | ## Getting started 21 | ``` 22 | git clone https://github.com/cloudle/react-universal-ui-boilerplate.git 23 | cd react-universal-ui-boilerplate 24 | yarn install 25 | yarn vendor 26 | yarn web 27 | ``` 28 | 29 | ### Boost first-launch and hot-reload time! 30 | Run `yarn vendor` once before run our `yarn web` make our development server rebuild faster (should be under `200 milliseconds`)! 31 | That really save our time and brain energy :p. 32 | 33 | ##### *note: `yarn vendor` cache our common library (e.g react, react-dom) into reusable chunks, that also mean it won't get update when we install newer version of those packages (see webpack.vendor.js for more information) - and we must re-run `yarn vendor` anytime those common libraries got updated. 34 | 35 | ## Windows 36 | Structure of this boilerplate including supports to run on Windows (Native). 37 | 38 | It's pretty straight forward to add Windows build to our project (boilerplate) by follow the instruction by Microsoft [here][react-native-windows-url].. 39 | 40 | ## Full command list 41 | - `yarn vendor` build common chunks to reuse to boost our rebuild time ;) 42 | - `yarn web` launch our development server. 43 | - `yarn bundle` release our production build under `web` directory. 44 | - `yarn ios`, `yarn android` quick alias which launch our `iOs` or `Android` emulator. 45 | - `yarn test`, `yarn start` 46 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, Platform } from 'react-native'; 3 | import { utils, RuuiProvider, Button, Tooltip } from 'react-universal-ui'; 4 | import { connect, Provider } from 'react-redux'; 5 | 6 | import { store } from './store'; 7 | import * as appActions from './store/action/app'; 8 | 9 | const instructions = Platform.select({ 10 | ios: 'Press Cmd+R to reload,\n' + 11 | 'Cmd+D or shake for dev menu', 12 | android: 'Double tap R on your keyboard to reload,\n' + 13 | 'Shake or press menu button for dev menu', 14 | web: 'Command/Control+R to reload your browser :p\n' + 15 | '\nAnd in Browser, we have great advantage\nwhen using Chrome Developer Tool\ncompare to the poor native-dev-menu!', 16 | }); 17 | 18 | type Props = { 19 | counter?: string, 20 | dispatch?: Function, 21 | }; 22 | 23 | @connect(({ app }) => { 24 | return { 25 | counter: app.counter, 26 | }; 27 | }) 28 | 29 | class App extends Component { 30 | props: Props; 31 | 32 | render() { 33 | return 34 | 35 | Welcome to Universal Ui 36 | 37 | 38 | To get started, edit src/index.js 39 | 40 | 41 | {instructions} 42 | 43 |