├── .watchmanconfig ├── .buckconfig ├── package.json ├── blockView.js ├── ios ├── ScrollBlock │ ├── BlockView.h │ ├── AppDelegate.h │ ├── RTCBlockViewManager.m │ ├── main.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── BlockView.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── ScrollBlockTests │ ├── Info.plist │ └── ScrollBlockTests.m └── ScrollBlock.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ └── ScrollBlock.xcscheme │ └── project.pbxproj ├── .gitignore ├── LICENSE ├── README.md ├── .flowconfig └── index.ios.js /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ScrollBlock", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start" 7 | }, 8 | "dependencies": { 9 | "react": "15.2.1", 10 | "react-native": "0.30.0" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /blockView.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { requireNativeComponent } from 'react-native'; 3 | 4 | export default class BlockView extends React.Component { 5 | render() { 6 | return ; 7 | } 8 | } 9 | 10 | BlockView.propTypes = { 11 | blocked: React.PropTypes.bool, 12 | }; 13 | 14 | var RCTBlockView = requireNativeComponent('RCTBlockView', BlockView); 15 | -------------------------------------------------------------------------------- /ios/ScrollBlock/BlockView.h: -------------------------------------------------------------------------------- 1 | // 2 | // BlockView.h 3 | // MURAL 4 | // 5 | // Created by Juli on 8/3/16. 6 | // Copyright © 2016 MURAL. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | #import "RCTView.h" 12 | 13 | @class BlockView; 14 | 15 | @interface BlockView : RCTView 16 | 17 | @property (nonatomic) BOOL blocked; 18 | @property (nonatomic) UIPanGestureRecognizer * panGestureRecognizer; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /ios/ScrollBlock/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/ScrollBlock/RTCBlockViewManager.m: -------------------------------------------------------------------------------- 1 | // 2 | // RTCBlockView.m 3 | // MURAL 4 | // 5 | // Created by Juli on 8/3/16. 6 | // Copyright © 2016 MURAL. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BlockView.h" 11 | #import "RCTViewManager.h" 12 | 13 | @interface RCTBlockViewManager: RCTViewManager 14 | @end 15 | 16 | @implementation RCTBlockViewManager 17 | 18 | RCT_EXPORT_MODULE() 19 | 20 | RCT_EXPORT_VIEW_PROPERTY(blocked, BOOL) 21 | 22 | - (UIView *)view 23 | { 24 | return [[BlockView alloc] init]; 25 | } 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /ios/ScrollBlock/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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | *.iml 28 | .idea 29 | .gradle 30 | local.properties 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | 37 | # BUCK 38 | buck-out/ 39 | \.buckd/ 40 | android/app/libs 41 | android/keystores/debug.keystore 42 | -------------------------------------------------------------------------------- /ios/ScrollBlock/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/ScrollBlockTests/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/ScrollBlock/BlockView.m: -------------------------------------------------------------------------------- 1 | // 2 | // BlockView.m 3 | // MURAL 4 | // 5 | // Created by Juli on 8/3/16. 6 | // Copyright © 2016 MURAL. All rights reserved. 7 | // 8 | 9 | #import "BlockView.h" 10 | 11 | @implementation BlockView 12 | 13 | @synthesize blocked = _blocked; 14 | @synthesize panGestureRecognizer = _panGestureRecognizer; 15 | 16 | - (id)initWithFrame:(CGRect)frame 17 | { 18 | if (self = [super initWithFrame:frame]) { 19 | _panGestureRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; 20 | _panGestureRecognizer.delegate = self; 21 | _panGestureRecognizer.enabled = YES; 22 | [self addGestureRecognizer:_panGestureRecognizer]; 23 | 24 | _blocked = YES; 25 | } 26 | return self; 27 | } 28 | 29 | - (void)handlePan:(UIPanGestureRecognizer *)recognizer { 30 | } 31 | 32 | - (void)setBlocked:(BOOL)blocked 33 | { 34 | _blocked = blocked; 35 | _panGestureRecognizer.enabled = _blocked; 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Juli Racca 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-scroll-block 2 | 3 | When touching a **View** that is inside a **ScrollView** the pointer propagates and makes the canvas react as well. (https://github.com/facebook/react-native/issues/1046) 4 | 5 | The current workaround is to disable the **ScrollView** (changing `scrollEnabled` to `false`) on children's `onPanResponderGrant` and then enabling it again `onPanResponderRelease`. _(08/04/2016)_ 6 | 7 | This solution will fix that issue if disabling the **ScrollView** is not an option to you. 8 | 9 | ## Installation 10 | 11 | Do an `npm i react-native-scroll-block` and then try out this simple example :) 12 | 13 | ## Usage 14 | 15 | **BlockView** will block every interaction performed inside it, and will not propagate the pointer to it's parent. 16 | 17 | Wrap any **View** with a **BlockView** to ensure that the input won't go to the **ScrollView**. 18 | 19 | ### Props 20 | 21 | `blocked` `Boolean` 22 | 23 | Whether the view should blocked the input. 24 | 25 | Default: `true` 26 | 27 | ## Meta 28 | 29 | Written by [Maria Julia Racca](https://github.com/mjracca) and [Martin Giachetti](https://github.com/mgiachetti). 30 | 31 | Released under the MIT License: www.opensource.org/licenses/mit-license.php 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | # We fork some components by platform. 4 | .*/*.android.js 5 | 6 | # Ignore templates with `@flow` in header 7 | .*/local-cli/generator.* 8 | 9 | # Ignore malformed json 10 | .*/node_modules/y18n/test/.*\.json 11 | 12 | [include] 13 | 14 | [libs] 15 | node_modules/react-native/Libraries/react-native/react-native-interface.js 16 | node_modules/react-native/flow 17 | flow/ 18 | 19 | [options] 20 | module.system=haste 21 | 22 | esproposal.class_static_fields=enable 23 | esproposal.class_instance_fields=enable 24 | 25 | experimental.strict_type_args=true 26 | 27 | munge_underscores=true 28 | 29 | module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' 30 | 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' 31 | 32 | suppress_type=$FlowIssue 33 | suppress_type=$FlowFixMe 34 | suppress_type=$FixMe 35 | 36 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-7]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 37 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-7]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 39 | 40 | [version] 41 | ^0.27.0 42 | -------------------------------------------------------------------------------- /ios/ScrollBlock/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 "RCTBundleURLProvider.h" 13 | #import "RCTRootView.h" 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"ScrollBlock" 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/ScrollBlock/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 | NSAppTransportSecurity 26 | 27 | NSExceptionDomains 28 | 29 | localhost 30 | 31 | NSTemporaryExceptionAllowsInsecureHTTPLoads 32 | 33 | 34 | 35 | 36 | NSLocationWhenInUseUsageDescription 37 | 38 | UILaunchStoryboardName 39 | LaunchScreen 40 | UIRequiredDeviceCapabilities 41 | 42 | armv7 43 | 44 | UISupportedInterfaceOrientations 45 | 46 | UIInterfaceOrientationPortrait 47 | UIInterfaceOrientationLandscapeLeft 48 | UIInterfaceOrientationLandscapeRight 49 | UIInterfaceOrientationPortraitUpsideDown 50 | 51 | UIViewControllerBasedStatusBarAppearance 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | AppRegistry, 4 | StyleSheet, 5 | ScrollView, 6 | Dimensions, 7 | View, 8 | Text, 9 | } from 'react-native'; 10 | 11 | import BlockView from './blockView'; 12 | 13 | const CANVAS_MARGIN = 200; 14 | const CANVAS_SIZE = 1500; 15 | const BLOCK_SIZE = 200; 16 | 17 | var ScrollBlock = React.createClass({ 18 | 19 | getInitialState: function() { 20 | return { 21 | } 22 | }, 23 | 24 | getContainerStyle() { 25 | const { 26 | width, 27 | height, 28 | } = Dimensions.get('window'); 29 | 30 | return { 31 | width, 32 | height, 33 | }; 34 | }, 35 | 36 | componentWillMount: function() { 37 | }, 38 | 39 | render: function() { 40 | return ( 41 | 42 | 53 | 54 | 55 | 56 | 59 | Scroll Block 60 | 61 | 62 | 63 | 64 | 65 | 66 | ); 67 | } 68 | }); 69 | 70 | var styles = StyleSheet.create({ 71 | scrollView: { 72 | flex: 1 73 | }, 74 | canvas: { 75 | backgroundColor: '#d3d3d3', 76 | width: CANVAS_SIZE, 77 | height: CANVAS_SIZE, 78 | }, 79 | block: { 80 | backgroundColor: '#ffff00', 81 | width: BLOCK_SIZE, 82 | height: BLOCK_SIZE, 83 | position: 'absolute', 84 | top: CANVAS_SIZE/2 - BLOCK_SIZE/2, 85 | left: CANVAS_SIZE/2 - BLOCK_SIZE/2 86 | }, 87 | }); 88 | 89 | AppRegistry.registerComponent('ScrollBlock', () => ScrollBlock); 90 | -------------------------------------------------------------------------------- /ios/ScrollBlockTests/ScrollBlockTests.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 "RCTLog.h" 14 | #import "RCTRootView.h" 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface ScrollBlockTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation ScrollBlockTests 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 = [[[[UIApplication sharedApplication] 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 | -------------------------------------------------------------------------------- /ios/ScrollBlock/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/ScrollBlock.xcodeproj/xcshareddata/xcschemes/ScrollBlock.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /ios/ScrollBlock.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 /* ScrollBlockTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ScrollBlockTests.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 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 26 | A363809D1D53C5D800BBDC70 /* BlockView.m in Sources */ = {isa = PBXBuildFile; fileRef = A363809B1D53C5D800BBDC70 /* BlockView.m */; }; 27 | A363809E1D53C5D800BBDC70 /* RTCBlockViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A363809C1D53C5D800BBDC70 /* RTCBlockViewManager.m */; }; 28 | /* End PBXBuildFile section */ 29 | 30 | /* Begin PBXContainerItemProxy section */ 31 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 34 | proxyType = 2; 35 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 36 | remoteInfo = RCTActionSheet; 37 | }; 38 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 39 | isa = PBXContainerItemProxy; 40 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 41 | proxyType = 2; 42 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 43 | remoteInfo = RCTGeolocation; 44 | }; 45 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 46 | isa = PBXContainerItemProxy; 47 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 48 | proxyType = 2; 49 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 50 | remoteInfo = RCTImage; 51 | }; 52 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 57 | remoteInfo = RCTNetwork; 58 | }; 59 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 64 | remoteInfo = RCTVibration; 65 | }; 66 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 69 | proxyType = 1; 70 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 71 | remoteInfo = ScrollBlock; 72 | }; 73 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 78 | remoteInfo = RCTSettings; 79 | }; 80 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 83 | proxyType = 2; 84 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 85 | remoteInfo = RCTWebSocket; 86 | }; 87 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 90 | proxyType = 2; 91 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 92 | remoteInfo = React; 93 | }; 94 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 99 | remoteInfo = RCTLinking; 100 | }; 101 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 106 | remoteInfo = RCTText; 107 | }; 108 | /* End PBXContainerItemProxy section */ 109 | 110 | /* Begin PBXFileReference section */ 111 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 112 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 113 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 114 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 115 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 116 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 117 | 00E356EE1AD99517003FC87E /* ScrollBlockTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ScrollBlockTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 118 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 119 | 00E356F21AD99517003FC87E /* ScrollBlockTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScrollBlockTests.m; sourceTree = ""; }; 120 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 121 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 122 | 13B07F961A680F5B00A75B9A /* ScrollBlock.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ScrollBlock.app; sourceTree = BUILT_PRODUCTS_DIR; }; 123 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ScrollBlock/AppDelegate.h; sourceTree = ""; }; 124 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ScrollBlock/AppDelegate.m; sourceTree = ""; }; 125 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 126 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ScrollBlock/Images.xcassets; sourceTree = ""; }; 127 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ScrollBlock/Info.plist; sourceTree = ""; }; 128 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ScrollBlock/main.m; sourceTree = ""; }; 129 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 130 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 131 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 132 | A363809A1D53C5D800BBDC70 /* BlockView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlockView.h; path = ScrollBlock/BlockView.h; sourceTree = ""; }; 133 | A363809B1D53C5D800BBDC70 /* BlockView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BlockView.m; path = ScrollBlock/BlockView.m; sourceTree = ""; }; 134 | A363809C1D53C5D800BBDC70 /* RTCBlockViewManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTCBlockViewManager.m; path = ScrollBlock/RTCBlockViewManager.m; sourceTree = ""; }; 135 | /* End PBXFileReference section */ 136 | 137 | /* Begin PBXFrameworksBuildPhase section */ 138 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 139 | isa = PBXFrameworksBuildPhase; 140 | buildActionMask = 2147483647; 141 | files = ( 142 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 143 | ); 144 | runOnlyForDeploymentPostprocessing = 0; 145 | }; 146 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 147 | isa = PBXFrameworksBuildPhase; 148 | buildActionMask = 2147483647; 149 | files = ( 150 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 151 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 152 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 153 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 154 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 155 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 156 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 157 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 158 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 159 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 160 | ); 161 | runOnlyForDeploymentPostprocessing = 0; 162 | }; 163 | /* End PBXFrameworksBuildPhase section */ 164 | 165 | /* Begin PBXGroup section */ 166 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 167 | isa = PBXGroup; 168 | children = ( 169 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 170 | ); 171 | name = Products; 172 | sourceTree = ""; 173 | }; 174 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 178 | ); 179 | name = Products; 180 | sourceTree = ""; 181 | }; 182 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 186 | ); 187 | name = Products; 188 | sourceTree = ""; 189 | }; 190 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 191 | isa = PBXGroup; 192 | children = ( 193 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 194 | ); 195 | name = Products; 196 | sourceTree = ""; 197 | }; 198 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 199 | isa = PBXGroup; 200 | children = ( 201 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 202 | ); 203 | name = Products; 204 | sourceTree = ""; 205 | }; 206 | 00E356EF1AD99517003FC87E /* ScrollBlockTests */ = { 207 | isa = PBXGroup; 208 | children = ( 209 | 00E356F21AD99517003FC87E /* ScrollBlockTests.m */, 210 | 00E356F01AD99517003FC87E /* Supporting Files */, 211 | ); 212 | path = ScrollBlockTests; 213 | sourceTree = ""; 214 | }; 215 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 216 | isa = PBXGroup; 217 | children = ( 218 | 00E356F11AD99517003FC87E /* Info.plist */, 219 | ); 220 | name = "Supporting Files"; 221 | sourceTree = ""; 222 | }; 223 | 139105B71AF99BAD00B5F7CC /* Products */ = { 224 | isa = PBXGroup; 225 | children = ( 226 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 227 | ); 228 | name = Products; 229 | sourceTree = ""; 230 | }; 231 | 139FDEE71B06529A00C62182 /* Products */ = { 232 | isa = PBXGroup; 233 | children = ( 234 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 235 | ); 236 | name = Products; 237 | sourceTree = ""; 238 | }; 239 | 13B07FAE1A68108700A75B9A /* ScrollBlock */ = { 240 | isa = PBXGroup; 241 | children = ( 242 | A363809A1D53C5D800BBDC70 /* BlockView.h */, 243 | A363809B1D53C5D800BBDC70 /* BlockView.m */, 244 | A363809C1D53C5D800BBDC70 /* RTCBlockViewManager.m */, 245 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 246 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 247 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 248 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 249 | 13B07FB61A68108700A75B9A /* Info.plist */, 250 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 251 | 13B07FB71A68108700A75B9A /* main.m */, 252 | ); 253 | name = ScrollBlock; 254 | sourceTree = ""; 255 | }; 256 | 146834001AC3E56700842450 /* Products */ = { 257 | isa = PBXGroup; 258 | children = ( 259 | 146834041AC3E56700842450 /* libReact.a */, 260 | ); 261 | name = Products; 262 | sourceTree = ""; 263 | }; 264 | 78C398B11ACF4ADC00677621 /* Products */ = { 265 | isa = PBXGroup; 266 | children = ( 267 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 268 | ); 269 | name = Products; 270 | sourceTree = ""; 271 | }; 272 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 273 | isa = PBXGroup; 274 | children = ( 275 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 276 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 277 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 278 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 279 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 280 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 281 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 282 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 283 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 284 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 285 | ); 286 | name = Libraries; 287 | sourceTree = ""; 288 | }; 289 | 832341B11AAA6A8300B99B32 /* Products */ = { 290 | isa = PBXGroup; 291 | children = ( 292 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 293 | ); 294 | name = Products; 295 | sourceTree = ""; 296 | }; 297 | 83CBB9F61A601CBA00E9B192 = { 298 | isa = PBXGroup; 299 | children = ( 300 | 13B07FAE1A68108700A75B9A /* ScrollBlock */, 301 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 302 | 00E356EF1AD99517003FC87E /* ScrollBlockTests */, 303 | 83CBBA001A601CBA00E9B192 /* Products */, 304 | ); 305 | indentWidth = 2; 306 | sourceTree = ""; 307 | tabWidth = 2; 308 | }; 309 | 83CBBA001A601CBA00E9B192 /* Products */ = { 310 | isa = PBXGroup; 311 | children = ( 312 | 13B07F961A680F5B00A75B9A /* ScrollBlock.app */, 313 | 00E356EE1AD99517003FC87E /* ScrollBlockTests.xctest */, 314 | ); 315 | name = Products; 316 | sourceTree = ""; 317 | }; 318 | /* End PBXGroup section */ 319 | 320 | /* Begin PBXNativeTarget section */ 321 | 00E356ED1AD99517003FC87E /* ScrollBlockTests */ = { 322 | isa = PBXNativeTarget; 323 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ScrollBlockTests" */; 324 | buildPhases = ( 325 | 00E356EA1AD99517003FC87E /* Sources */, 326 | 00E356EB1AD99517003FC87E /* Frameworks */, 327 | 00E356EC1AD99517003FC87E /* Resources */, 328 | ); 329 | buildRules = ( 330 | ); 331 | dependencies = ( 332 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 333 | ); 334 | name = ScrollBlockTests; 335 | productName = ScrollBlockTests; 336 | productReference = 00E356EE1AD99517003FC87E /* ScrollBlockTests.xctest */; 337 | productType = "com.apple.product-type.bundle.unit-test"; 338 | }; 339 | 13B07F861A680F5B00A75B9A /* ScrollBlock */ = { 340 | isa = PBXNativeTarget; 341 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ScrollBlock" */; 342 | buildPhases = ( 343 | 13B07F871A680F5B00A75B9A /* Sources */, 344 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 345 | 13B07F8E1A680F5B00A75B9A /* Resources */, 346 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 347 | ); 348 | buildRules = ( 349 | ); 350 | dependencies = ( 351 | ); 352 | name = ScrollBlock; 353 | productName = "Hello World"; 354 | productReference = 13B07F961A680F5B00A75B9A /* ScrollBlock.app */; 355 | productType = "com.apple.product-type.application"; 356 | }; 357 | /* End PBXNativeTarget section */ 358 | 359 | /* Begin PBXProject section */ 360 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 361 | isa = PBXProject; 362 | attributes = { 363 | LastUpgradeCheck = 0610; 364 | ORGANIZATIONNAME = Facebook; 365 | TargetAttributes = { 366 | 00E356ED1AD99517003FC87E = { 367 | CreatedOnToolsVersion = 6.2; 368 | TestTargetID = 13B07F861A680F5B00A75B9A; 369 | }; 370 | }; 371 | }; 372 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ScrollBlock" */; 373 | compatibilityVersion = "Xcode 3.2"; 374 | developmentRegion = English; 375 | hasScannedForEncodings = 0; 376 | knownRegions = ( 377 | en, 378 | Base, 379 | ); 380 | mainGroup = 83CBB9F61A601CBA00E9B192; 381 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 382 | projectDirPath = ""; 383 | projectReferences = ( 384 | { 385 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 386 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 387 | }, 388 | { 389 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 390 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 391 | }, 392 | { 393 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 394 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 395 | }, 396 | { 397 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 398 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 399 | }, 400 | { 401 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 402 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 403 | }, 404 | { 405 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 406 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 407 | }, 408 | { 409 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 410 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 411 | }, 412 | { 413 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 414 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 415 | }, 416 | { 417 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 418 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 419 | }, 420 | { 421 | ProductGroup = 146834001AC3E56700842450 /* Products */; 422 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 423 | }, 424 | ); 425 | projectRoot = ""; 426 | targets = ( 427 | 13B07F861A680F5B00A75B9A /* ScrollBlock */, 428 | 00E356ED1AD99517003FC87E /* ScrollBlockTests */, 429 | ); 430 | }; 431 | /* End PBXProject section */ 432 | 433 | /* Begin PBXReferenceProxy section */ 434 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 435 | isa = PBXReferenceProxy; 436 | fileType = archive.ar; 437 | path = libRCTActionSheet.a; 438 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 439 | sourceTree = BUILT_PRODUCTS_DIR; 440 | }; 441 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 442 | isa = PBXReferenceProxy; 443 | fileType = archive.ar; 444 | path = libRCTGeolocation.a; 445 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 446 | sourceTree = BUILT_PRODUCTS_DIR; 447 | }; 448 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 449 | isa = PBXReferenceProxy; 450 | fileType = archive.ar; 451 | path = libRCTImage.a; 452 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 453 | sourceTree = BUILT_PRODUCTS_DIR; 454 | }; 455 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 456 | isa = PBXReferenceProxy; 457 | fileType = archive.ar; 458 | path = libRCTNetwork.a; 459 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 460 | sourceTree = BUILT_PRODUCTS_DIR; 461 | }; 462 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 463 | isa = PBXReferenceProxy; 464 | fileType = archive.ar; 465 | path = libRCTVibration.a; 466 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 467 | sourceTree = BUILT_PRODUCTS_DIR; 468 | }; 469 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 470 | isa = PBXReferenceProxy; 471 | fileType = archive.ar; 472 | path = libRCTSettings.a; 473 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 474 | sourceTree = BUILT_PRODUCTS_DIR; 475 | }; 476 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 477 | isa = PBXReferenceProxy; 478 | fileType = archive.ar; 479 | path = libRCTWebSocket.a; 480 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 481 | sourceTree = BUILT_PRODUCTS_DIR; 482 | }; 483 | 146834041AC3E56700842450 /* libReact.a */ = { 484 | isa = PBXReferenceProxy; 485 | fileType = archive.ar; 486 | path = libReact.a; 487 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 488 | sourceTree = BUILT_PRODUCTS_DIR; 489 | }; 490 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 491 | isa = PBXReferenceProxy; 492 | fileType = archive.ar; 493 | path = libRCTLinking.a; 494 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 495 | sourceTree = BUILT_PRODUCTS_DIR; 496 | }; 497 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 498 | isa = PBXReferenceProxy; 499 | fileType = archive.ar; 500 | path = libRCTText.a; 501 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 502 | sourceTree = BUILT_PRODUCTS_DIR; 503 | }; 504 | /* End PBXReferenceProxy section */ 505 | 506 | /* Begin PBXResourcesBuildPhase section */ 507 | 00E356EC1AD99517003FC87E /* Resources */ = { 508 | isa = PBXResourcesBuildPhase; 509 | buildActionMask = 2147483647; 510 | files = ( 511 | ); 512 | runOnlyForDeploymentPostprocessing = 0; 513 | }; 514 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 515 | isa = PBXResourcesBuildPhase; 516 | buildActionMask = 2147483647; 517 | files = ( 518 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 519 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 520 | ); 521 | runOnlyForDeploymentPostprocessing = 0; 522 | }; 523 | /* End PBXResourcesBuildPhase section */ 524 | 525 | /* Begin PBXShellScriptBuildPhase section */ 526 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 527 | isa = PBXShellScriptBuildPhase; 528 | buildActionMask = 2147483647; 529 | files = ( 530 | ); 531 | inputPaths = ( 532 | ); 533 | name = "Bundle React Native code and images"; 534 | outputPaths = ( 535 | ); 536 | runOnlyForDeploymentPostprocessing = 0; 537 | shellPath = /bin/sh; 538 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 539 | }; 540 | /* End PBXShellScriptBuildPhase section */ 541 | 542 | /* Begin PBXSourcesBuildPhase section */ 543 | 00E356EA1AD99517003FC87E /* Sources */ = { 544 | isa = PBXSourcesBuildPhase; 545 | buildActionMask = 2147483647; 546 | files = ( 547 | 00E356F31AD99517003FC87E /* ScrollBlockTests.m in Sources */, 548 | ); 549 | runOnlyForDeploymentPostprocessing = 0; 550 | }; 551 | 13B07F871A680F5B00A75B9A /* Sources */ = { 552 | isa = PBXSourcesBuildPhase; 553 | buildActionMask = 2147483647; 554 | files = ( 555 | A363809D1D53C5D800BBDC70 /* BlockView.m in Sources */, 556 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 557 | A363809E1D53C5D800BBDC70 /* RTCBlockViewManager.m in Sources */, 558 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 559 | ); 560 | runOnlyForDeploymentPostprocessing = 0; 561 | }; 562 | /* End PBXSourcesBuildPhase section */ 563 | 564 | /* Begin PBXTargetDependency section */ 565 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 566 | isa = PBXTargetDependency; 567 | target = 13B07F861A680F5B00A75B9A /* ScrollBlock */; 568 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 569 | }; 570 | /* End PBXTargetDependency section */ 571 | 572 | /* Begin PBXVariantGroup section */ 573 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 574 | isa = PBXVariantGroup; 575 | children = ( 576 | 13B07FB21A68108700A75B9A /* Base */, 577 | ); 578 | name = LaunchScreen.xib; 579 | path = ScrollBlock; 580 | sourceTree = ""; 581 | }; 582 | /* End PBXVariantGroup section */ 583 | 584 | /* Begin XCBuildConfiguration section */ 585 | 00E356F61AD99517003FC87E /* Debug */ = { 586 | isa = XCBuildConfiguration; 587 | buildSettings = { 588 | BUNDLE_LOADER = "$(TEST_HOST)"; 589 | GCC_PREPROCESSOR_DEFINITIONS = ( 590 | "DEBUG=1", 591 | "$(inherited)", 592 | ); 593 | INFOPLIST_FILE = ScrollBlockTests/Info.plist; 594 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 595 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 596 | PRODUCT_NAME = "$(TARGET_NAME)"; 597 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScrollBlock.app/ScrollBlock"; 598 | }; 599 | name = Debug; 600 | }; 601 | 00E356F71AD99517003FC87E /* Release */ = { 602 | isa = XCBuildConfiguration; 603 | buildSettings = { 604 | BUNDLE_LOADER = "$(TEST_HOST)"; 605 | COPY_PHASE_STRIP = NO; 606 | INFOPLIST_FILE = ScrollBlockTests/Info.plist; 607 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 608 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 609 | PRODUCT_NAME = "$(TARGET_NAME)"; 610 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ScrollBlock.app/ScrollBlock"; 611 | }; 612 | name = Release; 613 | }; 614 | 13B07F941A680F5B00A75B9A /* Debug */ = { 615 | isa = XCBuildConfiguration; 616 | buildSettings = { 617 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 618 | DEAD_CODE_STRIPPING = NO; 619 | HEADER_SEARCH_PATHS = ( 620 | "$(inherited)", 621 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 622 | "$(SRCROOT)/../node_modules/react-native/React/**", 623 | ); 624 | INFOPLIST_FILE = ScrollBlock/Info.plist; 625 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 626 | OTHER_LDFLAGS = ( 627 | "$(inherited)", 628 | "-ObjC", 629 | "-lc++", 630 | ); 631 | PRODUCT_NAME = ScrollBlock; 632 | TARGETED_DEVICE_FAMILY = "1,2"; 633 | }; 634 | name = Debug; 635 | }; 636 | 13B07F951A680F5B00A75B9A /* Release */ = { 637 | isa = XCBuildConfiguration; 638 | buildSettings = { 639 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 640 | HEADER_SEARCH_PATHS = ( 641 | "$(inherited)", 642 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 643 | "$(SRCROOT)/../node_modules/react-native/React/**", 644 | ); 645 | INFOPLIST_FILE = ScrollBlock/Info.plist; 646 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 647 | OTHER_LDFLAGS = ( 648 | "$(inherited)", 649 | "-ObjC", 650 | "-lc++", 651 | ); 652 | PRODUCT_NAME = ScrollBlock; 653 | TARGETED_DEVICE_FAMILY = "1,2"; 654 | }; 655 | name = Release; 656 | }; 657 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 658 | isa = XCBuildConfiguration; 659 | buildSettings = { 660 | ALWAYS_SEARCH_USER_PATHS = NO; 661 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 662 | CLANG_CXX_LIBRARY = "libc++"; 663 | CLANG_ENABLE_MODULES = YES; 664 | CLANG_ENABLE_OBJC_ARC = YES; 665 | CLANG_WARN_BOOL_CONVERSION = YES; 666 | CLANG_WARN_CONSTANT_CONVERSION = YES; 667 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 668 | CLANG_WARN_EMPTY_BODY = YES; 669 | CLANG_WARN_ENUM_CONVERSION = YES; 670 | CLANG_WARN_INT_CONVERSION = YES; 671 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 672 | CLANG_WARN_UNREACHABLE_CODE = YES; 673 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 674 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 675 | COPY_PHASE_STRIP = NO; 676 | ENABLE_STRICT_OBJC_MSGSEND = YES; 677 | GCC_C_LANGUAGE_STANDARD = gnu99; 678 | GCC_DYNAMIC_NO_PIC = NO; 679 | GCC_OPTIMIZATION_LEVEL = 0; 680 | GCC_PREPROCESSOR_DEFINITIONS = ( 681 | "DEBUG=1", 682 | "$(inherited)", 683 | ); 684 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 685 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 686 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 687 | GCC_WARN_UNDECLARED_SELECTOR = YES; 688 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 689 | GCC_WARN_UNUSED_FUNCTION = YES; 690 | GCC_WARN_UNUSED_VARIABLE = YES; 691 | HEADER_SEARCH_PATHS = ( 692 | "$(inherited)", 693 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 694 | "$(SRCROOT)/../node_modules/react-native/React/**", 695 | ); 696 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 697 | MTL_ENABLE_DEBUG_INFO = YES; 698 | ONLY_ACTIVE_ARCH = YES; 699 | SDKROOT = iphoneos; 700 | }; 701 | name = Debug; 702 | }; 703 | 83CBBA211A601CBA00E9B192 /* Release */ = { 704 | isa = XCBuildConfiguration; 705 | buildSettings = { 706 | ALWAYS_SEARCH_USER_PATHS = NO; 707 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 708 | CLANG_CXX_LIBRARY = "libc++"; 709 | CLANG_ENABLE_MODULES = YES; 710 | CLANG_ENABLE_OBJC_ARC = YES; 711 | CLANG_WARN_BOOL_CONVERSION = YES; 712 | CLANG_WARN_CONSTANT_CONVERSION = YES; 713 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 714 | CLANG_WARN_EMPTY_BODY = YES; 715 | CLANG_WARN_ENUM_CONVERSION = YES; 716 | CLANG_WARN_INT_CONVERSION = YES; 717 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 718 | CLANG_WARN_UNREACHABLE_CODE = YES; 719 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 720 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 721 | COPY_PHASE_STRIP = YES; 722 | ENABLE_NS_ASSERTIONS = NO; 723 | ENABLE_STRICT_OBJC_MSGSEND = YES; 724 | GCC_C_LANGUAGE_STANDARD = gnu99; 725 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 726 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 727 | GCC_WARN_UNDECLARED_SELECTOR = YES; 728 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 729 | GCC_WARN_UNUSED_FUNCTION = YES; 730 | GCC_WARN_UNUSED_VARIABLE = YES; 731 | HEADER_SEARCH_PATHS = ( 732 | "$(inherited)", 733 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 734 | "$(SRCROOT)/../node_modules/react-native/React/**", 735 | ); 736 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 737 | MTL_ENABLE_DEBUG_INFO = NO; 738 | SDKROOT = iphoneos; 739 | VALIDATE_PRODUCT = YES; 740 | }; 741 | name = Release; 742 | }; 743 | /* End XCBuildConfiguration section */ 744 | 745 | /* Begin XCConfigurationList section */ 746 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ScrollBlockTests" */ = { 747 | isa = XCConfigurationList; 748 | buildConfigurations = ( 749 | 00E356F61AD99517003FC87E /* Debug */, 750 | 00E356F71AD99517003FC87E /* Release */, 751 | ); 752 | defaultConfigurationIsVisible = 0; 753 | defaultConfigurationName = Release; 754 | }; 755 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ScrollBlock" */ = { 756 | isa = XCConfigurationList; 757 | buildConfigurations = ( 758 | 13B07F941A680F5B00A75B9A /* Debug */, 759 | 13B07F951A680F5B00A75B9A /* Release */, 760 | ); 761 | defaultConfigurationIsVisible = 0; 762 | defaultConfigurationName = Release; 763 | }; 764 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ScrollBlock" */ = { 765 | isa = XCConfigurationList; 766 | buildConfigurations = ( 767 | 83CBBA201A601CBA00E9B192 /* Debug */, 768 | 83CBBA211A601CBA00E9B192 /* Release */, 769 | ); 770 | defaultConfigurationIsVisible = 0; 771 | defaultConfigurationName = Release; 772 | }; 773 | /* End XCConfigurationList section */ 774 | }; 775 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 776 | } 777 | --------------------------------------------------------------------------------