├── .gitattributes ├── .npmignore ├── examples └── simple │ ├── .watchmanconfig │ ├── .gitattributes │ ├── .babelrc │ ├── app.json │ ├── android │ ├── settings.gradle │ ├── app │ │ ├── src │ │ │ └── main │ │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── simple │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── AndroidManifest.xml │ │ ├── BUCK │ │ ├── proguard-rules.pro │ │ └── build.gradle │ ├── keystores │ │ ├── debug.keystore.properties │ │ └── BUCK │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── build.gradle │ ├── gradle.properties │ ├── gradlew.bat │ └── gradlew │ ├── ios │ ├── simple │ │ ├── Images.xcassets │ │ │ ├── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── AppDelegate.h │ │ ├── main.m │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── Base.lproj │ │ │ └── LaunchScreen.xib │ ├── simpleTests │ │ ├── Info.plist │ │ └── simpleTests.m │ ├── simple-tvOSTests │ │ └── Info.plist │ ├── simple-tvOS │ │ └── Info.plist │ └── simple.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── simple.xcscheme │ │ │ └── simple-tvOS.xcscheme │ │ └── project.pbxproj │ ├── index.js │ ├── .buckconfig │ ├── package.json │ ├── .gitignore │ ├── .flowconfig │ └── App.js ├── media ├── banner.png └── screenshot.png ├── ios ├── RNSuperEllipseMask.xcworkspace │ └── contents.xcworkspacedata ├── SuperEllipseMaskManager.h ├── SuperEllipseMask.h ├── SuperEllipseMaskManager.m ├── SuperEllipseMask.m └── RNSuperEllipseMask.xcodeproj │ └── project.pbxproj ├── .gitignore ├── react-native-super-ellipse-mask.podspec ├── package.json ├── index.js ├── LICENSE ├── README.md └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | media 2 | examples 3 | -------------------------------------------------------------------------------- /examples/simple/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/simple/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /examples/simple/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/simple/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "simple", 3 | "displayName": "simple" 4 | } -------------------------------------------------------------------------------- /examples/simple/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'simple' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/media/banner.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | simple 3 | 4 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/simple/index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | 4 | AppRegistry.registerComponent('simple', () => App); 5 | -------------------------------------------------------------------------------- /examples/simple/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /examples/simple/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/examples/simple/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/examples/simple/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/examples/simple/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/examples/simple/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/HEAD/examples/simple/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/simple/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /ios/RNSuperEllipseMask.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | 3 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /ios/SuperEllipseMaskManager.h: -------------------------------------------------------------------------------- 1 | #if __has_include() 2 | #import 3 | #elif __has_include(“RCTViewManager.h”) 4 | #import “RCTViewManager.h” 5 | #else 6 | #import “React/RCTViewManager.h” 7 | #endif 8 | 9 | @interface SuperEllipseMaskManager : RCTViewManager 10 | 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios/SuperEllipseMask.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class RCTEventDispatcher; 4 | 5 | @interface SuperEllipseMask : UIView 6 | 7 | @property (nonatomic, assign) CGFloat topLeft; 8 | @property (nonatomic, assign) CGFloat topRight; 9 | @property (nonatomic, assign) CGFloat bottomRight; 10 | @property (nonatomic, assign) CGFloat bottomLeft; 11 | 12 | 13 | - (instancetype)initWithFrame:(CGRect)frame 14 | NS_DESIGNATED_INITIALIZER; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/java/com/simple/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.simple; 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 "simple"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # OSX 3 | # 4 | .DS_Store 5 | 6 | # node.js 7 | # 8 | node_modules/ 9 | npm-debug.log 10 | yarn-error.log 11 | 12 | 13 | # Xcode 14 | # 15 | build/ 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | xcuserdata 25 | *.xccheckout 26 | *.moved-aside 27 | DerivedData 28 | *.hmap 29 | *.ipa 30 | *.xcuserstate 31 | project.xcworkspace 32 | 33 | node_modules/**/* 34 | -------------------------------------------------------------------------------- /react-native-super-ellipse-mask.podspec: -------------------------------------------------------------------------------- 1 | require "json" 2 | 3 | json = File.read(File.join(__dir__, "package.json")) 4 | package = JSON.parse(json).deep_symbolize_keys 5 | 6 | Pod::Spec.new do |s| 7 | s.name = package[:name] 8 | s.version = package[:version] 9 | s.license = { type: "MIT" } 10 | s.homepage = "https://github.com/everdrone/react-native-super-ellipse-mask" 11 | s.authors = package[:author] 12 | s.summary = package[:description] 13 | s.source = { git: package[:repository][:url] } 14 | s.source_files = "ios/**/*.{h,m}" 15 | s.platform = :ios, "8.0" 16 | 17 | s.dependency "React" 18 | end -------------------------------------------------------------------------------- /examples/simple/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "simple", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "16.3.1", 11 | "react-native": "0.55.3", 12 | "react-native-super-ellipse-mask": "^1.0.6" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "22.4.3", 16 | "babel-preset-react-native": "4.0.0", 17 | "jest": "22.4.3", 18 | "react-test-renderer": "16.3.1" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-super-ellipse-mask", 3 | "version": "1.0.7", 4 | "description": "Apple flavored smooth corners for React Native", 5 | "main": "index.js", 6 | "scripts": {}, 7 | "keywords": [ 8 | "react-native", 9 | "squircle", 10 | "smooth", 11 | "rounded", 12 | "superellipse", 13 | "curvature", 14 | "continuity" 15 | ], 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/everdrone/react-native-super-ellipse-mask" 19 | }, 20 | "author": "everdrone", 21 | "license": "Apple flavored smooth corners for React Native", 22 | "peerDependencies": { 23 | "prop-types": "^15.6.1" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /ios/SuperEllipseMaskManager.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import "SuperEllipseMask.h" 3 | #import "SuperEllipseMaskManager.h" 4 | 5 | #if __has_include() 6 | #import 7 | #elif __has_include(“RCTBridge.h”) 8 | #import “RCTBridge.h” 9 | #else 10 | #import “React/RCTBridge.h” 11 | #endif 12 | 13 | @implementation SuperEllipseMaskManager 14 | 15 | @synthesize bridge = _bridge; 16 | 17 | RCT_EXPORT_MODULE(); 18 | 19 | - (UIView *)view 20 | { 21 | return [[SuperEllipseMask alloc] init]; 22 | } 23 | 24 | RCT_EXPORT_VIEW_PROPERTY(topLeft, CGFloat) 25 | RCT_EXPORT_VIEW_PROPERTY(topRight, CGFloat) 26 | RCT_EXPORT_VIEW_PROPERTY(bottomRight, CGFloat) 27 | RCT_EXPORT_VIEW_PROPERTY(bottomLeft, CGFloat) 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/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 | } -------------------------------------------------------------------------------- /examples/simple/ios/simpleTests/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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple-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 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // import { NativeModules } from 'react-native'; 2 | 3 | // const { RNSuperEllipseMask } = NativeModules; 4 | 5 | // export default RNSuperEllipseMask; 6 | 7 | import React, { Component } from 'react'; 8 | import PropTypes from 'prop-types'; 9 | import { requireNativeComponent } from 'react-native'; 10 | 11 | const SuperEllipseMask = requireNativeComponent( 12 | 'SuperEllipseMask', 13 | SuperEllipseMaskView 14 | ); 15 | 16 | export default class SuperEllipseMaskView extends Component { 17 | render() { 18 | const { radius, ...rest } = this.props; 19 | 20 | let r = { 21 | topLeft: radius, 22 | topRight: radius, 23 | bottomLeft: radius, 24 | bottomRight: radius, 25 | }; 26 | if (typeof radius == 'object') { 27 | r = radius; 28 | } 29 | 30 | return ; 31 | } 32 | } 33 | 34 | SuperEllipseMaskView.propTypes = { 35 | topLeft: PropTypes.number, 36 | topRight: PropTypes.number, 37 | bottomRight: PropTypes.number, 38 | bottomLeft: PropTypes.number, 39 | }; 40 | -------------------------------------------------------------------------------- /examples/simple/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Giorgio Tropiano 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 | -------------------------------------------------------------------------------- /examples/simple/android/app/src/main/java/com/simple/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.simple; 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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"simple" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /examples/simple/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.67.0 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | SuperEllipse 3 |

4 |

5 | 6 | Apple flavored smooth corners for React Native (iOS only). 7 | 8 | ## Screenshots 9 | ![Individual Corners](https://raw.githubusercontent.com/everdrone/react-native-super-ellipse-mask/master/media/screenshot.png) 10 | 11 | ## Install 12 | 13 | ```bash 14 | yarn add react-native-super-ellipse-mask 15 | ``` 16 | 17 | ## Link 18 | 19 | #### Automatic 20 | 21 | ```bash 22 | react-native link react-native-super-ellipse-mask 23 | ``` 24 | 25 | #### Manual 26 | 27 | ##### iOS 28 | 29 | 1. In XCode, in the project navigator, right click `Libraries` > `Add Files to [your project's name]` 30 | 2. Go to `node_modules` > `react-native-super-ellipse-mask` and add `RNSuperEllipseMask.xcodeproj` 31 | 3. In XCode, in the project navigator, select your project. Add `libRNSuperEllipseMask.a` to your project's `Build Phases` > `Link Binary With Libraries` 32 | 4. Run your project (`Cmd+R`) 33 | 34 | ## Usage 35 | 36 | ```javascript 37 | 38 | 45 | 46 | ``` 47 | 48 | #### Props 49 | - `radius` `object | number`: Sets the corner radius. 50 | - `number`: uniform corner radius. 51 | - `object`: `{topLeft, topRight, bottomRight, bottomLeft}` 52 | 53 | ## Contribute 54 | 55 | Found a bug? [File an issue](https://github.com/everdrone/react-native-super-ellipse-mask/issues) 56 | Already know how to fix it? [Open a Pull Request](https://github.com/everdrone/react-native-super-ellipse-mask/pulls) 57 | -------------------------------------------------------------------------------- /examples/simple/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.simple", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.simple", 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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple-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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | simple 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 | -------------------------------------------------------------------------------- /examples/simple/ios/simpleTests/simpleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface simpleTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation simpleTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | asap@~2.0.3: 6 | version "2.0.6" 7 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 8 | 9 | core-js@^1.0.0: 10 | version "1.2.7" 11 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 12 | 13 | encoding@^0.1.11: 14 | version "0.1.12" 15 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 16 | dependencies: 17 | iconv-lite "~0.4.13" 18 | 19 | fbjs@^0.8.16: 20 | version "0.8.16" 21 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 22 | dependencies: 23 | core-js "^1.0.0" 24 | isomorphic-fetch "^2.1.1" 25 | loose-envify "^1.0.0" 26 | object-assign "^4.1.0" 27 | promise "^7.1.1" 28 | setimmediate "^1.0.5" 29 | ua-parser-js "^0.7.9" 30 | 31 | iconv-lite@~0.4.13: 32 | version "0.4.21" 33 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a400f3218d348094798" 34 | dependencies: 35 | safer-buffer "^2.1.0" 36 | 37 | is-stream@^1.0.1: 38 | version "1.1.0" 39 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 40 | 41 | isomorphic-fetch@^2.1.1: 42 | version "2.2.1" 43 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 44 | dependencies: 45 | node-fetch "^1.0.1" 46 | whatwg-fetch ">=0.10.0" 47 | 48 | js-tokens@^3.0.0: 49 | version "3.0.2" 50 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 51 | 52 | loose-envify@^1.0.0, loose-envify@^1.3.1: 53 | version "1.3.1" 54 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 55 | dependencies: 56 | js-tokens "^3.0.0" 57 | 58 | node-fetch@^1.0.1: 59 | version "1.7.3" 60 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 61 | dependencies: 62 | encoding "^0.1.11" 63 | is-stream "^1.0.1" 64 | 65 | object-assign@^4.1.0, object-assign@^4.1.1: 66 | version "4.1.1" 67 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 68 | 69 | promise@^7.1.1: 70 | version "7.3.1" 71 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 72 | dependencies: 73 | asap "~2.0.3" 74 | 75 | prop-types@^15.6.1: 76 | version "15.6.1" 77 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.1.tgz#36644453564255ddda391191fb3a125cbdf654ca" 78 | dependencies: 79 | fbjs "^0.8.16" 80 | loose-envify "^1.3.1" 81 | object-assign "^4.1.1" 82 | 83 | safer-buffer@^2.1.0: 84 | version "2.1.2" 85 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 86 | 87 | setimmediate@^1.0.5: 88 | version "1.0.5" 89 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 90 | 91 | ua-parser-js@^0.7.9: 92 | version "0.7.17" 93 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 94 | 95 | whatwg-fetch@>=0.10.0: 96 | version "2.0.4" 97 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" 98 | -------------------------------------------------------------------------------- /examples/simple/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { StyleSheet, Text, View } from 'react-native'; 3 | 4 | import SuperEllipseMask from 'react-native-super-ellipse-mask'; 5 | 6 | const colors = { 7 | purple: '#5856D6', 8 | pink: '#FF2D55', 9 | }; 10 | 11 | export default class App extends Component { 12 | render() { 13 | return ( 14 | 15 | 23 | SuperEllipse 24 | 25 | 31 | The hunt for the Squircle is over 32 | 33 | 34 | 35 | 36 | SuperEllipse 37 | 38 | 39 | 45 | Factory 46 | 47 | 48 | 49 | 58 | 59 | SuperEllipse 60 | 61 | 62 | 74 | Factory 75 | 76 | 77 | 78 | 79 | 80 | SuperEllipse 81 | 82 | 83 | 92 | Factory 93 | 94 | 95 | 96 | ); 97 | } 98 | } 99 | 100 | const styles = StyleSheet.create({ 101 | box: { 102 | justifyContent: 'center', 103 | alignItems: 'center', 104 | width: 160, 105 | height: 160, 106 | backgroundColor: colors.pink, 107 | }, 108 | container: { 109 | flex: 1, 110 | justifyContent: 'center', 111 | alignItems: 'center', 112 | backgroundColor: '#FFF', 113 | }, 114 | welcome: { 115 | fontSize: 18, 116 | textAlign: 'center', 117 | color: 'white', 118 | }, 119 | }); 120 | -------------------------------------------------------------------------------- /examples/simple/ios/simple/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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple.xcodeproj/xcshareddata/xcschemes/simple.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 | -------------------------------------------------------------------------------- /examples/simple/ios/simple.xcodeproj/xcshareddata/xcschemes/simple-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 | -------------------------------------------------------------------------------- /examples/simple/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 | -------------------------------------------------------------------------------- /examples/simple/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.simple" 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 | -------------------------------------------------------------------------------- /ios/SuperEllipseMask.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import "SuperEllipseMask.h" 3 | 4 | #if __has_include() 5 | #import 6 | #elif __has_include() 7 | #import “RCTEventDispatcher.h” 8 | #else 9 | #import "React/RCTEventDispatcher.h" 10 | #endif 11 | 12 | 13 | @implementation SuperEllipseMask : UIView { 14 | 15 | RCTEventDispatcher *_eventDispatcher; 16 | CAShapeLayer *mask; 17 | UIBezierPath *path; 18 | UIView *maskView; 19 | 20 | CGFloat coeff; 21 | NSArray *values; 22 | } 23 | 24 | - (instancetype)initWithFrame:(CGRect)frame 25 | { 26 | if ((self = [super initWithFrame:frame])) { 27 | coeff = 1.28195; 28 | 29 | mask = [[CAShapeLayer alloc] init]; 30 | mask.frame = frame; 31 | path = [[UIBezierPath alloc] init]; 32 | mask.fillColor = [UIColor blackColor].CGColor; 33 | self.layer.opaque = false; 34 | 35 | // set mask layer 36 | maskView = [[UIView alloc] init]; 37 | [maskView.layer addSublayer:mask]; 38 | self.maskView = maskView; 39 | 40 | self.topRight = 0; 41 | self.bottomRight = 0; 42 | self.topLeft = 0; 43 | self.bottomLeft = 0; 44 | } 45 | 46 | return self; 47 | } 48 | 49 | - (void)cornerLogic:(CGRect)rect { 50 | CGFloat w = rect.size.width; 51 | CGFloat h = rect.size.height; 52 | 53 | CGFloat mTopLeft = self.topLeft * coeff; 54 | CGFloat mTopRight = self.topRight * coeff; 55 | CGFloat mBottomRight = self.bottomRight * coeff; 56 | CGFloat mBottomLeft = self.bottomLeft * coeff; 57 | 58 | CGFloat shorter; 59 | CGFloat x; 60 | 61 | // topRight 62 | shorter = MIN(w, h); 63 | x = mTopRight; 64 | x = x > shorter ? shorter : x; 65 | self.topRight = x / coeff; 66 | 67 | // bottomRight 68 | shorter = MIN(w, h - x); 69 | x = mBottomRight; 70 | x = x > shorter ? shorter : x; 71 | self.bottomRight = x / coeff; 72 | 73 | // bottomLeft 74 | shorter = MIN(w - x, h); 75 | x = mBottomLeft; 76 | x = x > shorter ? shorter : x; 77 | self.bottomLeft = x / coeff; 78 | 79 | // topLeft 80 | shorter = MIN(w - self.topRight * coeff, h - x); 81 | x = mTopLeft; 82 | x = x > shorter ? shorter : x; 83 | self.topLeft = x / coeff; 84 | 85 | } 86 | 87 | - (void)drawRect:(CGRect)rect { 88 | [super drawRect:rect]; 89 | 90 | [self cornerLogic:rect]; 91 | 92 | CGPoint last = CGPointMake(rect.size.width, rect.origin.y); 93 | // edit path 94 | [path moveToPoint:CGPointMake(rect.origin.x + self.topLeft * coeff, last.y)]; 95 | 96 | // top 97 | [path addLineToPoint:CGPointMake(last.x - self.topRight * coeff, last.y)]; 98 | 99 | last = CGPointMake(last.x - self.topRight * coeff, last.y); 100 | // top right c1 101 | [path addCurveToPoint:CGPointMake(last.x + self.topRight * 0.77037, last.y + self.topRight * 0.13357) 102 | controlPoint1:CGPointMake(last.x + self.topRight * 0.44576, last.y) 103 | controlPoint2:CGPointMake(last.x + self.topRight * 0.6074, last.y + self.topRight * 0.04641)]; 104 | // top right c2 105 | last = CGPointMake(last.x + self.topRight * 0.77037, last.y + self.topRight * 0.13357); 106 | [path addCurveToPoint:CGPointMake(last.x + self.topRight * 0.37801, last.y + self.topRight * 0.37801) 107 | controlPoint1:CGPointMake(last.x + self.topRight * 0.16296, last.y + self.topRight * 0.08715) 108 | controlPoint2:CGPointMake(last.x + self.topRight * 0.290086, last.y + self.topRight * 0.2150)]; 109 | // top right c3 110 | last = CGPointMake(last.x + self.topRight * 0.37801, last.y + self.topRight * 0.37801); 111 | [path addCurveToPoint:CGPointMake(last.x + self.topRight * 0.13357, last.y + self.topRight * 0.77037) 112 | controlPoint1:CGPointMake(last.x + self.topRight * 0.08715, last.y + self.topRight * 0.16296) 113 | controlPoint2:CGPointMake(last.x + self.topRight * 0.13357, last.y + self.topRight * 0.32461)]; 114 | 115 | last = CGPointMake(rect.size.width, rect.size.height); 116 | // right 117 | [path addLineToPoint:CGPointMake(last.x, last.y - self.bottomRight * coeff)]; 118 | 119 | last = CGPointMake(last.x, last.y - self.bottomRight * coeff); 120 | // bottom right c1 121 | [path addCurveToPoint:CGPointMake(last.x - self.bottomRight * 0.13357, last.y + self.bottomRight * 0.77037) 122 | controlPoint1:CGPointMake(last.x, last.y + self.bottomRight * 0.44576) 123 | controlPoint2:CGPointMake(last.x - self.bottomRight * 0.04641, last.y + self.bottomRight * 0.6074)]; 124 | // bottom right c2 125 | last = CGPointMake(last.x - self.bottomRight * 0.13357, last.y + self.bottomRight * 0.77037); 126 | [path addCurveToPoint:CGPointMake(last.x - self.bottomRight * 0.37801, last.y + self.bottomRight * 0.37801) 127 | controlPoint1:CGPointMake(last.x - self.bottomRight * 0.08715, last.y + self.bottomRight * 0.16296) 128 | controlPoint2:CGPointMake(last.x - self.bottomRight * 0.21505, last.y + self.bottomRight * 0.290086)]; 129 | // bottom right c3 130 | last = CGPointMake(last.x - self.bottomRight * 0.37801, last.y + self.bottomRight * 0.37801); 131 | [path addCurveToPoint:CGPointMake(last.x - self.bottomRight * 0.77037, last.y + self.bottomRight * 0.13357) 132 | controlPoint1:CGPointMake(last.x - self.bottomRight * 0.16296, last.y + self.bottomRight * 0.08715) 133 | controlPoint2:CGPointMake(last.x - self.bottomRight * 0.32461, last.y + self.bottomRight * 0.13357)]; 134 | 135 | last = CGPointMake(rect.origin.x, rect.size.height); 136 | // bottom 137 | [path addLineToPoint:CGPointMake(last.x + self.bottomLeft * coeff, last.y)]; 138 | 139 | last = CGPointMake(last.x + self.bottomLeft * coeff, last.y); 140 | // bottom left c1 141 | [path addCurveToPoint:CGPointMake(last.x - self.bottomLeft * 0.77037, last.y - self.bottomLeft * 0.13357) 142 | controlPoint1:CGPointMake(last.x - self.bottomLeft * 0.44576, last.y) 143 | controlPoint2:CGPointMake(last.x - self.bottomLeft * 0.6074, last.y - self.bottomLeft * 0.04641)]; 144 | // bottom left c2 145 | last = CGPointMake(last.x - self.bottomLeft * 0.77037, last.y - self.bottomLeft * 0.13357); 146 | [path addCurveToPoint:CGPointMake(last.x - self.bottomLeft * 0.37801, last.y - self.bottomLeft * 0.37801) 147 | controlPoint1:CGPointMake(last.x - self.bottomLeft * 0.16296, last.y - self.bottomLeft * 0.08715) 148 | controlPoint2:CGPointMake(last.x - self.bottomLeft * 0.290086, last.y - self.bottomLeft * 0.2150)]; 149 | // bottom left c3 150 | last = CGPointMake(last.x - self.bottomLeft * 0.37801, last.y - self.bottomLeft * 0.37801); 151 | [path addCurveToPoint:CGPointMake(last.x - self.bottomLeft * 0.13357, last.y - self.bottomLeft * 0.77037) 152 | controlPoint1:CGPointMake(last.x - self.bottomLeft * 0.08715, last.y - self.bottomLeft * 0.16296) 153 | controlPoint2:CGPointMake(last.x - self.bottomLeft * 0.13357, last.y - self.bottomLeft * 0.32461)]; 154 | 155 | // left 156 | [path addLineToPoint:CGPointMake(rect.origin.x, rect.origin.y + self.topLeft * coeff)]; 157 | 158 | last = CGPointMake(rect.origin.x, rect.origin.y + self.topLeft * coeff); 159 | // top left c1 160 | [path addCurveToPoint:CGPointMake(last.x + self.topLeft * 0.13357, last.y - self.topLeft * 0.77037) 161 | controlPoint1:CGPointMake(last.x, last.y - self.topLeft * 0.44576) 162 | controlPoint2:CGPointMake(last.x + self.topLeft * 0.04641, last.y - self.topLeft * 0.6074)]; 163 | // top left c2 164 | last = CGPointMake(last.x + self.topLeft * 0.13357, last.y - self.topLeft * 0.77037); 165 | [path addCurveToPoint:CGPointMake(last.x + self.topLeft * 0.37801, last.y - self.topLeft * 0.37801) 166 | controlPoint1:CGPointMake(last.x + self.topLeft * 0.08715, last.y - self.topLeft * 0.16296) 167 | controlPoint2:CGPointMake(last.x + self.topLeft * 0.21505, last.y - self.topLeft * 0.290086)]; 168 | // top left c3 169 | last = CGPointMake(last.x + self.topLeft * 0.37801, last.y - self.topLeft * 0.37801); 170 | [path addCurveToPoint:CGPointMake(last.x + self.topLeft * 0.77037, last.y - self.topLeft * 0.13357) 171 | controlPoint1:CGPointMake(last.x + self.topLeft * 0.16296, last.y - self.topLeft * 0.08715) 172 | controlPoint2:CGPointMake(last.x + self.topLeft * 0.32461, last.y - self.topLeft * 0.13357)]; 173 | 174 | 175 | [path closePath]; 176 | // !edit path 177 | mask.path = path.CGPath; 178 | } 179 | 180 | 181 | @end 182 | -------------------------------------------------------------------------------- /ios/RNSuperEllipseMask.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B3E7B58A1CC2AC0600A0062D /* SuperEllipseMask.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* SuperEllipseMask.m */; }; 11 | C3F1E496208C04D200F26380 /* SuperEllipseMaskManager.h in Sources */ = {isa = PBXBuildFile; fileRef = C3F1E495208C04B500F26380 /* SuperEllipseMaskManager.h */; }; 12 | C3F1E497208C04D500F26380 /* SuperEllipseMask.h in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5881CC2AC0600A0062D /* SuperEllipseMask.h */; }; 13 | C3F1E499208C04E400F26380 /* SuperEllipseMaskManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F1E498208C04E400F26380 /* SuperEllipseMaskManager.m */; }; 14 | /* End PBXBuildFile section */ 15 | 16 | /* Begin PBXCopyFilesBuildPhase section */ 17 | 58B511D91A9E6C8500147676 /* CopyFiles */ = { 18 | isa = PBXCopyFilesBuildPhase; 19 | buildActionMask = 2147483647; 20 | dstPath = "include/$(PRODUCT_NAME)"; 21 | dstSubfolderSpec = 16; 22 | files = ( 23 | ); 24 | runOnlyForDeploymentPostprocessing = 0; 25 | }; 26 | /* End PBXCopyFilesBuildPhase section */ 27 | 28 | /* Begin PBXFileReference section */ 29 | 134814201AA4EA6300B7C361 /* libRNSuperEllipseMask.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNSuperEllipseMask.a; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | B3E7B5881CC2AC0600A0062D /* SuperEllipseMask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SuperEllipseMask.h; sourceTree = ""; }; 31 | B3E7B5891CC2AC0600A0062D /* SuperEllipseMask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SuperEllipseMask.m; sourceTree = ""; }; 32 | C3F1E495208C04B500F26380 /* SuperEllipseMaskManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SuperEllipseMaskManager.h; sourceTree = ""; }; 33 | C3F1E498208C04E400F26380 /* SuperEllipseMaskManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SuperEllipseMaskManager.m; sourceTree = ""; }; 34 | /* End PBXFileReference section */ 35 | 36 | /* Begin PBXFrameworksBuildPhase section */ 37 | 58B511D81A9E6C8500147676 /* Frameworks */ = { 38 | isa = PBXFrameworksBuildPhase; 39 | buildActionMask = 2147483647; 40 | files = ( 41 | ); 42 | runOnlyForDeploymentPostprocessing = 0; 43 | }; 44 | /* End PBXFrameworksBuildPhase section */ 45 | 46 | /* Begin PBXGroup section */ 47 | 134814211AA4EA7D00B7C361 /* Products */ = { 48 | isa = PBXGroup; 49 | children = ( 50 | 134814201AA4EA6300B7C361 /* libRNSuperEllipseMask.a */, 51 | ); 52 | name = Products; 53 | sourceTree = ""; 54 | }; 55 | 58B511D21A9E6C8500147676 = { 56 | isa = PBXGroup; 57 | children = ( 58 | C3F1E498208C04E400F26380 /* SuperEllipseMaskManager.m */, 59 | C3F1E495208C04B500F26380 /* SuperEllipseMaskManager.h */, 60 | B3E7B5881CC2AC0600A0062D /* SuperEllipseMask.h */, 61 | B3E7B5891CC2AC0600A0062D /* SuperEllipseMask.m */, 62 | 134814211AA4EA7D00B7C361 /* Products */, 63 | ); 64 | sourceTree = ""; 65 | }; 66 | /* End PBXGroup section */ 67 | 68 | /* Begin PBXNativeTarget section */ 69 | 58B511DA1A9E6C8500147676 /* RNSuperEllipseMask */ = { 70 | isa = PBXNativeTarget; 71 | buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNSuperEllipseMask" */; 72 | buildPhases = ( 73 | 58B511D71A9E6C8500147676 /* Sources */, 74 | 58B511D81A9E6C8500147676 /* Frameworks */, 75 | 58B511D91A9E6C8500147676 /* CopyFiles */, 76 | ); 77 | buildRules = ( 78 | ); 79 | dependencies = ( 80 | ); 81 | name = RNSuperEllipseMask; 82 | productName = RCTDataManager; 83 | productReference = 134814201AA4EA6300B7C361 /* libRNSuperEllipseMask.a */; 84 | productType = "com.apple.product-type.library.static"; 85 | }; 86 | /* End PBXNativeTarget section */ 87 | 88 | /* Begin PBXProject section */ 89 | 58B511D31A9E6C8500147676 /* Project object */ = { 90 | isa = PBXProject; 91 | attributes = { 92 | LastUpgradeCheck = 0830; 93 | ORGANIZATIONNAME = Facebook; 94 | TargetAttributes = { 95 | 58B511DA1A9E6C8500147676 = { 96 | CreatedOnToolsVersion = 6.1.1; 97 | }; 98 | }; 99 | }; 100 | buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNSuperEllipseMask" */; 101 | compatibilityVersion = "Xcode 3.2"; 102 | developmentRegion = English; 103 | hasScannedForEncodings = 0; 104 | knownRegions = ( 105 | en, 106 | ); 107 | mainGroup = 58B511D21A9E6C8500147676; 108 | productRefGroup = 58B511D21A9E6C8500147676; 109 | projectDirPath = ""; 110 | projectRoot = ""; 111 | targets = ( 112 | 58B511DA1A9E6C8500147676 /* RNSuperEllipseMask */, 113 | ); 114 | }; 115 | /* End PBXProject section */ 116 | 117 | /* Begin PBXSourcesBuildPhase section */ 118 | 58B511D71A9E6C8500147676 /* Sources */ = { 119 | isa = PBXSourcesBuildPhase; 120 | buildActionMask = 2147483647; 121 | files = ( 122 | C3F1E499208C04E400F26380 /* SuperEllipseMaskManager.m in Sources */, 123 | C3F1E497208C04D500F26380 /* SuperEllipseMask.h in Sources */, 124 | C3F1E496208C04D200F26380 /* SuperEllipseMaskManager.h in Sources */, 125 | B3E7B58A1CC2AC0600A0062D /* SuperEllipseMask.m in Sources */, 126 | ); 127 | runOnlyForDeploymentPostprocessing = 0; 128 | }; 129 | /* End PBXSourcesBuildPhase section */ 130 | 131 | /* Begin XCBuildConfiguration section */ 132 | 58B511ED1A9E6C8500147676 /* Debug */ = { 133 | isa = XCBuildConfiguration; 134 | buildSettings = { 135 | ALWAYS_SEARCH_USER_PATHS = NO; 136 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 137 | CLANG_CXX_LIBRARY = "libc++"; 138 | CLANG_ENABLE_MODULES = YES; 139 | CLANG_ENABLE_OBJC_ARC = YES; 140 | CLANG_WARN_BOOL_CONVERSION = YES; 141 | CLANG_WARN_CONSTANT_CONVERSION = YES; 142 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 143 | CLANG_WARN_EMPTY_BODY = YES; 144 | CLANG_WARN_ENUM_CONVERSION = YES; 145 | CLANG_WARN_INFINITE_RECURSION = YES; 146 | CLANG_WARN_INT_CONVERSION = YES; 147 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 148 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 149 | CLANG_WARN_UNREACHABLE_CODE = YES; 150 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 151 | COPY_PHASE_STRIP = NO; 152 | ENABLE_STRICT_OBJC_MSGSEND = YES; 153 | ENABLE_TESTABILITY = YES; 154 | GCC_C_LANGUAGE_STANDARD = gnu99; 155 | GCC_DYNAMIC_NO_PIC = NO; 156 | GCC_NO_COMMON_BLOCKS = YES; 157 | GCC_OPTIMIZATION_LEVEL = 0; 158 | GCC_PREPROCESSOR_DEFINITIONS = ( 159 | "DEBUG=1", 160 | "$(inherited)", 161 | ); 162 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 163 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 164 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 165 | GCC_WARN_UNDECLARED_SELECTOR = YES; 166 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 167 | GCC_WARN_UNUSED_FUNCTION = YES; 168 | GCC_WARN_UNUSED_VARIABLE = YES; 169 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 170 | MTL_ENABLE_DEBUG_INFO = YES; 171 | ONLY_ACTIVE_ARCH = YES; 172 | SDKROOT = iphoneos; 173 | }; 174 | name = Debug; 175 | }; 176 | 58B511EE1A9E6C8500147676 /* Release */ = { 177 | isa = XCBuildConfiguration; 178 | buildSettings = { 179 | ALWAYS_SEARCH_USER_PATHS = NO; 180 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 181 | CLANG_CXX_LIBRARY = "libc++"; 182 | CLANG_ENABLE_MODULES = YES; 183 | CLANG_ENABLE_OBJC_ARC = YES; 184 | CLANG_WARN_BOOL_CONVERSION = YES; 185 | CLANG_WARN_CONSTANT_CONVERSION = YES; 186 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 187 | CLANG_WARN_EMPTY_BODY = YES; 188 | CLANG_WARN_ENUM_CONVERSION = YES; 189 | CLANG_WARN_INFINITE_RECURSION = YES; 190 | CLANG_WARN_INT_CONVERSION = YES; 191 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 192 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 193 | CLANG_WARN_UNREACHABLE_CODE = YES; 194 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 195 | COPY_PHASE_STRIP = YES; 196 | ENABLE_NS_ASSERTIONS = NO; 197 | ENABLE_STRICT_OBJC_MSGSEND = YES; 198 | GCC_C_LANGUAGE_STANDARD = gnu99; 199 | GCC_NO_COMMON_BLOCKS = YES; 200 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 201 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 202 | GCC_WARN_UNDECLARED_SELECTOR = YES; 203 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 204 | GCC_WARN_UNUSED_FUNCTION = YES; 205 | GCC_WARN_UNUSED_VARIABLE = YES; 206 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 207 | MTL_ENABLE_DEBUG_INFO = NO; 208 | SDKROOT = iphoneos; 209 | VALIDATE_PRODUCT = YES; 210 | }; 211 | name = Release; 212 | }; 213 | 58B511F01A9E6C8500147676 /* Debug */ = { 214 | isa = XCBuildConfiguration; 215 | buildSettings = { 216 | HEADER_SEARCH_PATHS = ( 217 | "$(inherited)", 218 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 219 | "$(SRCROOT)/../../../React/**", 220 | "$(SRCROOT)/../../react-native/React/**", 221 | ); 222 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 223 | OTHER_LDFLAGS = "-ObjC"; 224 | PRODUCT_NAME = RNSuperEllipseMask; 225 | SKIP_INSTALL = YES; 226 | }; 227 | name = Debug; 228 | }; 229 | 58B511F11A9E6C8500147676 /* Release */ = { 230 | isa = XCBuildConfiguration; 231 | buildSettings = { 232 | HEADER_SEARCH_PATHS = ( 233 | "$(inherited)", 234 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 235 | "$(SRCROOT)/../../../React/**", 236 | "$(SRCROOT)/../../react-native/React/**", 237 | ); 238 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 239 | OTHER_LDFLAGS = "-ObjC"; 240 | PRODUCT_NAME = RNSuperEllipseMask; 241 | SKIP_INSTALL = YES; 242 | }; 243 | name = Release; 244 | }; 245 | /* End XCBuildConfiguration section */ 246 | 247 | /* Begin XCConfigurationList section */ 248 | 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNSuperEllipseMask" */ = { 249 | isa = XCConfigurationList; 250 | buildConfigurations = ( 251 | 58B511ED1A9E6C8500147676 /* Debug */, 252 | 58B511EE1A9E6C8500147676 /* Release */, 253 | ); 254 | defaultConfigurationIsVisible = 0; 255 | defaultConfigurationName = Release; 256 | }; 257 | 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNSuperEllipseMask" */ = { 258 | isa = XCConfigurationList; 259 | buildConfigurations = ( 260 | 58B511F01A9E6C8500147676 /* Debug */, 261 | 58B511F11A9E6C8500147676 /* Release */, 262 | ); 263 | defaultConfigurationIsVisible = 0; 264 | defaultConfigurationName = Release; 265 | }; 266 | /* End XCConfigurationList section */ 267 | }; 268 | rootObject = 58B511D31A9E6C8500147676 /* Project object */; 269 | } 270 | -------------------------------------------------------------------------------- /examples/simple/ios/simple.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 /* simpleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleTests.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 /* simpleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleTests.m */; }; 37 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 39 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 40 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 41 | D38FF5FA91F444E9BA9C1F47 /* libRNSuperEllipseMask.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 66D9722EB1874C939CD498EC /* libRNSuperEllipseMask.a */; }; 42 | /* End PBXBuildFile section */ 43 | 44 | /* Begin PBXContainerItemProxy section */ 45 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 46 | isa = PBXContainerItemProxy; 47 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 48 | proxyType = 2; 49 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 50 | remoteInfo = RCTActionSheet; 51 | }; 52 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 53 | isa = PBXContainerItemProxy; 54 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 55 | proxyType = 2; 56 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 57 | remoteInfo = RCTGeolocation; 58 | }; 59 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 60 | isa = PBXContainerItemProxy; 61 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 62 | proxyType = 2; 63 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 64 | remoteInfo = RCTImage; 65 | }; 66 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 67 | isa = PBXContainerItemProxy; 68 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 69 | proxyType = 2; 70 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 71 | remoteInfo = RCTNetwork; 72 | }; 73 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 74 | isa = PBXContainerItemProxy; 75 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 76 | proxyType = 2; 77 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 78 | remoteInfo = RCTVibration; 79 | }; 80 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 81 | isa = PBXContainerItemProxy; 82 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 83 | proxyType = 1; 84 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 85 | remoteInfo = simple; 86 | }; 87 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 88 | isa = PBXContainerItemProxy; 89 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 90 | proxyType = 2; 91 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 92 | remoteInfo = RCTSettings; 93 | }; 94 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 95 | isa = PBXContainerItemProxy; 96 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 97 | proxyType = 2; 98 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 99 | remoteInfo = RCTWebSocket; 100 | }; 101 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 102 | isa = PBXContainerItemProxy; 103 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 104 | proxyType = 2; 105 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 106 | remoteInfo = React; 107 | }; 108 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 109 | isa = PBXContainerItemProxy; 110 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 111 | proxyType = 1; 112 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 113 | remoteInfo = "simple-tvOS"; 114 | }; 115 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 116 | isa = PBXContainerItemProxy; 117 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 118 | proxyType = 2; 119 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 120 | remoteInfo = "RCTBlob-tvOS"; 121 | }; 122 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 123 | isa = PBXContainerItemProxy; 124 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 125 | proxyType = 2; 126 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 127 | remoteInfo = fishhook; 128 | }; 129 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 130 | isa = PBXContainerItemProxy; 131 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 132 | proxyType = 2; 133 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 134 | remoteInfo = "fishhook-tvOS"; 135 | }; 136 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 137 | isa = PBXContainerItemProxy; 138 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 139 | proxyType = 2; 140 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 141 | remoteInfo = jsinspector; 142 | }; 143 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 144 | isa = PBXContainerItemProxy; 145 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 146 | proxyType = 2; 147 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 148 | remoteInfo = "jsinspector-tvOS"; 149 | }; 150 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 151 | isa = PBXContainerItemProxy; 152 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 153 | proxyType = 2; 154 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 155 | remoteInfo = "third-party"; 156 | }; 157 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 158 | isa = PBXContainerItemProxy; 159 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 160 | proxyType = 2; 161 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 162 | remoteInfo = "third-party-tvOS"; 163 | }; 164 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 165 | isa = PBXContainerItemProxy; 166 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 167 | proxyType = 2; 168 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 169 | remoteInfo = "double-conversion"; 170 | }; 171 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 172 | isa = PBXContainerItemProxy; 173 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 174 | proxyType = 2; 175 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 176 | remoteInfo = "double-conversion-tvOS"; 177 | }; 178 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 179 | isa = PBXContainerItemProxy; 180 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 181 | proxyType = 2; 182 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 183 | remoteInfo = privatedata; 184 | }; 185 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 186 | isa = PBXContainerItemProxy; 187 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 188 | proxyType = 2; 189 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 190 | remoteInfo = "privatedata-tvOS"; 191 | }; 192 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 193 | isa = PBXContainerItemProxy; 194 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 195 | proxyType = 2; 196 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 197 | remoteInfo = "RCTImage-tvOS"; 198 | }; 199 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 200 | isa = PBXContainerItemProxy; 201 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 202 | proxyType = 2; 203 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 204 | remoteInfo = "RCTLinking-tvOS"; 205 | }; 206 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 207 | isa = PBXContainerItemProxy; 208 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 209 | proxyType = 2; 210 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 211 | remoteInfo = "RCTNetwork-tvOS"; 212 | }; 213 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 214 | isa = PBXContainerItemProxy; 215 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 216 | proxyType = 2; 217 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 218 | remoteInfo = "RCTSettings-tvOS"; 219 | }; 220 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 221 | isa = PBXContainerItemProxy; 222 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 223 | proxyType = 2; 224 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 225 | remoteInfo = "RCTText-tvOS"; 226 | }; 227 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 228 | isa = PBXContainerItemProxy; 229 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 230 | proxyType = 2; 231 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 232 | remoteInfo = "RCTWebSocket-tvOS"; 233 | }; 234 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 235 | isa = PBXContainerItemProxy; 236 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 237 | proxyType = 2; 238 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 239 | remoteInfo = "React-tvOS"; 240 | }; 241 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 242 | isa = PBXContainerItemProxy; 243 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 244 | proxyType = 2; 245 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 246 | remoteInfo = yoga; 247 | }; 248 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 249 | isa = PBXContainerItemProxy; 250 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 251 | proxyType = 2; 252 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 253 | remoteInfo = "yoga-tvOS"; 254 | }; 255 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 256 | isa = PBXContainerItemProxy; 257 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 258 | proxyType = 2; 259 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 260 | remoteInfo = cxxreact; 261 | }; 262 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 263 | isa = PBXContainerItemProxy; 264 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 265 | proxyType = 2; 266 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 267 | remoteInfo = "cxxreact-tvOS"; 268 | }; 269 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 270 | isa = PBXContainerItemProxy; 271 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 272 | proxyType = 2; 273 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 274 | remoteInfo = jschelpers; 275 | }; 276 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 277 | isa = PBXContainerItemProxy; 278 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 279 | proxyType = 2; 280 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 281 | remoteInfo = "jschelpers-tvOS"; 282 | }; 283 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 284 | isa = PBXContainerItemProxy; 285 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 286 | proxyType = 2; 287 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 288 | remoteInfo = RCTAnimation; 289 | }; 290 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 291 | isa = PBXContainerItemProxy; 292 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 293 | proxyType = 2; 294 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 295 | remoteInfo = "RCTAnimation-tvOS"; 296 | }; 297 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 298 | isa = PBXContainerItemProxy; 299 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 300 | proxyType = 2; 301 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 302 | remoteInfo = RCTLinking; 303 | }; 304 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 305 | isa = PBXContainerItemProxy; 306 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 307 | proxyType = 2; 308 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 309 | remoteInfo = RCTText; 310 | }; 311 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 312 | isa = PBXContainerItemProxy; 313 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 314 | proxyType = 2; 315 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 316 | remoteInfo = RCTBlob; 317 | }; 318 | C3DDAB39208C8F7D00CA6FCC /* PBXContainerItemProxy */ = { 319 | isa = PBXContainerItemProxy; 320 | containerPortal = 14D0C0CEE1224764A21DD513 /* RNSuperEllipseMask.xcodeproj */; 321 | proxyType = 2; 322 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 323 | remoteInfo = RNSuperEllipseMask; 324 | }; 325 | /* End PBXContainerItemProxy section */ 326 | 327 | /* Begin PBXFileReference section */ 328 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 329 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 330 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 331 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 332 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 333 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 334 | 00E356EE1AD99517003FC87E /* simpleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = simpleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 335 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 336 | 00E356F21AD99517003FC87E /* simpleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = simpleTests.m; sourceTree = ""; }; 337 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 338 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 339 | 13B07F961A680F5B00A75B9A /* simple.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = simple.app; sourceTree = BUILT_PRODUCTS_DIR; }; 340 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = simple/AppDelegate.h; sourceTree = ""; }; 341 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = simple/AppDelegate.m; sourceTree = ""; }; 342 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 343 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = simple/Images.xcassets; sourceTree = ""; }; 344 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = simple/Info.plist; sourceTree = ""; }; 345 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = simple/main.m; sourceTree = ""; }; 346 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 347 | 14D0C0CEE1224764A21DD513 /* RNSuperEllipseMask.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSuperEllipseMask.xcodeproj; path = "../node_modules/react-native-super-ellipse-mask/ios/RNSuperEllipseMask.xcodeproj"; sourceTree = ""; }; 348 | 2D02E47B1E0B4A5D006451C7 /* simple-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "simple-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 349 | 2D02E4901E0B4A5D006451C7 /* simple-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "simple-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 350 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 351 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 352 | 66D9722EB1874C939CD498EC /* libRNSuperEllipseMask.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSuperEllipseMask.a; sourceTree = ""; }; 353 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 354 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 355 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 356 | /* End PBXFileReference section */ 357 | 358 | /* Begin PBXFrameworksBuildPhase section */ 359 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 360 | isa = PBXFrameworksBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 368 | isa = PBXFrameworksBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 372 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 373 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 374 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 375 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 376 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 377 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 378 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 379 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 380 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 381 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 382 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 383 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 384 | D38FF5FA91F444E9BA9C1F47 /* libRNSuperEllipseMask.a in Frameworks */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 389 | isa = PBXFrameworksBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 393 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 394 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 395 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 396 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 397 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 398 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 399 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 404 | isa = PBXFrameworksBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 408 | ); 409 | runOnlyForDeploymentPostprocessing = 0; 410 | }; 411 | /* End PBXFrameworksBuildPhase section */ 412 | 413 | /* Begin PBXGroup section */ 414 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 415 | isa = PBXGroup; 416 | children = ( 417 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 418 | ); 419 | name = Products; 420 | sourceTree = ""; 421 | }; 422 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 423 | isa = PBXGroup; 424 | children = ( 425 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 426 | ); 427 | name = Products; 428 | sourceTree = ""; 429 | }; 430 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 431 | isa = PBXGroup; 432 | children = ( 433 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 434 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 435 | ); 436 | name = Products; 437 | sourceTree = ""; 438 | }; 439 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 440 | isa = PBXGroup; 441 | children = ( 442 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 443 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 444 | ); 445 | name = Products; 446 | sourceTree = ""; 447 | }; 448 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 449 | isa = PBXGroup; 450 | children = ( 451 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 452 | ); 453 | name = Products; 454 | sourceTree = ""; 455 | }; 456 | 00E356EF1AD99517003FC87E /* simpleTests */ = { 457 | isa = PBXGroup; 458 | children = ( 459 | 00E356F21AD99517003FC87E /* simpleTests.m */, 460 | 00E356F01AD99517003FC87E /* Supporting Files */, 461 | ); 462 | path = simpleTests; 463 | sourceTree = ""; 464 | }; 465 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 466 | isa = PBXGroup; 467 | children = ( 468 | 00E356F11AD99517003FC87E /* Info.plist */, 469 | ); 470 | name = "Supporting Files"; 471 | sourceTree = ""; 472 | }; 473 | 139105B71AF99BAD00B5F7CC /* Products */ = { 474 | isa = PBXGroup; 475 | children = ( 476 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 477 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 478 | ); 479 | name = Products; 480 | sourceTree = ""; 481 | }; 482 | 139FDEE71B06529A00C62182 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 486 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 487 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 488 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 489 | ); 490 | name = Products; 491 | sourceTree = ""; 492 | }; 493 | 13B07FAE1A68108700A75B9A /* simple */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 497 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 498 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 499 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 500 | 13B07FB61A68108700A75B9A /* Info.plist */, 501 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 502 | 13B07FB71A68108700A75B9A /* main.m */, 503 | ); 504 | name = simple; 505 | sourceTree = ""; 506 | }; 507 | 146834001AC3E56700842450 /* Products */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 146834041AC3E56700842450 /* libReact.a */, 511 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 512 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 513 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 514 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 515 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 516 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 517 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 518 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 519 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 520 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 521 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 522 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 523 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 524 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 525 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 526 | ); 527 | name = Products; 528 | sourceTree = ""; 529 | }; 530 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 534 | ); 535 | name = Frameworks; 536 | sourceTree = ""; 537 | }; 538 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 539 | isa = PBXGroup; 540 | children = ( 541 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 542 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 543 | ); 544 | name = Products; 545 | sourceTree = ""; 546 | }; 547 | 78C398B11ACF4ADC00677621 /* Products */ = { 548 | isa = PBXGroup; 549 | children = ( 550 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 551 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 552 | ); 553 | name = Products; 554 | sourceTree = ""; 555 | }; 556 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 557 | isa = PBXGroup; 558 | children = ( 559 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 560 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 561 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 562 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 563 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 564 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 565 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 566 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 567 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 568 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 569 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 570 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 571 | 14D0C0CEE1224764A21DD513 /* RNSuperEllipseMask.xcodeproj */, 572 | ); 573 | name = Libraries; 574 | sourceTree = ""; 575 | }; 576 | 832341B11AAA6A8300B99B32 /* Products */ = { 577 | isa = PBXGroup; 578 | children = ( 579 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 580 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 581 | ); 582 | name = Products; 583 | sourceTree = ""; 584 | }; 585 | 83CBB9F61A601CBA00E9B192 = { 586 | isa = PBXGroup; 587 | children = ( 588 | 13B07FAE1A68108700A75B9A /* simple */, 589 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 590 | 00E356EF1AD99517003FC87E /* simpleTests */, 591 | 83CBBA001A601CBA00E9B192 /* Products */, 592 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 593 | C3DDAB10208C8F7900CA6FCC /* Recovered References */, 594 | ); 595 | indentWidth = 2; 596 | sourceTree = ""; 597 | tabWidth = 2; 598 | usesTabs = 0; 599 | }; 600 | 83CBBA001A601CBA00E9B192 /* Products */ = { 601 | isa = PBXGroup; 602 | children = ( 603 | 13B07F961A680F5B00A75B9A /* simple.app */, 604 | 00E356EE1AD99517003FC87E /* simpleTests.xctest */, 605 | 2D02E47B1E0B4A5D006451C7 /* simple-tvOS.app */, 606 | 2D02E4901E0B4A5D006451C7 /* simple-tvOSTests.xctest */, 607 | ); 608 | name = Products; 609 | sourceTree = ""; 610 | }; 611 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 612 | isa = PBXGroup; 613 | children = ( 614 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 615 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 616 | ); 617 | name = Products; 618 | sourceTree = ""; 619 | }; 620 | C3DDAB10208C8F7900CA6FCC /* Recovered References */ = { 621 | isa = PBXGroup; 622 | children = ( 623 | 66D9722EB1874C939CD498EC /* libRNSuperEllipseMask.a */, 624 | ); 625 | name = "Recovered References"; 626 | sourceTree = ""; 627 | }; 628 | C3DDAB11208C8F7D00CA6FCC /* Products */ = { 629 | isa = PBXGroup; 630 | children = ( 631 | C3DDAB3A208C8F7D00CA6FCC /* libRNSuperEllipseMask.a */, 632 | ); 633 | name = Products; 634 | sourceTree = ""; 635 | }; 636 | /* End PBXGroup section */ 637 | 638 | /* Begin PBXNativeTarget section */ 639 | 00E356ED1AD99517003FC87E /* simpleTests */ = { 640 | isa = PBXNativeTarget; 641 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "simpleTests" */; 642 | buildPhases = ( 643 | 00E356EA1AD99517003FC87E /* Sources */, 644 | 00E356EB1AD99517003FC87E /* Frameworks */, 645 | 00E356EC1AD99517003FC87E /* Resources */, 646 | ); 647 | buildRules = ( 648 | ); 649 | dependencies = ( 650 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 651 | ); 652 | name = simpleTests; 653 | productName = simpleTests; 654 | productReference = 00E356EE1AD99517003FC87E /* simpleTests.xctest */; 655 | productType = "com.apple.product-type.bundle.unit-test"; 656 | }; 657 | 13B07F861A680F5B00A75B9A /* simple */ = { 658 | isa = PBXNativeTarget; 659 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "simple" */; 660 | buildPhases = ( 661 | 13B07F871A680F5B00A75B9A /* Sources */, 662 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 663 | 13B07F8E1A680F5B00A75B9A /* Resources */, 664 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 665 | ); 666 | buildRules = ( 667 | ); 668 | dependencies = ( 669 | ); 670 | name = simple; 671 | productName = "Hello World"; 672 | productReference = 13B07F961A680F5B00A75B9A /* simple.app */; 673 | productType = "com.apple.product-type.application"; 674 | }; 675 | 2D02E47A1E0B4A5D006451C7 /* simple-tvOS */ = { 676 | isa = PBXNativeTarget; 677 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simple-tvOS" */; 678 | buildPhases = ( 679 | 2D02E4771E0B4A5D006451C7 /* Sources */, 680 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 681 | 2D02E4791E0B4A5D006451C7 /* Resources */, 682 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 683 | ); 684 | buildRules = ( 685 | ); 686 | dependencies = ( 687 | ); 688 | name = "simple-tvOS"; 689 | productName = "simple-tvOS"; 690 | productReference = 2D02E47B1E0B4A5D006451C7 /* simple-tvOS.app */; 691 | productType = "com.apple.product-type.application"; 692 | }; 693 | 2D02E48F1E0B4A5D006451C7 /* simple-tvOSTests */ = { 694 | isa = PBXNativeTarget; 695 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simple-tvOSTests" */; 696 | buildPhases = ( 697 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 698 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 699 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 700 | ); 701 | buildRules = ( 702 | ); 703 | dependencies = ( 704 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 705 | ); 706 | name = "simple-tvOSTests"; 707 | productName = "simple-tvOSTests"; 708 | productReference = 2D02E4901E0B4A5D006451C7 /* simple-tvOSTests.xctest */; 709 | productType = "com.apple.product-type.bundle.unit-test"; 710 | }; 711 | /* End PBXNativeTarget section */ 712 | 713 | /* Begin PBXProject section */ 714 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 715 | isa = PBXProject; 716 | attributes = { 717 | LastUpgradeCheck = 610; 718 | ORGANIZATIONNAME = Facebook; 719 | TargetAttributes = { 720 | 00E356ED1AD99517003FC87E = { 721 | CreatedOnToolsVersion = 6.2; 722 | TestTargetID = 13B07F861A680F5B00A75B9A; 723 | }; 724 | 2D02E47A1E0B4A5D006451C7 = { 725 | CreatedOnToolsVersion = 8.2.1; 726 | ProvisioningStyle = Automatic; 727 | }; 728 | 2D02E48F1E0B4A5D006451C7 = { 729 | CreatedOnToolsVersion = 8.2.1; 730 | ProvisioningStyle = Automatic; 731 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 732 | }; 733 | }; 734 | }; 735 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "simple" */; 736 | compatibilityVersion = "Xcode 3.2"; 737 | developmentRegion = English; 738 | hasScannedForEncodings = 0; 739 | knownRegions = ( 740 | en, 741 | Base, 742 | ); 743 | mainGroup = 83CBB9F61A601CBA00E9B192; 744 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 745 | projectDirPath = ""; 746 | projectReferences = ( 747 | { 748 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 749 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 750 | }, 751 | { 752 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 753 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 754 | }, 755 | { 756 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 757 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 758 | }, 759 | { 760 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 761 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 762 | }, 763 | { 764 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 765 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 766 | }, 767 | { 768 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 769 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 770 | }, 771 | { 772 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 773 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 774 | }, 775 | { 776 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 777 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 778 | }, 779 | { 780 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 781 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 782 | }, 783 | { 784 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 785 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 786 | }, 787 | { 788 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 789 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 790 | }, 791 | { 792 | ProductGroup = 146834001AC3E56700842450 /* Products */; 793 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 794 | }, 795 | { 796 | ProductGroup = C3DDAB11208C8F7D00CA6FCC /* Products */; 797 | ProjectRef = 14D0C0CEE1224764A21DD513 /* RNSuperEllipseMask.xcodeproj */; 798 | }, 799 | ); 800 | projectRoot = ""; 801 | targets = ( 802 | 13B07F861A680F5B00A75B9A /* simple */, 803 | 00E356ED1AD99517003FC87E /* simpleTests */, 804 | 2D02E47A1E0B4A5D006451C7 /* simple-tvOS */, 805 | 2D02E48F1E0B4A5D006451C7 /* simple-tvOSTests */, 806 | ); 807 | }; 808 | /* End PBXProject section */ 809 | 810 | /* Begin PBXReferenceProxy section */ 811 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 812 | isa = PBXReferenceProxy; 813 | fileType = archive.ar; 814 | path = libRCTActionSheet.a; 815 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 816 | sourceTree = BUILT_PRODUCTS_DIR; 817 | }; 818 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 819 | isa = PBXReferenceProxy; 820 | fileType = archive.ar; 821 | path = libRCTGeolocation.a; 822 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 823 | sourceTree = BUILT_PRODUCTS_DIR; 824 | }; 825 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 826 | isa = PBXReferenceProxy; 827 | fileType = archive.ar; 828 | path = libRCTImage.a; 829 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 830 | sourceTree = BUILT_PRODUCTS_DIR; 831 | }; 832 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 833 | isa = PBXReferenceProxy; 834 | fileType = archive.ar; 835 | path = libRCTNetwork.a; 836 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 837 | sourceTree = BUILT_PRODUCTS_DIR; 838 | }; 839 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 840 | isa = PBXReferenceProxy; 841 | fileType = archive.ar; 842 | path = libRCTVibration.a; 843 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 844 | sourceTree = BUILT_PRODUCTS_DIR; 845 | }; 846 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 847 | isa = PBXReferenceProxy; 848 | fileType = archive.ar; 849 | path = libRCTSettings.a; 850 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 851 | sourceTree = BUILT_PRODUCTS_DIR; 852 | }; 853 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 854 | isa = PBXReferenceProxy; 855 | fileType = archive.ar; 856 | path = libRCTWebSocket.a; 857 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 858 | sourceTree = BUILT_PRODUCTS_DIR; 859 | }; 860 | 146834041AC3E56700842450 /* libReact.a */ = { 861 | isa = PBXReferenceProxy; 862 | fileType = archive.ar; 863 | path = libReact.a; 864 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 865 | sourceTree = BUILT_PRODUCTS_DIR; 866 | }; 867 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 868 | isa = PBXReferenceProxy; 869 | fileType = archive.ar; 870 | path = "libRCTBlob-tvOS.a"; 871 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 872 | sourceTree = BUILT_PRODUCTS_DIR; 873 | }; 874 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 875 | isa = PBXReferenceProxy; 876 | fileType = archive.ar; 877 | path = libfishhook.a; 878 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 879 | sourceTree = BUILT_PRODUCTS_DIR; 880 | }; 881 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 882 | isa = PBXReferenceProxy; 883 | fileType = archive.ar; 884 | path = "libfishhook-tvOS.a"; 885 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 886 | sourceTree = BUILT_PRODUCTS_DIR; 887 | }; 888 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 889 | isa = PBXReferenceProxy; 890 | fileType = archive.ar; 891 | path = libjsinspector.a; 892 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 893 | sourceTree = BUILT_PRODUCTS_DIR; 894 | }; 895 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 896 | isa = PBXReferenceProxy; 897 | fileType = archive.ar; 898 | path = "libjsinspector-tvOS.a"; 899 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 900 | sourceTree = BUILT_PRODUCTS_DIR; 901 | }; 902 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 903 | isa = PBXReferenceProxy; 904 | fileType = archive.ar; 905 | path = "libthird-party.a"; 906 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 907 | sourceTree = BUILT_PRODUCTS_DIR; 908 | }; 909 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 910 | isa = PBXReferenceProxy; 911 | fileType = archive.ar; 912 | path = "libthird-party.a"; 913 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 914 | sourceTree = BUILT_PRODUCTS_DIR; 915 | }; 916 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 917 | isa = PBXReferenceProxy; 918 | fileType = archive.ar; 919 | path = "libdouble-conversion.a"; 920 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 921 | sourceTree = BUILT_PRODUCTS_DIR; 922 | }; 923 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 924 | isa = PBXReferenceProxy; 925 | fileType = archive.ar; 926 | path = "libdouble-conversion.a"; 927 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 928 | sourceTree = BUILT_PRODUCTS_DIR; 929 | }; 930 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 931 | isa = PBXReferenceProxy; 932 | fileType = archive.ar; 933 | path = libprivatedata.a; 934 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 935 | sourceTree = BUILT_PRODUCTS_DIR; 936 | }; 937 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 938 | isa = PBXReferenceProxy; 939 | fileType = archive.ar; 940 | path = "libprivatedata-tvOS.a"; 941 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 942 | sourceTree = BUILT_PRODUCTS_DIR; 943 | }; 944 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 945 | isa = PBXReferenceProxy; 946 | fileType = archive.ar; 947 | path = "libRCTImage-tvOS.a"; 948 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 949 | sourceTree = BUILT_PRODUCTS_DIR; 950 | }; 951 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 952 | isa = PBXReferenceProxy; 953 | fileType = archive.ar; 954 | path = "libRCTLinking-tvOS.a"; 955 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 956 | sourceTree = BUILT_PRODUCTS_DIR; 957 | }; 958 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 959 | isa = PBXReferenceProxy; 960 | fileType = archive.ar; 961 | path = "libRCTNetwork-tvOS.a"; 962 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 963 | sourceTree = BUILT_PRODUCTS_DIR; 964 | }; 965 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 966 | isa = PBXReferenceProxy; 967 | fileType = archive.ar; 968 | path = "libRCTSettings-tvOS.a"; 969 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 970 | sourceTree = BUILT_PRODUCTS_DIR; 971 | }; 972 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 973 | isa = PBXReferenceProxy; 974 | fileType = archive.ar; 975 | path = "libRCTText-tvOS.a"; 976 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 977 | sourceTree = BUILT_PRODUCTS_DIR; 978 | }; 979 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 980 | isa = PBXReferenceProxy; 981 | fileType = archive.ar; 982 | path = "libRCTWebSocket-tvOS.a"; 983 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 984 | sourceTree = BUILT_PRODUCTS_DIR; 985 | }; 986 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 987 | isa = PBXReferenceProxy; 988 | fileType = archive.ar; 989 | path = libReact.a; 990 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 991 | sourceTree = BUILT_PRODUCTS_DIR; 992 | }; 993 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 994 | isa = PBXReferenceProxy; 995 | fileType = archive.ar; 996 | path = libyoga.a; 997 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 998 | sourceTree = BUILT_PRODUCTS_DIR; 999 | }; 1000 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1001 | isa = PBXReferenceProxy; 1002 | fileType = archive.ar; 1003 | path = libyoga.a; 1004 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1005 | sourceTree = BUILT_PRODUCTS_DIR; 1006 | }; 1007 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1008 | isa = PBXReferenceProxy; 1009 | fileType = archive.ar; 1010 | path = libcxxreact.a; 1011 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1012 | sourceTree = BUILT_PRODUCTS_DIR; 1013 | }; 1014 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1015 | isa = PBXReferenceProxy; 1016 | fileType = archive.ar; 1017 | path = libcxxreact.a; 1018 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1019 | sourceTree = BUILT_PRODUCTS_DIR; 1020 | }; 1021 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1022 | isa = PBXReferenceProxy; 1023 | fileType = archive.ar; 1024 | path = libjschelpers.a; 1025 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1026 | sourceTree = BUILT_PRODUCTS_DIR; 1027 | }; 1028 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1029 | isa = PBXReferenceProxy; 1030 | fileType = archive.ar; 1031 | path = libjschelpers.a; 1032 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1033 | sourceTree = BUILT_PRODUCTS_DIR; 1034 | }; 1035 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1036 | isa = PBXReferenceProxy; 1037 | fileType = archive.ar; 1038 | path = libRCTAnimation.a; 1039 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1040 | sourceTree = BUILT_PRODUCTS_DIR; 1041 | }; 1042 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1043 | isa = PBXReferenceProxy; 1044 | fileType = archive.ar; 1045 | path = libRCTAnimation.a; 1046 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1047 | sourceTree = BUILT_PRODUCTS_DIR; 1048 | }; 1049 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1050 | isa = PBXReferenceProxy; 1051 | fileType = archive.ar; 1052 | path = libRCTLinking.a; 1053 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1054 | sourceTree = BUILT_PRODUCTS_DIR; 1055 | }; 1056 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1057 | isa = PBXReferenceProxy; 1058 | fileType = archive.ar; 1059 | path = libRCTText.a; 1060 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1061 | sourceTree = BUILT_PRODUCTS_DIR; 1062 | }; 1063 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1064 | isa = PBXReferenceProxy; 1065 | fileType = archive.ar; 1066 | path = libRCTBlob.a; 1067 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1068 | sourceTree = BUILT_PRODUCTS_DIR; 1069 | }; 1070 | C3DDAB3A208C8F7D00CA6FCC /* libRNSuperEllipseMask.a */ = { 1071 | isa = PBXReferenceProxy; 1072 | fileType = archive.ar; 1073 | path = libRNSuperEllipseMask.a; 1074 | remoteRef = C3DDAB39208C8F7D00CA6FCC /* PBXContainerItemProxy */; 1075 | sourceTree = BUILT_PRODUCTS_DIR; 1076 | }; 1077 | /* End PBXReferenceProxy section */ 1078 | 1079 | /* Begin PBXResourcesBuildPhase section */ 1080 | 00E356EC1AD99517003FC87E /* Resources */ = { 1081 | isa = PBXResourcesBuildPhase; 1082 | buildActionMask = 2147483647; 1083 | files = ( 1084 | ); 1085 | runOnlyForDeploymentPostprocessing = 0; 1086 | }; 1087 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1088 | isa = PBXResourcesBuildPhase; 1089 | buildActionMask = 2147483647; 1090 | files = ( 1091 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1092 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1093 | ); 1094 | runOnlyForDeploymentPostprocessing = 0; 1095 | }; 1096 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1097 | isa = PBXResourcesBuildPhase; 1098 | buildActionMask = 2147483647; 1099 | files = ( 1100 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1101 | ); 1102 | runOnlyForDeploymentPostprocessing = 0; 1103 | }; 1104 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1105 | isa = PBXResourcesBuildPhase; 1106 | buildActionMask = 2147483647; 1107 | files = ( 1108 | ); 1109 | runOnlyForDeploymentPostprocessing = 0; 1110 | }; 1111 | /* End PBXResourcesBuildPhase section */ 1112 | 1113 | /* Begin PBXShellScriptBuildPhase section */ 1114 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1115 | isa = PBXShellScriptBuildPhase; 1116 | buildActionMask = 2147483647; 1117 | files = ( 1118 | ); 1119 | inputPaths = ( 1120 | ); 1121 | name = "Bundle React Native code and images"; 1122 | outputPaths = ( 1123 | ); 1124 | runOnlyForDeploymentPostprocessing = 0; 1125 | shellPath = /bin/sh; 1126 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1127 | }; 1128 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1129 | isa = PBXShellScriptBuildPhase; 1130 | buildActionMask = 2147483647; 1131 | files = ( 1132 | ); 1133 | inputPaths = ( 1134 | ); 1135 | name = "Bundle React Native Code And Images"; 1136 | outputPaths = ( 1137 | ); 1138 | runOnlyForDeploymentPostprocessing = 0; 1139 | shellPath = /bin/sh; 1140 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1141 | }; 1142 | /* End PBXShellScriptBuildPhase section */ 1143 | 1144 | /* Begin PBXSourcesBuildPhase section */ 1145 | 00E356EA1AD99517003FC87E /* Sources */ = { 1146 | isa = PBXSourcesBuildPhase; 1147 | buildActionMask = 2147483647; 1148 | files = ( 1149 | 00E356F31AD99517003FC87E /* simpleTests.m in Sources */, 1150 | ); 1151 | runOnlyForDeploymentPostprocessing = 0; 1152 | }; 1153 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1154 | isa = PBXSourcesBuildPhase; 1155 | buildActionMask = 2147483647; 1156 | files = ( 1157 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1158 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1159 | ); 1160 | runOnlyForDeploymentPostprocessing = 0; 1161 | }; 1162 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1163 | isa = PBXSourcesBuildPhase; 1164 | buildActionMask = 2147483647; 1165 | files = ( 1166 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1167 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1168 | ); 1169 | runOnlyForDeploymentPostprocessing = 0; 1170 | }; 1171 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1172 | isa = PBXSourcesBuildPhase; 1173 | buildActionMask = 2147483647; 1174 | files = ( 1175 | 2DCD954D1E0B4F2C00145EB5 /* simpleTests.m in Sources */, 1176 | ); 1177 | runOnlyForDeploymentPostprocessing = 0; 1178 | }; 1179 | /* End PBXSourcesBuildPhase section */ 1180 | 1181 | /* Begin PBXTargetDependency section */ 1182 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1183 | isa = PBXTargetDependency; 1184 | target = 13B07F861A680F5B00A75B9A /* simple */; 1185 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1186 | }; 1187 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1188 | isa = PBXTargetDependency; 1189 | target = 2D02E47A1E0B4A5D006451C7 /* simple-tvOS */; 1190 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1191 | }; 1192 | /* End PBXTargetDependency section */ 1193 | 1194 | /* Begin PBXVariantGroup section */ 1195 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1196 | isa = PBXVariantGroup; 1197 | children = ( 1198 | 13B07FB21A68108700A75B9A /* Base */, 1199 | ); 1200 | name = LaunchScreen.xib; 1201 | path = simple; 1202 | sourceTree = ""; 1203 | }; 1204 | /* End PBXVariantGroup section */ 1205 | 1206 | /* Begin XCBuildConfiguration section */ 1207 | 00E356F61AD99517003FC87E /* Debug */ = { 1208 | isa = XCBuildConfiguration; 1209 | buildSettings = { 1210 | BUNDLE_LOADER = "$(TEST_HOST)"; 1211 | GCC_PREPROCESSOR_DEFINITIONS = ( 1212 | "DEBUG=1", 1213 | "$(inherited)", 1214 | ); 1215 | HEADER_SEARCH_PATHS = ( 1216 | "$(inherited)", 1217 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1218 | ); 1219 | INFOPLIST_FILE = simpleTests/Info.plist; 1220 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1221 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1222 | LIBRARY_SEARCH_PATHS = ( 1223 | "$(inherited)", 1224 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1225 | ); 1226 | OTHER_LDFLAGS = ( 1227 | "-ObjC", 1228 | "-lc++", 1229 | ); 1230 | PRODUCT_NAME = "$(TARGET_NAME)"; 1231 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/simple.app/simple"; 1232 | }; 1233 | name = Debug; 1234 | }; 1235 | 00E356F71AD99517003FC87E /* Release */ = { 1236 | isa = XCBuildConfiguration; 1237 | buildSettings = { 1238 | BUNDLE_LOADER = "$(TEST_HOST)"; 1239 | COPY_PHASE_STRIP = NO; 1240 | HEADER_SEARCH_PATHS = ( 1241 | "$(inherited)", 1242 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1243 | ); 1244 | INFOPLIST_FILE = simpleTests/Info.plist; 1245 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1246 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1247 | LIBRARY_SEARCH_PATHS = ( 1248 | "$(inherited)", 1249 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1250 | ); 1251 | OTHER_LDFLAGS = ( 1252 | "-ObjC", 1253 | "-lc++", 1254 | ); 1255 | PRODUCT_NAME = "$(TARGET_NAME)"; 1256 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/simple.app/simple"; 1257 | }; 1258 | name = Release; 1259 | }; 1260 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1261 | isa = XCBuildConfiguration; 1262 | buildSettings = { 1263 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1264 | CURRENT_PROJECT_VERSION = 1; 1265 | DEAD_CODE_STRIPPING = NO; 1266 | HEADER_SEARCH_PATHS = ( 1267 | "$(inherited)", 1268 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1269 | ); 1270 | INFOPLIST_FILE = simple/Info.plist; 1271 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1272 | OTHER_LDFLAGS = ( 1273 | "$(inherited)", 1274 | "-ObjC", 1275 | "-lc++", 1276 | ); 1277 | PRODUCT_NAME = simple; 1278 | VERSIONING_SYSTEM = "apple-generic"; 1279 | }; 1280 | name = Debug; 1281 | }; 1282 | 13B07F951A680F5B00A75B9A /* Release */ = { 1283 | isa = XCBuildConfiguration; 1284 | buildSettings = { 1285 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1286 | CURRENT_PROJECT_VERSION = 1; 1287 | HEADER_SEARCH_PATHS = ( 1288 | "$(inherited)", 1289 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1290 | ); 1291 | INFOPLIST_FILE = simple/Info.plist; 1292 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1293 | OTHER_LDFLAGS = ( 1294 | "$(inherited)", 1295 | "-ObjC", 1296 | "-lc++", 1297 | ); 1298 | PRODUCT_NAME = simple; 1299 | VERSIONING_SYSTEM = "apple-generic"; 1300 | }; 1301 | name = Release; 1302 | }; 1303 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1304 | isa = XCBuildConfiguration; 1305 | buildSettings = { 1306 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1307 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1308 | CLANG_ANALYZER_NONNULL = YES; 1309 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1310 | CLANG_WARN_INFINITE_RECURSION = YES; 1311 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1312 | DEBUG_INFORMATION_FORMAT = dwarf; 1313 | ENABLE_TESTABILITY = YES; 1314 | GCC_NO_COMMON_BLOCKS = YES; 1315 | HEADER_SEARCH_PATHS = ( 1316 | "$(inherited)", 1317 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1318 | ); 1319 | INFOPLIST_FILE = "simple-tvOS/Info.plist"; 1320 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1321 | LIBRARY_SEARCH_PATHS = ( 1322 | "$(inherited)", 1323 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1324 | ); 1325 | OTHER_LDFLAGS = ( 1326 | "-ObjC", 1327 | "-lc++", 1328 | ); 1329 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.simple-tvOS"; 1330 | PRODUCT_NAME = "$(TARGET_NAME)"; 1331 | SDKROOT = appletvos; 1332 | TARGETED_DEVICE_FAMILY = 3; 1333 | TVOS_DEPLOYMENT_TARGET = 9.2; 1334 | }; 1335 | name = Debug; 1336 | }; 1337 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1338 | isa = XCBuildConfiguration; 1339 | buildSettings = { 1340 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1341 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1342 | CLANG_ANALYZER_NONNULL = YES; 1343 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1344 | CLANG_WARN_INFINITE_RECURSION = YES; 1345 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1346 | COPY_PHASE_STRIP = NO; 1347 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1348 | GCC_NO_COMMON_BLOCKS = YES; 1349 | HEADER_SEARCH_PATHS = ( 1350 | "$(inherited)", 1351 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1352 | ); 1353 | INFOPLIST_FILE = "simple-tvOS/Info.plist"; 1354 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1355 | LIBRARY_SEARCH_PATHS = ( 1356 | "$(inherited)", 1357 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1358 | ); 1359 | OTHER_LDFLAGS = ( 1360 | "-ObjC", 1361 | "-lc++", 1362 | ); 1363 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.simple-tvOS"; 1364 | PRODUCT_NAME = "$(TARGET_NAME)"; 1365 | SDKROOT = appletvos; 1366 | TARGETED_DEVICE_FAMILY = 3; 1367 | TVOS_DEPLOYMENT_TARGET = 9.2; 1368 | }; 1369 | name = Release; 1370 | }; 1371 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1372 | isa = XCBuildConfiguration; 1373 | buildSettings = { 1374 | BUNDLE_LOADER = "$(TEST_HOST)"; 1375 | CLANG_ANALYZER_NONNULL = YES; 1376 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1377 | CLANG_WARN_INFINITE_RECURSION = YES; 1378 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1379 | DEBUG_INFORMATION_FORMAT = dwarf; 1380 | ENABLE_TESTABILITY = YES; 1381 | GCC_NO_COMMON_BLOCKS = YES; 1382 | HEADER_SEARCH_PATHS = ( 1383 | "$(inherited)", 1384 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1385 | ); 1386 | INFOPLIST_FILE = "simple-tvOSTests/Info.plist"; 1387 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1388 | LIBRARY_SEARCH_PATHS = ( 1389 | "$(inherited)", 1390 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1391 | ); 1392 | OTHER_LDFLAGS = ( 1393 | "-ObjC", 1394 | "-lc++", 1395 | ); 1396 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.simple-tvOSTests"; 1397 | PRODUCT_NAME = "$(TARGET_NAME)"; 1398 | SDKROOT = appletvos; 1399 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/simple-tvOS.app/simple-tvOS"; 1400 | TVOS_DEPLOYMENT_TARGET = 10.1; 1401 | }; 1402 | name = Debug; 1403 | }; 1404 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1405 | isa = XCBuildConfiguration; 1406 | buildSettings = { 1407 | BUNDLE_LOADER = "$(TEST_HOST)"; 1408 | CLANG_ANALYZER_NONNULL = YES; 1409 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1410 | CLANG_WARN_INFINITE_RECURSION = YES; 1411 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1412 | COPY_PHASE_STRIP = NO; 1413 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1414 | GCC_NO_COMMON_BLOCKS = YES; 1415 | HEADER_SEARCH_PATHS = ( 1416 | "$(inherited)", 1417 | "$(SRCROOT)/../node_modules/react-native-super-ellipse-mask/ios", 1418 | ); 1419 | INFOPLIST_FILE = "simple-tvOSTests/Info.plist"; 1420 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1421 | LIBRARY_SEARCH_PATHS = ( 1422 | "$(inherited)", 1423 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1424 | ); 1425 | OTHER_LDFLAGS = ( 1426 | "-ObjC", 1427 | "-lc++", 1428 | ); 1429 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.simple-tvOSTests"; 1430 | PRODUCT_NAME = "$(TARGET_NAME)"; 1431 | SDKROOT = appletvos; 1432 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/simple-tvOS.app/simple-tvOS"; 1433 | TVOS_DEPLOYMENT_TARGET = 10.1; 1434 | }; 1435 | name = Release; 1436 | }; 1437 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1438 | isa = XCBuildConfiguration; 1439 | buildSettings = { 1440 | ALWAYS_SEARCH_USER_PATHS = NO; 1441 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1442 | CLANG_CXX_LIBRARY = "libc++"; 1443 | CLANG_ENABLE_MODULES = YES; 1444 | CLANG_ENABLE_OBJC_ARC = YES; 1445 | CLANG_WARN_BOOL_CONVERSION = YES; 1446 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1447 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1448 | CLANG_WARN_EMPTY_BODY = YES; 1449 | CLANG_WARN_ENUM_CONVERSION = YES; 1450 | CLANG_WARN_INT_CONVERSION = YES; 1451 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1452 | CLANG_WARN_UNREACHABLE_CODE = YES; 1453 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1454 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1455 | COPY_PHASE_STRIP = NO; 1456 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1457 | GCC_C_LANGUAGE_STANDARD = gnu99; 1458 | GCC_DYNAMIC_NO_PIC = NO; 1459 | GCC_OPTIMIZATION_LEVEL = 0; 1460 | GCC_PREPROCESSOR_DEFINITIONS = ( 1461 | "DEBUG=1", 1462 | "$(inherited)", 1463 | ); 1464 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1465 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1466 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1467 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1468 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1469 | GCC_WARN_UNUSED_FUNCTION = YES; 1470 | GCC_WARN_UNUSED_VARIABLE = YES; 1471 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1472 | MTL_ENABLE_DEBUG_INFO = YES; 1473 | ONLY_ACTIVE_ARCH = YES; 1474 | SDKROOT = iphoneos; 1475 | }; 1476 | name = Debug; 1477 | }; 1478 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1479 | isa = XCBuildConfiguration; 1480 | buildSettings = { 1481 | ALWAYS_SEARCH_USER_PATHS = NO; 1482 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1483 | CLANG_CXX_LIBRARY = "libc++"; 1484 | CLANG_ENABLE_MODULES = YES; 1485 | CLANG_ENABLE_OBJC_ARC = YES; 1486 | CLANG_WARN_BOOL_CONVERSION = YES; 1487 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1488 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1489 | CLANG_WARN_EMPTY_BODY = YES; 1490 | CLANG_WARN_ENUM_CONVERSION = YES; 1491 | CLANG_WARN_INT_CONVERSION = YES; 1492 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1493 | CLANG_WARN_UNREACHABLE_CODE = YES; 1494 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1495 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1496 | COPY_PHASE_STRIP = YES; 1497 | ENABLE_NS_ASSERTIONS = NO; 1498 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1499 | GCC_C_LANGUAGE_STANDARD = gnu99; 1500 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1501 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1502 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1503 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1504 | GCC_WARN_UNUSED_FUNCTION = YES; 1505 | GCC_WARN_UNUSED_VARIABLE = YES; 1506 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1507 | MTL_ENABLE_DEBUG_INFO = NO; 1508 | SDKROOT = iphoneos; 1509 | VALIDATE_PRODUCT = YES; 1510 | }; 1511 | name = Release; 1512 | }; 1513 | /* End XCBuildConfiguration section */ 1514 | 1515 | /* Begin XCConfigurationList section */ 1516 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "simpleTests" */ = { 1517 | isa = XCConfigurationList; 1518 | buildConfigurations = ( 1519 | 00E356F61AD99517003FC87E /* Debug */, 1520 | 00E356F71AD99517003FC87E /* Release */, 1521 | ); 1522 | defaultConfigurationIsVisible = 0; 1523 | defaultConfigurationName = Release; 1524 | }; 1525 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "simple" */ = { 1526 | isa = XCConfigurationList; 1527 | buildConfigurations = ( 1528 | 13B07F941A680F5B00A75B9A /* Debug */, 1529 | 13B07F951A680F5B00A75B9A /* Release */, 1530 | ); 1531 | defaultConfigurationIsVisible = 0; 1532 | defaultConfigurationName = Release; 1533 | }; 1534 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simple-tvOS" */ = { 1535 | isa = XCConfigurationList; 1536 | buildConfigurations = ( 1537 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1538 | 2D02E4981E0B4A5E006451C7 /* Release */, 1539 | ); 1540 | defaultConfigurationIsVisible = 0; 1541 | defaultConfigurationName = Release; 1542 | }; 1543 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simple-tvOSTests" */ = { 1544 | isa = XCConfigurationList; 1545 | buildConfigurations = ( 1546 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1547 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1548 | ); 1549 | defaultConfigurationIsVisible = 0; 1550 | defaultConfigurationName = Release; 1551 | }; 1552 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "simple" */ = { 1553 | isa = XCConfigurationList; 1554 | buildConfigurations = ( 1555 | 83CBBA201A601CBA00E9B192 /* Debug */, 1556 | 83CBBA211A601CBA00E9B192 /* Release */, 1557 | ); 1558 | defaultConfigurationIsVisible = 0; 1559 | defaultConfigurationName = Release; 1560 | }; 1561 | /* End XCConfigurationList section */ 1562 | }; 1563 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1564 | } 1565 | --------------------------------------------------------------------------------