├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── LICENSE ├── README-zh.md ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativemasonrylayout │ │ │ ├── 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 ├── example ├── index.js ├── preview.png └── test.js ├── index.js ├── ios ├── reactnativemasonrylayout-tvOS │ └── Info.plist ├── reactnativemasonrylayout-tvOSTests │ └── Info.plist ├── reactnativemasonrylayout.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactnativemasonrylayout-tvOS.xcscheme │ │ └── reactnativemasonrylayout.xcscheme ├── reactnativemasonrylayout │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactnativemasonrylayoutTests │ ├── Info.plist │ └── reactnativemasonrylayoutTests.m ├── lib └── index.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "babel-preset-react-native-stage-0/decorator-support" 4 | ], 5 | "env": { 6 | "development": { 7 | "plugins": [ 8 | "transform-react-jsx-source" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore templates for 'react-native init' 6 | /node_modules/react-native/local-cli/templates/.* 7 | 8 | ; Ignore RN jest 9 | /node_modules/react-native/jest/.* 10 | 11 | ; Ignore RNTester 12 | /node_modules/react-native/RNTester/.* 13 | 14 | ; Ignore the website subdir 15 | /node_modules/react-native/website/.* 16 | 17 | ; Ignore the Dangerfile 18 | /node_modules/react-native/danger/dangerfile.js 19 | 20 | ; Ignore Fbemitter 21 | /node_modules/fbemitter/.* 22 | 23 | ; Ignore "BUCK" generated dirs 24 | /node_modules/react-native/\.buckd/ 25 | 26 | ; Ignore unexpected extra "@providesModule" 27 | .*/node_modules/.*/node_modules/fbjs/.* 28 | 29 | ; Ignore polyfills 30 | /node_modules/react-native/Libraries/polyfills/.* 31 | 32 | ; Ignore various node_modules 33 | /node_modules/react-native-gesture-handler/.* 34 | /node_modules/expo/.* 35 | /node_modules/react-navigation/.* 36 | /node_modules/xdl/.* 37 | /node_modules/reqwest/.* 38 | /node_modules/metro-bundler/.* 39 | 40 | [include] 41 | 42 | [libs] 43 | node_modules/react-native/Libraries/react-native/react-native-interface.js 44 | node_modules/react-native/flow/ 45 | node_modules/expo/flow/ 46 | 47 | [options] 48 | emoji=true 49 | 50 | module.system=haste 51 | 52 | module.file_ext=.js 53 | module.file_ext=.jsx 54 | module.file_ext=.json 55 | module.file_ext=.ios.js 56 | 57 | munge_underscores=true 58 | 59 | 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' 60 | 61 | suppress_type=$FlowIssue 62 | suppress_type=$FlowFixMe 63 | suppress_type=$FlowFixMeProps 64 | suppress_type=$FlowFixMeState 65 | suppress_type=$FixMe 66 | 67 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\) 68 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+ 69 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 70 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 71 | 72 | unsafe.enable_getters_and_setters=true 73 | 74 | [version] 75 | ^0.56.0 76 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # expo 4 | .expo/ 5 | 6 | # dependencies 7 | /node_modules 8 | 9 | # misc 10 | .env.local 11 | .env.development.local 12 | .env.test.local 13 | .env.production.local 14 | 15 | npm-debug.log* 16 | yarn-debug.log* 17 | yarn-error.log* 18 | /.idea 19 | /android/app/build 20 | /android/build 21 | /android/.gradle 22 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Example from "./example"; 3 | import Test from "./example/test"; 4 | 5 | export default Example; 6 | -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 满远荣 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- 1 | # react-native-masonry-layout 2 | 3 | > 一个简单易用纯粹基于react-native官方组件封装的瀑布流布局组件。 4 | 5 | ## 特点 6 | * 完全自定义瀑布流 item, 包括样式的定义 7 | * 与大部分其他瀑布流组件不一样的地方在于,item的分配是有算法自动确定,选择最优列进行添加,而不是每个列一次添加一个item,避免了列与列之间高度差距过大的问题 8 | 9 | ![preview](./example/preview.png) 10 | 11 | ## 用法 12 | 13 | #### 1.安装 14 | npm 15 | ```shell 16 | $ npm install --save react-native-masonry-layout 17 | ``` 18 | yarn 19 | ```shell 20 | $ yarn add react-native-masonry-layout 21 | ``` 22 | 23 | #### 2.导入 24 | ```javascript 25 | import Masonry from 'react-native-masonry-layout'; 26 | ``` 27 | 28 | #### 3.渲染 29 | ```javascript 30 | 34 | some text 35 | } 36 | /> 37 | ``` 38 | 39 | ## 组件属性 40 | |属性|类型|描述|默认值| 41 | |-----|-----|-----|-----| 42 | | columns | number | 定义显示的列数 | 2 | 43 | | header | View | 在瀑布流之前添加view | null | 44 | | footer | View | 在瀑布流之后添加view | null | 45 | | containerStyle | ViewStyle | 定义瀑布流容器组件的样式 | null | 46 | | renderItem | func | The method used to render each item | null | 47 | | keyExtractor | func | 默认的item列表渲染时会自动选用key属性作为列表项的key,也可以通过定义此属性选择其他属性来作为key | null | 48 | #### 其他属性方法和 [ScrollView](https://reactnative.cn/docs/0.51/scrollview.html#content) 相同 49 | 50 | ## 组件方法 51 | #### addItems 52 | 添加 items 到瀑布流组件中,item的高度将自动确定,但渲染过程是单个item依次渲染。如果需要批量渲染,请使用addItemsWithHeight 53 | ```javascript 54 | this.refs.masonry.addItems([ 55 | { key:1, text:"text1" }, 56 | { key:1, text:"text1" } 57 | ]); 58 | ``` 59 | 60 | #### addItemsWithHeight 61 | 添加 items 到瀑布流组件中,item的高度也将自动确定,但需要在每个item对象的数据中添加height属性,该属性不是item渲染后的实际高度,而是作为item分配列的算法参考值。和addItems不一样的是,是批量渲染的 62 | ```javascript 63 | this.refs.masonry.addItemsWithHeight([ 64 | { key:1, text:"text1", height: 210 }, 65 | { key:1, text:"text1", height: 150 } 66 | ]); 67 | ``` 68 | 69 | #### clear 70 | 清除瀑布流数据 71 | ```javascript 72 | this.refs.masonry.clear(); 73 | ``` -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Because I no longer do development work related to ReactNative, I have no energy to continue to maintain this project. If there are interested people, I am willing to give the corresponding collaborator permissions 2 | 3 | # react-native-masonry-layout 4 | 5 | > An easy to use, pure JS react-native component to render a masonry layout for any item view 6 | 7 | #### [中文文档](./README-zh.md) 8 | 9 | ## features 10 | * Full custom item view, Including style definition 11 | * Instead of adding a item per column, the optimal arrangement is automatically determined by the algorithm. Avoid the high gap in each column 12 | 13 | ![preview](./example/preview.png) 14 | 15 | ## Usage 16 | 17 | #### 1.Install 18 | npm 19 | ```shell 20 | $ npm install --save react-native-masonry-layout 21 | ``` 22 | yarn 23 | ```shell 24 | $ yarn add react-native-masonry-layout 25 | ``` 26 | 27 | #### 2.Import 28 | ```javascript 29 | import Masonry from 'react-native-masonry-layout'; 30 | ``` 31 | 32 | #### 3.Render 33 | ```javascript 34 | 38 | some text 39 | } 40 | /> 41 | ``` 42 | 43 | ## Component Props 44 | |Props|Type|Description|Default| 45 | |-----|-----|-----|-----| 46 | | columns | number | Desired number of columns | 2 | 47 | | header | View | Add view in front of the masonry layout | null | 48 | | footer | View | Add view in behind the masonry layout | null | 49 | | containerStyle | ViewStyle | Defining the style of the container view | null | 50 | | renderItem | func | The method used to render each item | null | 51 | | keyExtractor | func | By default, the list looks for a key prop on each item and uses that for the React key. Alternatively, you can provide a custom keyExtractor prop. | null | 52 | #### Other attributes are the same as [ScrollView](http://facebook.github.io/react-native/docs/scrollview.html) 53 | 54 | ## Component Methods 55 | #### addItems 56 | Add Items to the Masonry component。The items height will be automatically calculated, and the item will be rendered one by one, and addItemsWithHeight should be used if it needs to be rendered in bulk 57 | ```javascript 58 | this.refs.masonry.addItems([ 59 | { key:1, text:"text1" }, 60 | { key:1, text:"text1" } 61 | ]); 62 | ``` 63 | 64 | #### addItemsWithHeight 65 | Add items to masonry. Item height will be automatically calculated, but height attribute must be added to every item object data. This attribute is not the actual item rendering height, but a reference value for item assignment algorithm. Unlike addItems, items is rendered in bulk. 66 | ```javascript 67 | this.refs.masonry.addItemsWithHeight([ 68 | { key:1, text:"text1", height: 210 }, 69 | { key:1, text:"text1", height: 150 } 70 | ]); 71 | ``` 72 | 73 | #### clear 74 | Clear the items of masonry. 75 | ```javascript 76 | this.refs.masonry.clear(); 77 | ``` 78 | -------------------------------------------------------------------------------- /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.reactnativemasonrylayout", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.reactnativemasonrylayout", 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 23 98 | buildToolsVersion "23.0.1" 99 | 100 | defaultConfig { 101 | applicationId "com.reactnativemasonrylayout" 102 | minSdkVersion 16 103 | targetSdkVersion 22 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile fileTree(dir: "libs", include: ["*.jar"]) 141 | compile "com.android.support:appcompat-v7:23.0.1" 142 | compile "com.facebook.react:react-native:+" // From node_modules 143 | } 144 | 145 | // Run this once to be able to run the application with BUCK 146 | // puts all compile dependencies into folder libs for BUCK to use 147 | task copyDownloadableDepsToLibs(type: Copy) { 148 | from configurations.compile 149 | into 'libs' 150 | } 151 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativemasonrylayout/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.reactnativemasonrylayout; 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 "reactnativemasonrylayout"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativemasonrylayout/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.reactnativemasonrylayout; 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/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MansonryExample 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/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/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 = 'reactnativemasonrylayout' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "sdkVersion": "25.0.0", 4 | "android": { 5 | "package": "react-native-masonry-layout-example" 6 | } 7 | }, 8 | "name": "reactnativemasonrylayout", 9 | "displayName": "MansonryExample" 10 | } -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Image, Text, View, Dimensions, RefreshControl } from "react-native"; 3 | import Masonry from "../lib"; 4 | 5 | const { width } = Dimensions.get( "window" ); 6 | const columnWidth = ( width - 10 ) / 2 - 10; 7 | 8 | export default class Example extends React.Component { 9 | constructor( props ) { 10 | super( props ); 11 | this.state = { 12 | withHeight: false, 13 | loading: false 14 | }; 15 | } 16 | 17 | componentDidMount() { 18 | this.load(); 19 | } 20 | 21 | load() { 22 | this.setState( { loading: true } ); 23 | fetch( "http://huaban.com/boards/17649987/?limit=10", { 24 | headers: { 25 | "X-Requested-With": "XMLHttpRequest" 26 | } 27 | } ).then( res => res.json() ) 28 | .then( data => { 29 | this.setState( { loading: false } ); 30 | data = data.board.pins.map( item => { 31 | return { 32 | image: "http://img.hb.aicdn.com/" + item.file.key, 33 | text: item.raw_text, 34 | key: item.file.key, 35 | height: columnWidth / item.file.width * item.file.height 36 | } 37 | } ); 38 | if ( this.state.withHeight ) { 39 | this.refs.list.addItemsWithHeight( data ); 40 | } else { 41 | this.refs.list.addItems( data ); 42 | } 43 | } ); 44 | } 45 | 46 | onScrollEnd( event ) { 47 | const scrollHeight = Math.floor( event.nativeEvent.contentOffset.y + event.nativeEvent.layoutMeasurement.height ); 48 | const height = Math.floor( event.nativeEvent.contentSize.height ); 49 | if ( scrollHeight >= height ) { 50 | this.load(); 51 | } 52 | } 53 | 54 | render() { 55 | return 56 | } 69 | renderItem={item => 78 | 79 | {item.text} 80 | }/> 81 | 82 | {this.state.loading && 92 | 加载中 98 | } 99 | 100 | } 101 | } -------------------------------------------------------------------------------- /example/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manyuanrong/react-native-masonry-layout/10d2ab15939d4999440730a7dfe7b3a0361f067c/example/preview.png -------------------------------------------------------------------------------- /example/test.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Image, Text, View, Dimensions } from "react-native"; 3 | import Masonry from "../lib"; 4 | 5 | const { width } = Dimensions.get( "window" ); 6 | const columnWidth = ( width - 10 ) / 2 - 10; 7 | 8 | export default class Test extends React.Component { 9 | constructor( props ) { 10 | super( props ); 11 | this.state = { 12 | data: [] 13 | }; 14 | } 15 | 16 | componentDidMount() { 17 | this.load(); 18 | } 19 | 20 | load() { 21 | this.setState( { loading: true } ); 22 | fetch( "http://huaban.com/boards/17649987/?limit=10", { 23 | headers: { 24 | "X-Requested-With": "XMLHttpRequest" 25 | } 26 | } ).then( res => res.json() ) 27 | .then( data => { 28 | this.setState( { loading: false } ); 29 | data = data.board.pins.map( item => { 30 | return { 31 | image: "http://img.hb.aicdn.com/" + item.file.key, 32 | text: item.raw_text, 33 | key: item.file.key, 34 | height: columnWidth / item.file.width * item.file.height 35 | } 36 | } ); 37 | this.setState( { data } ); 38 | } ); 39 | } 40 | 41 | render() { 42 | return 48 | {this.state.data.map( item => 60 | 61 | )} 62 | 63 | } 64 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | AppRegistry.registerComponent('reactnativemasonrylayout', () => App); 4 | -------------------------------------------------------------------------------- /ios/reactnativemasonrylayout-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/reactnativemasonrylayout-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/reactnativemasonrylayout.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 /* reactnativemasonrylayoutTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactnativemasonrylayoutTests.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 /* reactnativemasonrylayoutTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactnativemasonrylayoutTests.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 = reactnativemasonrylayout; 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 = "reactnativemasonrylayout-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 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 244 | remoteInfo = RCTLinking; 245 | }; 246 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 251 | remoteInfo = RCTText; 252 | }; 253 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 258 | remoteInfo = RCTBlob; 259 | }; 260 | /* End PBXContainerItemProxy section */ 261 | 262 | /* Begin PBXFileReference section */ 263 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 264 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 265 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 266 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 267 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 268 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 269 | 00E356EE1AD99517003FC87E /* reactnativemasonrylayoutTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactnativemasonrylayoutTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 270 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 271 | 00E356F21AD99517003FC87E /* reactnativemasonrylayoutTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactnativemasonrylayoutTests.m; sourceTree = ""; }; 272 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 273 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 274 | 13B07F961A680F5B00A75B9A /* reactnativemasonrylayout.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativemasonrylayout.app; sourceTree = BUILT_PRODUCTS_DIR; }; 275 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactnativemasonrylayout/AppDelegate.h; sourceTree = ""; }; 276 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = reactnativemasonrylayout/AppDelegate.m; sourceTree = ""; }; 277 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 278 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativemasonrylayout/Images.xcassets; sourceTree = ""; }; 279 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativemasonrylayout/Info.plist; sourceTree = ""; }; 280 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactnativemasonrylayout/main.m; sourceTree = ""; }; 281 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 282 | 2D02E47B1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactnativemasonrylayout-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 283 | 2D02E4901E0B4A5D006451C7 /* reactnativemasonrylayout-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "reactnativemasonrylayout-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 284 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 285 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 286 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 287 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 288 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 289 | /* End PBXFileReference section */ 290 | 291 | /* Begin PBXFrameworksBuildPhase section */ 292 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 293 | isa = PBXFrameworksBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 301 | isa = PBXFrameworksBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 305 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 306 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 307 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 308 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 309 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 310 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 311 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 312 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 313 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 314 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 315 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 316 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 317 | ); 318 | runOnlyForDeploymentPostprocessing = 0; 319 | }; 320 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 321 | isa = PBXFrameworksBuildPhase; 322 | buildActionMask = 2147483647; 323 | files = ( 324 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 325 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 326 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 327 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 328 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 329 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 330 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 331 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 332 | ); 333 | runOnlyForDeploymentPostprocessing = 0; 334 | }; 335 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 336 | isa = PBXFrameworksBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | ); 340 | runOnlyForDeploymentPostprocessing = 0; 341 | }; 342 | /* End PBXFrameworksBuildPhase section */ 343 | 344 | /* Begin PBXGroup section */ 345 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 346 | isa = PBXGroup; 347 | children = ( 348 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 349 | ); 350 | name = Products; 351 | sourceTree = ""; 352 | }; 353 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 354 | isa = PBXGroup; 355 | children = ( 356 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 357 | ); 358 | name = Products; 359 | sourceTree = ""; 360 | }; 361 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 362 | isa = PBXGroup; 363 | children = ( 364 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 365 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 366 | ); 367 | name = Products; 368 | sourceTree = ""; 369 | }; 370 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 371 | isa = PBXGroup; 372 | children = ( 373 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 374 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 375 | ); 376 | name = Products; 377 | sourceTree = ""; 378 | }; 379 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 380 | isa = PBXGroup; 381 | children = ( 382 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 383 | ); 384 | name = Products; 385 | sourceTree = ""; 386 | }; 387 | 00E356EF1AD99517003FC87E /* reactnativemasonrylayoutTests */ = { 388 | isa = PBXGroup; 389 | children = ( 390 | 00E356F21AD99517003FC87E /* reactnativemasonrylayoutTests.m */, 391 | 00E356F01AD99517003FC87E /* Supporting Files */, 392 | ); 393 | path = reactnativemasonrylayoutTests; 394 | sourceTree = ""; 395 | }; 396 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 397 | isa = PBXGroup; 398 | children = ( 399 | 00E356F11AD99517003FC87E /* Info.plist */, 400 | ); 401 | name = "Supporting Files"; 402 | sourceTree = ""; 403 | }; 404 | 139105B71AF99BAD00B5F7CC /* Products */ = { 405 | isa = PBXGroup; 406 | children = ( 407 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 408 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 409 | ); 410 | name = Products; 411 | sourceTree = ""; 412 | }; 413 | 139FDEE71B06529A00C62182 /* Products */ = { 414 | isa = PBXGroup; 415 | children = ( 416 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 417 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 418 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 419 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 420 | ); 421 | name = Products; 422 | sourceTree = ""; 423 | }; 424 | 13B07FAE1A68108700A75B9A /* reactnativemasonrylayout */ = { 425 | isa = PBXGroup; 426 | children = ( 427 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 428 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 429 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 430 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 431 | 13B07FB61A68108700A75B9A /* Info.plist */, 432 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 433 | 13B07FB71A68108700A75B9A /* main.m */, 434 | ); 435 | name = reactnativemasonrylayout; 436 | sourceTree = ""; 437 | }; 438 | 146834001AC3E56700842450 /* Products */ = { 439 | isa = PBXGroup; 440 | children = ( 441 | 146834041AC3E56700842450 /* libReact.a */, 442 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 443 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 444 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 445 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 446 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 447 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 448 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */, 449 | ); 450 | name = Products; 451 | sourceTree = ""; 452 | }; 453 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 454 | isa = PBXGroup; 455 | children = ( 456 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 457 | ); 458 | name = Frameworks; 459 | sourceTree = ""; 460 | }; 461 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 462 | isa = PBXGroup; 463 | children = ( 464 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 465 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 466 | ); 467 | name = Products; 468 | sourceTree = ""; 469 | }; 470 | 78C398B11ACF4ADC00677621 /* Products */ = { 471 | isa = PBXGroup; 472 | children = ( 473 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 474 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 475 | ); 476 | name = Products; 477 | sourceTree = ""; 478 | }; 479 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 480 | isa = PBXGroup; 481 | children = ( 482 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 483 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 484 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 485 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 486 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 487 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 488 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 489 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 490 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 491 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 492 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 493 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 494 | ); 495 | name = Libraries; 496 | sourceTree = ""; 497 | }; 498 | 832341B11AAA6A8300B99B32 /* Products */ = { 499 | isa = PBXGroup; 500 | children = ( 501 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 502 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 503 | ); 504 | name = Products; 505 | sourceTree = ""; 506 | }; 507 | 83CBB9F61A601CBA00E9B192 = { 508 | isa = PBXGroup; 509 | children = ( 510 | 13B07FAE1A68108700A75B9A /* reactnativemasonrylayout */, 511 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 512 | 00E356EF1AD99517003FC87E /* reactnativemasonrylayoutTests */, 513 | 83CBBA001A601CBA00E9B192 /* Products */, 514 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 515 | ); 516 | indentWidth = 2; 517 | sourceTree = ""; 518 | tabWidth = 2; 519 | usesTabs = 0; 520 | }; 521 | 83CBBA001A601CBA00E9B192 /* Products */ = { 522 | isa = PBXGroup; 523 | children = ( 524 | 13B07F961A680F5B00A75B9A /* reactnativemasonrylayout.app */, 525 | 00E356EE1AD99517003FC87E /* reactnativemasonrylayoutTests.xctest */, 526 | 2D02E47B1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS.app */, 527 | 2D02E4901E0B4A5D006451C7 /* reactnativemasonrylayout-tvOSTests.xctest */, 528 | ); 529 | name = Products; 530 | sourceTree = ""; 531 | }; 532 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 533 | isa = PBXGroup; 534 | children = ( 535 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 536 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 537 | ); 538 | name = Products; 539 | sourceTree = ""; 540 | }; 541 | /* End PBXGroup section */ 542 | 543 | /* Begin PBXNativeTarget section */ 544 | 00E356ED1AD99517003FC87E /* reactnativemasonrylayoutTests */ = { 545 | isa = PBXNativeTarget; 546 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactnativemasonrylayoutTests" */; 547 | buildPhases = ( 548 | 00E356EA1AD99517003FC87E /* Sources */, 549 | 00E356EB1AD99517003FC87E /* Frameworks */, 550 | 00E356EC1AD99517003FC87E /* Resources */, 551 | ); 552 | buildRules = ( 553 | ); 554 | dependencies = ( 555 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 556 | ); 557 | name = reactnativemasonrylayoutTests; 558 | productName = reactnativemasonrylayoutTests; 559 | productReference = 00E356EE1AD99517003FC87E /* reactnativemasonrylayoutTests.xctest */; 560 | productType = "com.apple.product-type.bundle.unit-test"; 561 | }; 562 | 13B07F861A680F5B00A75B9A /* reactnativemasonrylayout */ = { 563 | isa = PBXNativeTarget; 564 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout" */; 565 | buildPhases = ( 566 | 13B07F871A680F5B00A75B9A /* Sources */, 567 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 568 | 13B07F8E1A680F5B00A75B9A /* Resources */, 569 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 570 | ); 571 | buildRules = ( 572 | ); 573 | dependencies = ( 574 | ); 575 | name = reactnativemasonrylayout; 576 | productName = "Hello World"; 577 | productReference = 13B07F961A680F5B00A75B9A /* reactnativemasonrylayout.app */; 578 | productType = "com.apple.product-type.application"; 579 | }; 580 | 2D02E47A1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS */ = { 581 | isa = PBXNativeTarget; 582 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout-tvOS" */; 583 | buildPhases = ( 584 | 2D02E4771E0B4A5D006451C7 /* Sources */, 585 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 586 | 2D02E4791E0B4A5D006451C7 /* Resources */, 587 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 588 | ); 589 | buildRules = ( 590 | ); 591 | dependencies = ( 592 | ); 593 | name = "reactnativemasonrylayout-tvOS"; 594 | productName = "reactnativemasonrylayout-tvOS"; 595 | productReference = 2D02E47B1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS.app */; 596 | productType = "com.apple.product-type.application"; 597 | }; 598 | 2D02E48F1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOSTests */ = { 599 | isa = PBXNativeTarget; 600 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout-tvOSTests" */; 601 | buildPhases = ( 602 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 603 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 604 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 605 | ); 606 | buildRules = ( 607 | ); 608 | dependencies = ( 609 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 610 | ); 611 | name = "reactnativemasonrylayout-tvOSTests"; 612 | productName = "reactnativemasonrylayout-tvOSTests"; 613 | productReference = 2D02E4901E0B4A5D006451C7 /* reactnativemasonrylayout-tvOSTests.xctest */; 614 | productType = "com.apple.product-type.bundle.unit-test"; 615 | }; 616 | /* End PBXNativeTarget section */ 617 | 618 | /* Begin PBXProject section */ 619 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 620 | isa = PBXProject; 621 | attributes = { 622 | LastUpgradeCheck = 0610; 623 | ORGANIZATIONNAME = Facebook; 624 | TargetAttributes = { 625 | 00E356ED1AD99517003FC87E = { 626 | CreatedOnToolsVersion = 6.2; 627 | TestTargetID = 13B07F861A680F5B00A75B9A; 628 | }; 629 | 2D02E47A1E0B4A5D006451C7 = { 630 | CreatedOnToolsVersion = 8.2.1; 631 | ProvisioningStyle = Automatic; 632 | }; 633 | 2D02E48F1E0B4A5D006451C7 = { 634 | CreatedOnToolsVersion = 8.2.1; 635 | ProvisioningStyle = Automatic; 636 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 637 | }; 638 | }; 639 | }; 640 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemasonrylayout" */; 641 | compatibilityVersion = "Xcode 3.2"; 642 | developmentRegion = English; 643 | hasScannedForEncodings = 0; 644 | knownRegions = ( 645 | en, 646 | Base, 647 | ); 648 | mainGroup = 83CBB9F61A601CBA00E9B192; 649 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 650 | projectDirPath = ""; 651 | projectReferences = ( 652 | { 653 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 654 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 655 | }, 656 | { 657 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 658 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 659 | }, 660 | { 661 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 662 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 663 | }, 664 | { 665 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 666 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 667 | }, 668 | { 669 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 670 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 671 | }, 672 | { 673 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 674 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 675 | }, 676 | { 677 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 678 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 679 | }, 680 | { 681 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 682 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 683 | }, 684 | { 685 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 686 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 687 | }, 688 | { 689 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 690 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 691 | }, 692 | { 693 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 694 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 695 | }, 696 | { 697 | ProductGroup = 146834001AC3E56700842450 /* Products */; 698 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 699 | }, 700 | ); 701 | projectRoot = ""; 702 | targets = ( 703 | 13B07F861A680F5B00A75B9A /* reactnativemasonrylayout */, 704 | 00E356ED1AD99517003FC87E /* reactnativemasonrylayoutTests */, 705 | 2D02E47A1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS */, 706 | 2D02E48F1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOSTests */, 707 | ); 708 | }; 709 | /* End PBXProject section */ 710 | 711 | /* Begin PBXReferenceProxy section */ 712 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 713 | isa = PBXReferenceProxy; 714 | fileType = archive.ar; 715 | path = libRCTActionSheet.a; 716 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 717 | sourceTree = BUILT_PRODUCTS_DIR; 718 | }; 719 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 720 | isa = PBXReferenceProxy; 721 | fileType = archive.ar; 722 | path = libRCTGeolocation.a; 723 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 724 | sourceTree = BUILT_PRODUCTS_DIR; 725 | }; 726 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 727 | isa = PBXReferenceProxy; 728 | fileType = archive.ar; 729 | path = libRCTImage.a; 730 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 731 | sourceTree = BUILT_PRODUCTS_DIR; 732 | }; 733 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 734 | isa = PBXReferenceProxy; 735 | fileType = archive.ar; 736 | path = libRCTNetwork.a; 737 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 738 | sourceTree = BUILT_PRODUCTS_DIR; 739 | }; 740 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 741 | isa = PBXReferenceProxy; 742 | fileType = archive.ar; 743 | path = libRCTVibration.a; 744 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 745 | sourceTree = BUILT_PRODUCTS_DIR; 746 | }; 747 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 748 | isa = PBXReferenceProxy; 749 | fileType = archive.ar; 750 | path = libRCTSettings.a; 751 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 752 | sourceTree = BUILT_PRODUCTS_DIR; 753 | }; 754 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 755 | isa = PBXReferenceProxy; 756 | fileType = archive.ar; 757 | path = libRCTWebSocket.a; 758 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 759 | sourceTree = BUILT_PRODUCTS_DIR; 760 | }; 761 | 146834041AC3E56700842450 /* libReact.a */ = { 762 | isa = PBXReferenceProxy; 763 | fileType = archive.ar; 764 | path = libReact.a; 765 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 766 | sourceTree = BUILT_PRODUCTS_DIR; 767 | }; 768 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 769 | isa = PBXReferenceProxy; 770 | fileType = archive.ar; 771 | path = "libRCTBlob-tvOS.a"; 772 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 773 | sourceTree = BUILT_PRODUCTS_DIR; 774 | }; 775 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 776 | isa = PBXReferenceProxy; 777 | fileType = archive.ar; 778 | path = libfishhook.a; 779 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 780 | sourceTree = BUILT_PRODUCTS_DIR; 781 | }; 782 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 783 | isa = PBXReferenceProxy; 784 | fileType = archive.ar; 785 | path = "libfishhook-tvOS.a"; 786 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 787 | sourceTree = BUILT_PRODUCTS_DIR; 788 | }; 789 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 790 | isa = PBXReferenceProxy; 791 | fileType = archive.ar; 792 | path = "libRCTImage-tvOS.a"; 793 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 794 | sourceTree = BUILT_PRODUCTS_DIR; 795 | }; 796 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 797 | isa = PBXReferenceProxy; 798 | fileType = archive.ar; 799 | path = "libRCTLinking-tvOS.a"; 800 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 801 | sourceTree = BUILT_PRODUCTS_DIR; 802 | }; 803 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 804 | isa = PBXReferenceProxy; 805 | fileType = archive.ar; 806 | path = "libRCTNetwork-tvOS.a"; 807 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 808 | sourceTree = BUILT_PRODUCTS_DIR; 809 | }; 810 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 811 | isa = PBXReferenceProxy; 812 | fileType = archive.ar; 813 | path = "libRCTSettings-tvOS.a"; 814 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 815 | sourceTree = BUILT_PRODUCTS_DIR; 816 | }; 817 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 818 | isa = PBXReferenceProxy; 819 | fileType = archive.ar; 820 | path = "libRCTText-tvOS.a"; 821 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 822 | sourceTree = BUILT_PRODUCTS_DIR; 823 | }; 824 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 825 | isa = PBXReferenceProxy; 826 | fileType = archive.ar; 827 | path = "libRCTWebSocket-tvOS.a"; 828 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 829 | sourceTree = BUILT_PRODUCTS_DIR; 830 | }; 831 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = { 832 | isa = PBXReferenceProxy; 833 | fileType = archive.ar; 834 | path = "libReact-tvOS.a"; 835 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 836 | sourceTree = BUILT_PRODUCTS_DIR; 837 | }; 838 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 839 | isa = PBXReferenceProxy; 840 | fileType = archive.ar; 841 | path = libyoga.a; 842 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 843 | sourceTree = BUILT_PRODUCTS_DIR; 844 | }; 845 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 846 | isa = PBXReferenceProxy; 847 | fileType = archive.ar; 848 | path = libyoga.a; 849 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 850 | sourceTree = BUILT_PRODUCTS_DIR; 851 | }; 852 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 853 | isa = PBXReferenceProxy; 854 | fileType = archive.ar; 855 | path = libcxxreact.a; 856 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 857 | sourceTree = BUILT_PRODUCTS_DIR; 858 | }; 859 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 860 | isa = PBXReferenceProxy; 861 | fileType = archive.ar; 862 | path = libcxxreact.a; 863 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 864 | sourceTree = BUILT_PRODUCTS_DIR; 865 | }; 866 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 867 | isa = PBXReferenceProxy; 868 | fileType = archive.ar; 869 | path = libjschelpers.a; 870 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 871 | sourceTree = BUILT_PRODUCTS_DIR; 872 | }; 873 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 874 | isa = PBXReferenceProxy; 875 | fileType = archive.ar; 876 | path = libjschelpers.a; 877 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 878 | sourceTree = BUILT_PRODUCTS_DIR; 879 | }; 880 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 881 | isa = PBXReferenceProxy; 882 | fileType = archive.ar; 883 | path = libRCTAnimation.a; 884 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 885 | sourceTree = BUILT_PRODUCTS_DIR; 886 | }; 887 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 888 | isa = PBXReferenceProxy; 889 | fileType = archive.ar; 890 | path = libRCTAnimation.a; 891 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 892 | sourceTree = BUILT_PRODUCTS_DIR; 893 | }; 894 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 895 | isa = PBXReferenceProxy; 896 | fileType = archive.ar; 897 | path = libRCTLinking.a; 898 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 899 | sourceTree = BUILT_PRODUCTS_DIR; 900 | }; 901 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 902 | isa = PBXReferenceProxy; 903 | fileType = archive.ar; 904 | path = libRCTText.a; 905 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 906 | sourceTree = BUILT_PRODUCTS_DIR; 907 | }; 908 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 909 | isa = PBXReferenceProxy; 910 | fileType = archive.ar; 911 | path = libRCTBlob.a; 912 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 913 | sourceTree = BUILT_PRODUCTS_DIR; 914 | }; 915 | /* End PBXReferenceProxy section */ 916 | 917 | /* Begin PBXResourcesBuildPhase section */ 918 | 00E356EC1AD99517003FC87E /* Resources */ = { 919 | isa = PBXResourcesBuildPhase; 920 | buildActionMask = 2147483647; 921 | files = ( 922 | ); 923 | runOnlyForDeploymentPostprocessing = 0; 924 | }; 925 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 926 | isa = PBXResourcesBuildPhase; 927 | buildActionMask = 2147483647; 928 | files = ( 929 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 930 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 931 | ); 932 | runOnlyForDeploymentPostprocessing = 0; 933 | }; 934 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 935 | isa = PBXResourcesBuildPhase; 936 | buildActionMask = 2147483647; 937 | files = ( 938 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 939 | ); 940 | runOnlyForDeploymentPostprocessing = 0; 941 | }; 942 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 943 | isa = PBXResourcesBuildPhase; 944 | buildActionMask = 2147483647; 945 | files = ( 946 | ); 947 | runOnlyForDeploymentPostprocessing = 0; 948 | }; 949 | /* End PBXResourcesBuildPhase section */ 950 | 951 | /* Begin PBXShellScriptBuildPhase section */ 952 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 953 | isa = PBXShellScriptBuildPhase; 954 | buildActionMask = 2147483647; 955 | files = ( 956 | ); 957 | inputPaths = ( 958 | ); 959 | name = "Bundle React Native code and images"; 960 | outputPaths = ( 961 | ); 962 | runOnlyForDeploymentPostprocessing = 0; 963 | shellPath = /bin/sh; 964 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 965 | }; 966 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 967 | isa = PBXShellScriptBuildPhase; 968 | buildActionMask = 2147483647; 969 | files = ( 970 | ); 971 | inputPaths = ( 972 | ); 973 | name = "Bundle React Native Code And Images"; 974 | outputPaths = ( 975 | ); 976 | runOnlyForDeploymentPostprocessing = 0; 977 | shellPath = /bin/sh; 978 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 979 | }; 980 | /* End PBXShellScriptBuildPhase section */ 981 | 982 | /* Begin PBXSourcesBuildPhase section */ 983 | 00E356EA1AD99517003FC87E /* Sources */ = { 984 | isa = PBXSourcesBuildPhase; 985 | buildActionMask = 2147483647; 986 | files = ( 987 | 00E356F31AD99517003FC87E /* reactnativemasonrylayoutTests.m in Sources */, 988 | ); 989 | runOnlyForDeploymentPostprocessing = 0; 990 | }; 991 | 13B07F871A680F5B00A75B9A /* Sources */ = { 992 | isa = PBXSourcesBuildPhase; 993 | buildActionMask = 2147483647; 994 | files = ( 995 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 996 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 997 | ); 998 | runOnlyForDeploymentPostprocessing = 0; 999 | }; 1000 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1001 | isa = PBXSourcesBuildPhase; 1002 | buildActionMask = 2147483647; 1003 | files = ( 1004 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1005 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1006 | ); 1007 | runOnlyForDeploymentPostprocessing = 0; 1008 | }; 1009 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1010 | isa = PBXSourcesBuildPhase; 1011 | buildActionMask = 2147483647; 1012 | files = ( 1013 | 2DCD954D1E0B4F2C00145EB5 /* reactnativemasonrylayoutTests.m in Sources */, 1014 | ); 1015 | runOnlyForDeploymentPostprocessing = 0; 1016 | }; 1017 | /* End PBXSourcesBuildPhase section */ 1018 | 1019 | /* Begin PBXTargetDependency section */ 1020 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1021 | isa = PBXTargetDependency; 1022 | target = 13B07F861A680F5B00A75B9A /* reactnativemasonrylayout */; 1023 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1024 | }; 1025 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1026 | isa = PBXTargetDependency; 1027 | target = 2D02E47A1E0B4A5D006451C7 /* reactnativemasonrylayout-tvOS */; 1028 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1029 | }; 1030 | /* End PBXTargetDependency section */ 1031 | 1032 | /* Begin PBXVariantGroup section */ 1033 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1034 | isa = PBXVariantGroup; 1035 | children = ( 1036 | 13B07FB21A68108700A75B9A /* Base */, 1037 | ); 1038 | name = LaunchScreen.xib; 1039 | path = reactnativemasonrylayout; 1040 | sourceTree = ""; 1041 | }; 1042 | /* End PBXVariantGroup section */ 1043 | 1044 | /* Begin XCBuildConfiguration section */ 1045 | 00E356F61AD99517003FC87E /* Debug */ = { 1046 | isa = XCBuildConfiguration; 1047 | buildSettings = { 1048 | BUNDLE_LOADER = "$(TEST_HOST)"; 1049 | GCC_PREPROCESSOR_DEFINITIONS = ( 1050 | "DEBUG=1", 1051 | "$(inherited)", 1052 | ); 1053 | INFOPLIST_FILE = reactnativemasonrylayoutTests/Info.plist; 1054 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1055 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1056 | OTHER_LDFLAGS = ( 1057 | "-ObjC", 1058 | "-lc++", 1059 | ); 1060 | PRODUCT_NAME = "$(TARGET_NAME)"; 1061 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemasonrylayout.app/reactnativemasonrylayout"; 1062 | }; 1063 | name = Debug; 1064 | }; 1065 | 00E356F71AD99517003FC87E /* Release */ = { 1066 | isa = XCBuildConfiguration; 1067 | buildSettings = { 1068 | BUNDLE_LOADER = "$(TEST_HOST)"; 1069 | COPY_PHASE_STRIP = NO; 1070 | INFOPLIST_FILE = reactnativemasonrylayoutTests/Info.plist; 1071 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1072 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1073 | OTHER_LDFLAGS = ( 1074 | "-ObjC", 1075 | "-lc++", 1076 | ); 1077 | PRODUCT_NAME = "$(TARGET_NAME)"; 1078 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemasonrylayout.app/reactnativemasonrylayout"; 1079 | }; 1080 | name = Release; 1081 | }; 1082 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1083 | isa = XCBuildConfiguration; 1084 | buildSettings = { 1085 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1086 | CURRENT_PROJECT_VERSION = 1; 1087 | DEAD_CODE_STRIPPING = NO; 1088 | INFOPLIST_FILE = reactnativemasonrylayout/Info.plist; 1089 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1090 | OTHER_LDFLAGS = ( 1091 | "$(inherited)", 1092 | "-ObjC", 1093 | "-lc++", 1094 | ); 1095 | PRODUCT_NAME = reactnativemasonrylayout; 1096 | VERSIONING_SYSTEM = "apple-generic"; 1097 | }; 1098 | name = Debug; 1099 | }; 1100 | 13B07F951A680F5B00A75B9A /* Release */ = { 1101 | isa = XCBuildConfiguration; 1102 | buildSettings = { 1103 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1104 | CURRENT_PROJECT_VERSION = 1; 1105 | INFOPLIST_FILE = reactnativemasonrylayout/Info.plist; 1106 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1107 | OTHER_LDFLAGS = ( 1108 | "$(inherited)", 1109 | "-ObjC", 1110 | "-lc++", 1111 | ); 1112 | PRODUCT_NAME = reactnativemasonrylayout; 1113 | VERSIONING_SYSTEM = "apple-generic"; 1114 | }; 1115 | name = Release; 1116 | }; 1117 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1118 | isa = XCBuildConfiguration; 1119 | buildSettings = { 1120 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1121 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1122 | CLANG_ANALYZER_NONNULL = YES; 1123 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1124 | CLANG_WARN_INFINITE_RECURSION = YES; 1125 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1126 | DEBUG_INFORMATION_FORMAT = dwarf; 1127 | ENABLE_TESTABILITY = YES; 1128 | GCC_NO_COMMON_BLOCKS = YES; 1129 | INFOPLIST_FILE = "reactnativemasonrylayout-tvOS/Info.plist"; 1130 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1131 | OTHER_LDFLAGS = ( 1132 | "-ObjC", 1133 | "-lc++", 1134 | ); 1135 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactnativemasonrylayout-tvOS"; 1136 | PRODUCT_NAME = "$(TARGET_NAME)"; 1137 | SDKROOT = appletvos; 1138 | TARGETED_DEVICE_FAMILY = 3; 1139 | TVOS_DEPLOYMENT_TARGET = 9.2; 1140 | }; 1141 | name = Debug; 1142 | }; 1143 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1144 | isa = XCBuildConfiguration; 1145 | buildSettings = { 1146 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1147 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1148 | CLANG_ANALYZER_NONNULL = YES; 1149 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1150 | CLANG_WARN_INFINITE_RECURSION = YES; 1151 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1152 | COPY_PHASE_STRIP = NO; 1153 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1154 | GCC_NO_COMMON_BLOCKS = YES; 1155 | INFOPLIST_FILE = "reactnativemasonrylayout-tvOS/Info.plist"; 1156 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1157 | OTHER_LDFLAGS = ( 1158 | "-ObjC", 1159 | "-lc++", 1160 | ); 1161 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactnativemasonrylayout-tvOS"; 1162 | PRODUCT_NAME = "$(TARGET_NAME)"; 1163 | SDKROOT = appletvos; 1164 | TARGETED_DEVICE_FAMILY = 3; 1165 | TVOS_DEPLOYMENT_TARGET = 9.2; 1166 | }; 1167 | name = Release; 1168 | }; 1169 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1170 | isa = XCBuildConfiguration; 1171 | buildSettings = { 1172 | BUNDLE_LOADER = "$(TEST_HOST)"; 1173 | CLANG_ANALYZER_NONNULL = YES; 1174 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1175 | CLANG_WARN_INFINITE_RECURSION = YES; 1176 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1177 | DEBUG_INFORMATION_FORMAT = dwarf; 1178 | ENABLE_TESTABILITY = YES; 1179 | GCC_NO_COMMON_BLOCKS = YES; 1180 | INFOPLIST_FILE = "reactnativemasonrylayout-tvOSTests/Info.plist"; 1181 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1182 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactnativemasonrylayout-tvOSTests"; 1183 | PRODUCT_NAME = "$(TARGET_NAME)"; 1184 | SDKROOT = appletvos; 1185 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemasonrylayout-tvOS.app/reactnativemasonrylayout-tvOS"; 1186 | TVOS_DEPLOYMENT_TARGET = 10.1; 1187 | }; 1188 | name = Debug; 1189 | }; 1190 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1191 | isa = XCBuildConfiguration; 1192 | buildSettings = { 1193 | BUNDLE_LOADER = "$(TEST_HOST)"; 1194 | CLANG_ANALYZER_NONNULL = YES; 1195 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1196 | CLANG_WARN_INFINITE_RECURSION = YES; 1197 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1198 | COPY_PHASE_STRIP = NO; 1199 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1200 | GCC_NO_COMMON_BLOCKS = YES; 1201 | INFOPLIST_FILE = "reactnativemasonrylayout-tvOSTests/Info.plist"; 1202 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1203 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.reactnativemasonrylayout-tvOSTests"; 1204 | PRODUCT_NAME = "$(TARGET_NAME)"; 1205 | SDKROOT = appletvos; 1206 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemasonrylayout-tvOS.app/reactnativemasonrylayout-tvOS"; 1207 | TVOS_DEPLOYMENT_TARGET = 10.1; 1208 | }; 1209 | name = Release; 1210 | }; 1211 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1212 | isa = XCBuildConfiguration; 1213 | buildSettings = { 1214 | ALWAYS_SEARCH_USER_PATHS = NO; 1215 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1216 | CLANG_CXX_LIBRARY = "libc++"; 1217 | CLANG_ENABLE_MODULES = YES; 1218 | CLANG_ENABLE_OBJC_ARC = YES; 1219 | CLANG_WARN_BOOL_CONVERSION = YES; 1220 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1221 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1222 | CLANG_WARN_EMPTY_BODY = YES; 1223 | CLANG_WARN_ENUM_CONVERSION = YES; 1224 | CLANG_WARN_INT_CONVERSION = YES; 1225 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1226 | CLANG_WARN_UNREACHABLE_CODE = YES; 1227 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1228 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1229 | COPY_PHASE_STRIP = NO; 1230 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1231 | GCC_C_LANGUAGE_STANDARD = gnu99; 1232 | GCC_DYNAMIC_NO_PIC = NO; 1233 | GCC_OPTIMIZATION_LEVEL = 0; 1234 | GCC_PREPROCESSOR_DEFINITIONS = ( 1235 | "DEBUG=1", 1236 | "$(inherited)", 1237 | ); 1238 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1239 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1240 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1241 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1242 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1243 | GCC_WARN_UNUSED_FUNCTION = YES; 1244 | GCC_WARN_UNUSED_VARIABLE = YES; 1245 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1246 | MTL_ENABLE_DEBUG_INFO = YES; 1247 | ONLY_ACTIVE_ARCH = YES; 1248 | SDKROOT = iphoneos; 1249 | }; 1250 | name = Debug; 1251 | }; 1252 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1253 | isa = XCBuildConfiguration; 1254 | buildSettings = { 1255 | ALWAYS_SEARCH_USER_PATHS = NO; 1256 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1257 | CLANG_CXX_LIBRARY = "libc++"; 1258 | CLANG_ENABLE_MODULES = YES; 1259 | CLANG_ENABLE_OBJC_ARC = YES; 1260 | CLANG_WARN_BOOL_CONVERSION = YES; 1261 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1262 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1263 | CLANG_WARN_EMPTY_BODY = YES; 1264 | CLANG_WARN_ENUM_CONVERSION = YES; 1265 | CLANG_WARN_INT_CONVERSION = YES; 1266 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1267 | CLANG_WARN_UNREACHABLE_CODE = YES; 1268 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1269 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1270 | COPY_PHASE_STRIP = YES; 1271 | ENABLE_NS_ASSERTIONS = NO; 1272 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1273 | GCC_C_LANGUAGE_STANDARD = gnu99; 1274 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1275 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1276 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1277 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1278 | GCC_WARN_UNUSED_FUNCTION = YES; 1279 | GCC_WARN_UNUSED_VARIABLE = YES; 1280 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1281 | MTL_ENABLE_DEBUG_INFO = NO; 1282 | SDKROOT = iphoneos; 1283 | VALIDATE_PRODUCT = YES; 1284 | }; 1285 | name = Release; 1286 | }; 1287 | /* End XCBuildConfiguration section */ 1288 | 1289 | /* Begin XCConfigurationList section */ 1290 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactnativemasonrylayoutTests" */ = { 1291 | isa = XCConfigurationList; 1292 | buildConfigurations = ( 1293 | 00E356F61AD99517003FC87E /* Debug */, 1294 | 00E356F71AD99517003FC87E /* Release */, 1295 | ); 1296 | defaultConfigurationIsVisible = 0; 1297 | defaultConfigurationName = Release; 1298 | }; 1299 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout" */ = { 1300 | isa = XCConfigurationList; 1301 | buildConfigurations = ( 1302 | 13B07F941A680F5B00A75B9A /* Debug */, 1303 | 13B07F951A680F5B00A75B9A /* Release */, 1304 | ); 1305 | defaultConfigurationIsVisible = 0; 1306 | defaultConfigurationName = Release; 1307 | }; 1308 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout-tvOS" */ = { 1309 | isa = XCConfigurationList; 1310 | buildConfigurations = ( 1311 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1312 | 2D02E4981E0B4A5E006451C7 /* Release */, 1313 | ); 1314 | defaultConfigurationIsVisible = 0; 1315 | defaultConfigurationName = Release; 1316 | }; 1317 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "reactnativemasonrylayout-tvOSTests" */ = { 1318 | isa = XCConfigurationList; 1319 | buildConfigurations = ( 1320 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1321 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1322 | ); 1323 | defaultConfigurationIsVisible = 0; 1324 | defaultConfigurationName = Release; 1325 | }; 1326 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemasonrylayout" */ = { 1327 | isa = XCConfigurationList; 1328 | buildConfigurations = ( 1329 | 83CBBA201A601CBA00E9B192 /* Debug */, 1330 | 83CBBA211A601CBA00E9B192 /* Release */, 1331 | ); 1332 | defaultConfigurationIsVisible = 0; 1333 | defaultConfigurationName = Release; 1334 | }; 1335 | /* End XCConfigurationList section */ 1336 | }; 1337 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1338 | } 1339 | -------------------------------------------------------------------------------- /ios/reactnativemasonrylayout.xcodeproj/xcshareddata/xcschemes/reactnativemasonrylayout-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/reactnativemasonrylayout.xcodeproj/xcshareddata/xcschemes/reactnativemasonrylayout.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/reactnativemasonrylayout/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/reactnativemasonrylayout/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:@"reactnativemasonrylayout" 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/reactnativemasonrylayout/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/reactnativemasonrylayout/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/reactnativemasonrylayout/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/reactnativemasonrylayout/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | MansonryExample 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/reactnativemasonrylayout/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/reactnativemasonrylayoutTests/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/reactnativemasonrylayoutTests/reactnativemasonrylayoutTests.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 reactnativemasonrylayoutTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation reactnativemasonrylayoutTests 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 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { FlatList, ScrollView, View, ViewPropTypes } from "react-native"; 3 | import PropTypes from "prop-types"; 4 | 5 | class Item extends React.PureComponent { 6 | render() { 7 | return 8 | {this.props.renderItem( this.props.item )} 9 | 10 | } 11 | } 12 | 13 | class Column extends React.Component { 14 | static propTypes = { 15 | keyExtractor: PropTypes.func 16 | }; 17 | 18 | constructor( props ) { 19 | super( props ); 20 | this.state = { 21 | height: 0, 22 | data: [] 23 | }; 24 | } 25 | 26 | clearAll() { 27 | this.setState({ data: [], height: 0 }); 28 | } 29 | 30 | clear(item) { 31 | const data = this.state.data.filter(dataItem => dataItem !== item); 32 | this.setState({ data }); 33 | } 34 | 35 | render() { 36 | return 37 | 44 | 45 | } 46 | 47 | getHeight() { 48 | return this.state.height; 49 | } 50 | 51 | addItems( items ) { 52 | this.setState( { data: [ ...this.state.data, ...items ] } ); 53 | } 54 | 55 | renderItem( { item } ) { 56 | return { 57 | const { height } = event.nativeEvent.layout; 58 | this.state.height = this.state.height + height; 59 | this.setState( { height: this.state.height } ); 60 | item.onLayout && item.onLayout(); 61 | }}/> 62 | } 63 | } 64 | 65 | export default class Masonry extends React.Component { 66 | 67 | static propTypes = { 68 | columns: PropTypes.number, 69 | containerStyle: ViewPropTypes.style, 70 | style: ViewPropTypes.style, 71 | renderItem: PropTypes.func, 72 | keyExtractor: PropTypes.func, 73 | }; 74 | 75 | static defaultProps = { 76 | columns: 2 77 | }; 78 | 79 | constructor( props ) { 80 | super( props ); 81 | const columns = []; 82 | for ( let i = 0; i < props.columns; i++ ) { 83 | columns.push( null ); 84 | } 85 | this.state = { 86 | columns 87 | }; 88 | this.itemQueue = []; 89 | } 90 | 91 | clearAll() { 92 | this.state.columns.forEach(col => col.clearAll()); 93 | } 94 | 95 | clear(item) { 96 | this.state.columns.forEach(col => col.clear(item)); 97 | } 98 | 99 | addItems( items ) { 100 | if ( items ) { 101 | if ( this.itemQueue.length > 0 ) { 102 | this.itemQueue = this.itemQueue.concat( items ); 103 | } else { 104 | this.itemQueue = this.itemQueue.concat( items ); 105 | this.addItems(); 106 | } 107 | } else { 108 | if ( this.itemQueue.length > 0 ) { 109 | const item = this.itemQueue.shift(); 110 | this.addItem( item, () => this.addItems() ); 111 | } 112 | } 113 | } 114 | 115 | addItemsWithHeight( items ) { 116 | // 生成临时 Column 映射 117 | const columns = this.sortColumns().map( col => { 118 | return { 119 | column: col, 120 | height: col.getHeight(), 121 | data: [] 122 | } 123 | } ); 124 | 125 | // 逐个分配 Item 到最小的 Column 中 126 | items.forEach( ( item ) => { 127 | const col = columns.sort( ( a, b ) => a.height - b.height )[ 0 ]; 128 | col.data.push( item ); 129 | col.height += item.height; 130 | } ); 131 | 132 | // 批量添加 Column 的 Items 133 | columns.forEach( col => { 134 | col.column.addItems( col.data ); 135 | } ) 136 | } 137 | 138 | /** 139 | * 对所有列按高度进行排序 140 | * @returns {Array} 141 | */ 142 | sortColumns() { 143 | return this.state.columns.sort( ( a, b ) => a.getHeight() - b.getHeight() ); 144 | } 145 | 146 | addItem( item, callback ) { 147 | const minCol = this.sortColumns()[ 0 ]; 148 | item.onLayout = callback; 149 | minCol.addItems( [ item ] ); 150 | } 151 | 152 | render() { 153 | return 154 | {this.props.header} 155 | 156 | {this.state.columns.map( ( col, index ) => { 157 | return this.state.columns[ index ] = ref} 158 | keyExtractor={this.props.keyExtractor} 159 | renderItem={this.props.renderItem.bind( this )}/> 160 | } )} 161 | 162 | {this.props.footer} 163 | 164 | } 165 | 166 | } 167 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-masonry-layout", 3 | "version": "1.0.6", 4 | "description": "An easy to use, pure JS react-native component to render a masonry layout for any item view", 5 | "author": "Enok Man", 6 | "private": false, 7 | "repository": { 8 | "type": "git", 9 | "url": "git+https://github.com/fengmu456/react-native-masonry-layout.git" 10 | }, 11 | "files": [ 12 | "./example", 13 | "./lib" 14 | ], 15 | "main": "lib/index.js", 16 | "bugs": { 17 | "url": "https://github.com/fengmu456/react-native-masonry-layout/issues" 18 | }, 19 | "homepage": "https://github.com/fengmu456/react-native-masonry-layout#README", 20 | "keywords": [ 21 | "react-native", 22 | "masonry", 23 | "pinterest", 24 | "grid", 25 | "layout" 26 | ], 27 | "devDependencies": { 28 | "babel-preset-react-native-stage-0": "^1.0.1", 29 | "jest-react-native": "^18.0.0", 30 | "react-test-renderer": "16.2.0" 31 | }, 32 | "scripts": { 33 | "start": "react-native start", 34 | "android": "react-native run-android", 35 | "ios": "react-native run-ios", 36 | "test": "node node_modules/jest/bin/jest.js" 37 | }, 38 | "jest": { 39 | "preset": "react-native" 40 | }, 41 | "peerDependencies": { 42 | "react": "16.2.0", 43 | "react-native": ">=0.52.0" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | ansi-regex@^2.0.0: 6 | version "2.1.1" 7 | resolved "http://npm.cqyanyu.com.cn/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 8 | 9 | ansi-styles@^2.2.1: 10 | version "2.2.1" 11 | resolved "http://npm.cqyanyu.com.cn/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 12 | 13 | asap@~2.0.3: 14 | version "2.0.6" 15 | resolved "http://npm.cqyanyu.com.cn/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 16 | 17 | babel-code-frame@^6.26.0: 18 | version "6.26.0" 19 | resolved "http://npm.cqyanyu.com.cn/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 20 | dependencies: 21 | chalk "^1.1.3" 22 | esutils "^2.0.2" 23 | js-tokens "^3.0.2" 24 | 25 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 26 | version "6.24.1" 27 | resolved "http://npm.cqyanyu.com.cn/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 28 | dependencies: 29 | babel-helper-explode-assignable-expression "^6.24.1" 30 | babel-runtime "^6.22.0" 31 | babel-types "^6.24.1" 32 | 33 | babel-helper-builder-react-jsx@^6.24.1: 34 | version "6.26.0" 35 | resolved "http://npm.cqyanyu.com.cn/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 36 | dependencies: 37 | babel-runtime "^6.26.0" 38 | babel-types "^6.26.0" 39 | esutils "^2.0.2" 40 | 41 | babel-helper-call-delegate@^6.24.1: 42 | version "6.24.1" 43 | resolved "http://npm.cqyanyu.com.cn/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 44 | dependencies: 45 | babel-helper-hoist-variables "^6.24.1" 46 | babel-runtime "^6.22.0" 47 | babel-traverse "^6.24.1" 48 | babel-types "^6.24.1" 49 | 50 | babel-helper-define-map@^6.24.1: 51 | version "6.26.0" 52 | resolved "http://npm.cqyanyu.com.cn/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 53 | dependencies: 54 | babel-helper-function-name "^6.24.1" 55 | babel-runtime "^6.26.0" 56 | babel-types "^6.26.0" 57 | lodash "^4.17.4" 58 | 59 | babel-helper-explode-assignable-expression@^6.24.1: 60 | version "6.24.1" 61 | resolved "http://npm.cqyanyu.com.cn/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 62 | dependencies: 63 | babel-runtime "^6.22.0" 64 | babel-traverse "^6.24.1" 65 | babel-types "^6.24.1" 66 | 67 | babel-helper-function-name@^6.24.1: 68 | version "6.24.1" 69 | resolved "http://npm.cqyanyu.com.cn/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 70 | dependencies: 71 | babel-helper-get-function-arity "^6.24.1" 72 | babel-runtime "^6.22.0" 73 | babel-template "^6.24.1" 74 | babel-traverse "^6.24.1" 75 | babel-types "^6.24.1" 76 | 77 | babel-helper-get-function-arity@^6.24.1: 78 | version "6.24.1" 79 | resolved "http://npm.cqyanyu.com.cn/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 80 | dependencies: 81 | babel-runtime "^6.22.0" 82 | babel-types "^6.24.1" 83 | 84 | babel-helper-hoist-variables@^6.24.1: 85 | version "6.24.1" 86 | resolved "http://npm.cqyanyu.com.cn/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 87 | dependencies: 88 | babel-runtime "^6.22.0" 89 | babel-types "^6.24.1" 90 | 91 | babel-helper-optimise-call-expression@^6.24.1: 92 | version "6.24.1" 93 | resolved "http://npm.cqyanyu.com.cn/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 94 | dependencies: 95 | babel-runtime "^6.22.0" 96 | babel-types "^6.24.1" 97 | 98 | babel-helper-replace-supers@^6.24.1: 99 | version "6.24.1" 100 | resolved "http://npm.cqyanyu.com.cn/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 101 | dependencies: 102 | babel-helper-optimise-call-expression "^6.24.1" 103 | babel-messages "^6.23.0" 104 | babel-runtime "^6.22.0" 105 | babel-template "^6.24.1" 106 | babel-traverse "^6.24.1" 107 | babel-types "^6.24.1" 108 | 109 | babel-messages@^6.23.0: 110 | version "6.23.0" 111 | resolved "http://npm.cqyanyu.com.cn/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 112 | dependencies: 113 | babel-runtime "^6.22.0" 114 | 115 | babel-plugin-check-es2015-constants@^6.5.0: 116 | version "6.22.0" 117 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 118 | dependencies: 119 | babel-runtime "^6.22.0" 120 | 121 | babel-plugin-react-transform@2.0.2: 122 | version "2.0.2" 123 | resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109" 124 | dependencies: 125 | lodash "^4.6.1" 126 | 127 | babel-plugin-syntax-async-functions@^6.5.0: 128 | version "6.13.0" 129 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 130 | 131 | babel-plugin-syntax-class-constructor-call@^6.18.0: 132 | version "6.18.0" 133 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 134 | 135 | babel-plugin-syntax-class-properties@^6.5.0, babel-plugin-syntax-class-properties@^6.8.0: 136 | version "6.13.0" 137 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 138 | 139 | babel-plugin-syntax-decorators@^6.1.18: 140 | version "6.13.0" 141 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 142 | 143 | babel-plugin-syntax-do-expressions@^6.8.0: 144 | version "6.13.0" 145 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 146 | 147 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 148 | version "6.13.0" 149 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 150 | 151 | babel-plugin-syntax-export-extensions@^6.8.0: 152 | version "6.13.0" 153 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 154 | 155 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.5.0: 156 | version "6.18.0" 157 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 158 | 159 | babel-plugin-syntax-function-bind@^6.8.0: 160 | version "6.13.0" 161 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 162 | 163 | babel-plugin-syntax-jsx@^6.5.0, babel-plugin-syntax-jsx@^6.8.0: 164 | version "6.18.0" 165 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 166 | 167 | babel-plugin-syntax-object-rest-spread@^6.8.0: 168 | version "6.13.0" 169 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 170 | 171 | babel-plugin-syntax-trailing-function-commas@^6.5.0: 172 | version "6.22.0" 173 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 174 | 175 | babel-plugin-transform-class-constructor-call@^6.6.5: 176 | version "6.24.1" 177 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 178 | dependencies: 179 | babel-plugin-syntax-class-constructor-call "^6.18.0" 180 | babel-runtime "^6.22.0" 181 | babel-template "^6.24.1" 182 | 183 | babel-plugin-transform-class-properties@^6.5.0: 184 | version "6.24.1" 185 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 186 | dependencies: 187 | babel-helper-function-name "^6.24.1" 188 | babel-plugin-syntax-class-properties "^6.8.0" 189 | babel-runtime "^6.22.0" 190 | babel-template "^6.24.1" 191 | 192 | babel-plugin-transform-decorators-legacy@^1.3.4: 193 | version "1.3.4" 194 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925" 195 | dependencies: 196 | babel-plugin-syntax-decorators "^6.1.18" 197 | babel-runtime "^6.2.0" 198 | babel-template "^6.3.0" 199 | 200 | babel-plugin-transform-do-expressions@^6.5.0: 201 | version "6.22.0" 202 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 203 | dependencies: 204 | babel-plugin-syntax-do-expressions "^6.8.0" 205 | babel-runtime "^6.22.0" 206 | 207 | babel-plugin-transform-es2015-arrow-functions@^6.5.0: 208 | version "6.22.0" 209 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 210 | dependencies: 211 | babel-runtime "^6.22.0" 212 | 213 | babel-plugin-transform-es2015-block-scoping@^6.5.0: 214 | version "6.26.0" 215 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 216 | dependencies: 217 | babel-runtime "^6.26.0" 218 | babel-template "^6.26.0" 219 | babel-traverse "^6.26.0" 220 | babel-types "^6.26.0" 221 | lodash "^4.17.4" 222 | 223 | babel-plugin-transform-es2015-classes@^6.5.0: 224 | version "6.24.1" 225 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 226 | dependencies: 227 | babel-helper-define-map "^6.24.1" 228 | babel-helper-function-name "^6.24.1" 229 | babel-helper-optimise-call-expression "^6.24.1" 230 | babel-helper-replace-supers "^6.24.1" 231 | babel-messages "^6.23.0" 232 | babel-runtime "^6.22.0" 233 | babel-template "^6.24.1" 234 | babel-traverse "^6.24.1" 235 | babel-types "^6.24.1" 236 | 237 | babel-plugin-transform-es2015-computed-properties@^6.5.0: 238 | version "6.24.1" 239 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 240 | dependencies: 241 | babel-runtime "^6.22.0" 242 | babel-template "^6.24.1" 243 | 244 | babel-plugin-transform-es2015-destructuring@^6.5.0: 245 | version "6.23.0" 246 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 247 | dependencies: 248 | babel-runtime "^6.22.0" 249 | 250 | babel-plugin-transform-es2015-for-of@^6.5.0: 251 | version "6.23.0" 252 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 253 | dependencies: 254 | babel-runtime "^6.22.0" 255 | 256 | babel-plugin-transform-es2015-function-name@^6.5.0: 257 | version "6.24.1" 258 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 259 | dependencies: 260 | babel-helper-function-name "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-types "^6.24.1" 263 | 264 | babel-plugin-transform-es2015-literals@^6.5.0: 265 | version "6.22.0" 266 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 267 | dependencies: 268 | babel-runtime "^6.22.0" 269 | 270 | babel-plugin-transform-es2015-modules-commonjs@^6.5.0: 271 | version "6.26.0" 272 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 273 | dependencies: 274 | babel-plugin-transform-strict-mode "^6.24.1" 275 | babel-runtime "^6.26.0" 276 | babel-template "^6.26.0" 277 | babel-types "^6.26.0" 278 | 279 | babel-plugin-transform-es2015-parameters@^6.5.0: 280 | version "6.24.1" 281 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 282 | dependencies: 283 | babel-helper-call-delegate "^6.24.1" 284 | babel-helper-get-function-arity "^6.24.1" 285 | babel-runtime "^6.22.0" 286 | babel-template "^6.24.1" 287 | babel-traverse "^6.24.1" 288 | babel-types "^6.24.1" 289 | 290 | babel-plugin-transform-es2015-shorthand-properties@^6.5.0: 291 | version "6.24.1" 292 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 293 | dependencies: 294 | babel-runtime "^6.22.0" 295 | babel-types "^6.24.1" 296 | 297 | babel-plugin-transform-es2015-spread@^6.5.0: 298 | version "6.22.0" 299 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 300 | dependencies: 301 | babel-runtime "^6.22.0" 302 | 303 | babel-plugin-transform-es2015-template-literals@^6.5.0: 304 | version "6.22.0" 305 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 306 | dependencies: 307 | babel-runtime "^6.22.0" 308 | 309 | babel-plugin-transform-exponentiation-operator@^6.5.0: 310 | version "6.24.1" 311 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 312 | dependencies: 313 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 314 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 315 | babel-runtime "^6.22.0" 316 | 317 | babel-plugin-transform-export-extensions@^6.5.0: 318 | version "6.22.0" 319 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 320 | dependencies: 321 | babel-plugin-syntax-export-extensions "^6.8.0" 322 | babel-runtime "^6.22.0" 323 | 324 | babel-plugin-transform-flow-strip-types@^6.5.0: 325 | version "6.22.0" 326 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 327 | dependencies: 328 | babel-plugin-syntax-flow "^6.18.0" 329 | babel-runtime "^6.22.0" 330 | 331 | babel-plugin-transform-function-bind@^6.5.2: 332 | version "6.22.0" 333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 334 | dependencies: 335 | babel-plugin-syntax-function-bind "^6.8.0" 336 | babel-runtime "^6.22.0" 337 | 338 | babel-plugin-transform-object-assign@^6.5.0: 339 | version "6.22.0" 340 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" 341 | dependencies: 342 | babel-runtime "^6.22.0" 343 | 344 | babel-plugin-transform-object-rest-spread@^6.5.0: 345 | version "6.26.0" 346 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 347 | dependencies: 348 | babel-plugin-syntax-object-rest-spread "^6.8.0" 349 | babel-runtime "^6.26.0" 350 | 351 | babel-plugin-transform-react-display-name@^6.5.0: 352 | version "6.25.0" 353 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 354 | dependencies: 355 | babel-runtime "^6.22.0" 356 | 357 | babel-plugin-transform-react-jsx-source@^6.5.0: 358 | version "6.22.0" 359 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 360 | dependencies: 361 | babel-plugin-syntax-jsx "^6.8.0" 362 | babel-runtime "^6.22.0" 363 | 364 | babel-plugin-transform-react-jsx@^6.5.0: 365 | version "6.24.1" 366 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 367 | dependencies: 368 | babel-helper-builder-react-jsx "^6.24.1" 369 | babel-plugin-syntax-jsx "^6.8.0" 370 | babel-runtime "^6.22.0" 371 | 372 | babel-plugin-transform-regenerator@^6.5.0: 373 | version "6.26.0" 374 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 375 | dependencies: 376 | regenerator-transform "^0.10.0" 377 | 378 | babel-plugin-transform-strict-mode@^6.24.1: 379 | version "6.24.1" 380 | resolved "http://npm.cqyanyu.com.cn/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 381 | dependencies: 382 | babel-runtime "^6.22.0" 383 | babel-types "^6.24.1" 384 | 385 | babel-preset-react-native-stage-0@^1.0.1: 386 | version "1.0.1" 387 | resolved "https://registry.yarnpkg.com/babel-preset-react-native-stage-0/-/babel-preset-react-native-stage-0-1.0.1.tgz#d5f5f685575471ef756a49f191b193269f74306e" 388 | dependencies: 389 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 390 | babel-plugin-transform-class-constructor-call "^6.6.5" 391 | babel-plugin-transform-decorators-legacy "^1.3.4" 392 | babel-plugin-transform-do-expressions "^6.5.0" 393 | babel-plugin-transform-exponentiation-operator "^6.5.0" 394 | babel-plugin-transform-export-extensions "^6.5.0" 395 | babel-plugin-transform-function-bind "^6.5.2" 396 | babel-preset-react-native "^1.5.6" 397 | 398 | babel-preset-react-native@^1.5.6: 399 | version "1.9.2" 400 | resolved "https://registry.yarnpkg.com/babel-preset-react-native/-/babel-preset-react-native-1.9.2.tgz#b22addd2e355ff3b39671b79be807e52dfa145f2" 401 | dependencies: 402 | babel-plugin-check-es2015-constants "^6.5.0" 403 | babel-plugin-react-transform "2.0.2" 404 | babel-plugin-syntax-async-functions "^6.5.0" 405 | babel-plugin-syntax-class-properties "^6.5.0" 406 | babel-plugin-syntax-flow "^6.5.0" 407 | babel-plugin-syntax-jsx "^6.5.0" 408 | babel-plugin-syntax-trailing-function-commas "^6.5.0" 409 | babel-plugin-transform-class-properties "^6.5.0" 410 | babel-plugin-transform-es2015-arrow-functions "^6.5.0" 411 | babel-plugin-transform-es2015-block-scoping "^6.5.0" 412 | babel-plugin-transform-es2015-classes "^6.5.0" 413 | babel-plugin-transform-es2015-computed-properties "^6.5.0" 414 | babel-plugin-transform-es2015-destructuring "^6.5.0" 415 | babel-plugin-transform-es2015-for-of "^6.5.0" 416 | babel-plugin-transform-es2015-function-name "^6.5.0" 417 | babel-plugin-transform-es2015-literals "^6.5.0" 418 | babel-plugin-transform-es2015-modules-commonjs "^6.5.0" 419 | babel-plugin-transform-es2015-parameters "^6.5.0" 420 | babel-plugin-transform-es2015-shorthand-properties "^6.5.0" 421 | babel-plugin-transform-es2015-spread "^6.5.0" 422 | babel-plugin-transform-es2015-template-literals "^6.5.0" 423 | babel-plugin-transform-flow-strip-types "^6.5.0" 424 | babel-plugin-transform-object-assign "^6.5.0" 425 | babel-plugin-transform-object-rest-spread "^6.5.0" 426 | babel-plugin-transform-react-display-name "^6.5.0" 427 | babel-plugin-transform-react-jsx "^6.5.0" 428 | babel-plugin-transform-react-jsx-source "^6.5.0" 429 | babel-plugin-transform-regenerator "^6.5.0" 430 | react-transform-hmr "^1.0.4" 431 | 432 | babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 433 | version "6.26.0" 434 | resolved "http://npm.cqyanyu.com.cn/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 435 | dependencies: 436 | core-js "^2.4.0" 437 | regenerator-runtime "^0.11.0" 438 | 439 | babel-template@^6.24.1, babel-template@^6.26.0, babel-template@^6.3.0: 440 | version "6.26.0" 441 | resolved "http://npm.cqyanyu.com.cn/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 442 | dependencies: 443 | babel-runtime "^6.26.0" 444 | babel-traverse "^6.26.0" 445 | babel-types "^6.26.0" 446 | babylon "^6.18.0" 447 | lodash "^4.17.4" 448 | 449 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 450 | version "6.26.0" 451 | resolved "http://npm.cqyanyu.com.cn/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 452 | dependencies: 453 | babel-code-frame "^6.26.0" 454 | babel-messages "^6.23.0" 455 | babel-runtime "^6.26.0" 456 | babel-types "^6.26.0" 457 | babylon "^6.18.0" 458 | debug "^2.6.8" 459 | globals "^9.18.0" 460 | invariant "^2.2.2" 461 | lodash "^4.17.4" 462 | 463 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 464 | version "6.26.0" 465 | resolved "http://npm.cqyanyu.com.cn/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 466 | dependencies: 467 | babel-runtime "^6.26.0" 468 | esutils "^2.0.2" 469 | lodash "^4.17.4" 470 | to-fast-properties "^1.0.3" 471 | 472 | babylon@^6.18.0: 473 | version "6.18.0" 474 | resolved "http://npm.cqyanyu.com.cn/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 475 | 476 | chalk@^1.1.3: 477 | version "1.1.3" 478 | resolved "http://npm.cqyanyu.com.cn/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 479 | dependencies: 480 | ansi-styles "^2.2.1" 481 | escape-string-regexp "^1.0.2" 482 | has-ansi "^2.0.0" 483 | strip-ansi "^3.0.0" 484 | supports-color "^2.0.0" 485 | 486 | core-js@^1.0.0: 487 | version "1.2.7" 488 | resolved "http://npm.cqyanyu.com.cn/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 489 | 490 | core-js@^2.4.0: 491 | version "2.5.3" 492 | resolved "http://npm.cqyanyu.com.cn/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 493 | 494 | debug@^2.6.8: 495 | version "2.6.9" 496 | resolved "http://npm.cqyanyu.com.cn/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 497 | dependencies: 498 | ms "2.0.0" 499 | 500 | dom-walk@^0.1.0: 501 | version "0.1.1" 502 | resolved "http://npm.cqyanyu.com.cn/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" 503 | 504 | encoding@^0.1.11: 505 | version "0.1.12" 506 | resolved "http://npm.cqyanyu.com.cn/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 507 | dependencies: 508 | iconv-lite "~0.4.13" 509 | 510 | escape-string-regexp@^1.0.2: 511 | version "1.0.5" 512 | resolved "http://npm.cqyanyu.com.cn/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 513 | 514 | esutils@^2.0.2: 515 | version "2.0.2" 516 | resolved "http://npm.cqyanyu.com.cn/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 517 | 518 | fbjs@^0.8.16: 519 | version "0.8.16" 520 | resolved "http://npm.cqyanyu.com.cn/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 521 | dependencies: 522 | core-js "^1.0.0" 523 | isomorphic-fetch "^2.1.1" 524 | loose-envify "^1.0.0" 525 | object-assign "^4.1.0" 526 | promise "^7.1.1" 527 | setimmediate "^1.0.5" 528 | ua-parser-js "^0.7.9" 529 | 530 | global@^4.3.0: 531 | version "4.3.2" 532 | resolved "http://npm.cqyanyu.com.cn/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" 533 | dependencies: 534 | min-document "^2.19.0" 535 | process "~0.5.1" 536 | 537 | globals@^9.18.0: 538 | version "9.18.0" 539 | resolved "http://npm.cqyanyu.com.cn/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 540 | 541 | has-ansi@^2.0.0: 542 | version "2.0.0" 543 | resolved "http://npm.cqyanyu.com.cn/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 544 | dependencies: 545 | ansi-regex "^2.0.0" 546 | 547 | iconv-lite@~0.4.13: 548 | version "0.4.19" 549 | resolved "http://npm.cqyanyu.com.cn/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 550 | 551 | invariant@^2.2.2: 552 | version "2.2.3" 553 | resolved "http://npm.cqyanyu.com.cn/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688" 554 | dependencies: 555 | loose-envify "^1.0.0" 556 | 557 | is-stream@^1.0.1: 558 | version "1.1.0" 559 | resolved "http://npm.cqyanyu.com.cn/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 560 | 561 | isomorphic-fetch@^2.1.1: 562 | version "2.2.1" 563 | resolved "http://npm.cqyanyu.com.cn/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 564 | dependencies: 565 | node-fetch "^1.0.1" 566 | whatwg-fetch ">=0.10.0" 567 | 568 | jest-react-native@^18.0.0: 569 | version "18.0.0" 570 | resolved "https://registry.yarnpkg.com/jest-react-native/-/jest-react-native-18.0.0.tgz#77dd909f069324599f227c58c61c2e62168726ba" 571 | 572 | js-tokens@^3.0.0, js-tokens@^3.0.2: 573 | version "3.0.2" 574 | resolved "http://npm.cqyanyu.com.cn/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 575 | 576 | lodash@^4.17.4, lodash@^4.6.1: 577 | version "4.17.15" 578 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 579 | 580 | loose-envify@^1.0.0, loose-envify@^1.3.1: 581 | version "1.3.1" 582 | resolved "http://npm.cqyanyu.com.cn/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 583 | dependencies: 584 | js-tokens "^3.0.0" 585 | 586 | min-document@^2.19.0: 587 | version "2.19.0" 588 | resolved "http://npm.cqyanyu.com.cn/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" 589 | dependencies: 590 | dom-walk "^0.1.0" 591 | 592 | ms@2.0.0: 593 | version "2.0.0" 594 | resolved "http://npm.cqyanyu.com.cn/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 595 | 596 | node-fetch@^1.0.1: 597 | version "1.7.3" 598 | resolved "http://npm.cqyanyu.com.cn/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 599 | dependencies: 600 | encoding "^0.1.11" 601 | is-stream "^1.0.1" 602 | 603 | object-assign@^4.1.0, object-assign@^4.1.1: 604 | version "4.1.1" 605 | resolved "http://npm.cqyanyu.com.cn/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 606 | 607 | private@^0.1.6: 608 | version "0.1.8" 609 | resolved "http://npm.cqyanyu.com.cn/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 610 | 611 | process@~0.5.1: 612 | version "0.5.2" 613 | resolved "http://npm.cqyanyu.com.cn/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" 614 | 615 | promise@^7.1.1: 616 | version "7.3.1" 617 | resolved "http://npm.cqyanyu.com.cn/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 618 | dependencies: 619 | asap "~2.0.3" 620 | 621 | prop-types@^15.6.0: 622 | version "15.6.1" 623 | resolved "http://npm.cqyanyu.com.cn/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 624 | dependencies: 625 | fbjs "^0.8.16" 626 | loose-envify "^1.3.1" 627 | object-assign "^4.1.1" 628 | 629 | react-deep-force-update@^1.0.0: 630 | version "1.1.1" 631 | resolved "http://npm.cqyanyu.com.cn/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz#bcd31478027b64b3339f108921ab520b4313dc2c" 632 | 633 | react-proxy@^1.1.7: 634 | version "1.1.8" 635 | resolved "http://npm.cqyanyu.com.cn/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a" 636 | dependencies: 637 | lodash "^4.6.1" 638 | react-deep-force-update "^1.0.0" 639 | 640 | react-test-renderer@16.2.0: 641 | version "16.2.0" 642 | resolved "http://npm.cqyanyu.com.cn/react-test-renderer/-/react-test-renderer-16.2.0.tgz#bddf259a6b8fcd8555f012afc8eacc238872a211" 643 | dependencies: 644 | fbjs "^0.8.16" 645 | object-assign "^4.1.1" 646 | prop-types "^15.6.0" 647 | 648 | react-transform-hmr@^1.0.4: 649 | version "1.0.4" 650 | resolved "http://npm.cqyanyu.com.cn/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb" 651 | dependencies: 652 | global "^4.3.0" 653 | react-proxy "^1.1.7" 654 | 655 | regenerator-runtime@^0.11.0: 656 | version "0.11.1" 657 | resolved "http://npm.cqyanyu.com.cn/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 658 | 659 | regenerator-transform@^0.10.0: 660 | version "0.10.1" 661 | resolved "http://npm.cqyanyu.com.cn/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 662 | dependencies: 663 | babel-runtime "^6.18.0" 664 | babel-types "^6.19.0" 665 | private "^0.1.6" 666 | 667 | setimmediate@^1.0.5: 668 | version "1.0.5" 669 | resolved "http://npm.cqyanyu.com.cn/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 670 | 671 | strip-ansi@^3.0.0: 672 | version "3.0.1" 673 | resolved "http://npm.cqyanyu.com.cn/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 674 | dependencies: 675 | ansi-regex "^2.0.0" 676 | 677 | supports-color@^2.0.0: 678 | version "2.0.0" 679 | resolved "http://npm.cqyanyu.com.cn/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 680 | 681 | to-fast-properties@^1.0.3: 682 | version "1.0.3" 683 | resolved "http://npm.cqyanyu.com.cn/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 684 | 685 | ua-parser-js@^0.7.9: 686 | version "0.7.17" 687 | resolved "http://npm.cqyanyu.com.cn/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 688 | 689 | whatwg-fetch@>=0.10.0: 690 | version "2.0.3" 691 | resolved "http://npm.cqyanyu.com.cn/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 692 | --------------------------------------------------------------------------------