├── .watchmanconfig ├── .gitattributes ├── .babelrc ├── app.json ├── images ├── logo.png └── NightKing.jpg ├── android ├── 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 │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── MaterialCommunityIcons.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── got │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ ├── BUCK │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── settings.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── ios ├── got │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── gotTests │ ├── Info.plist │ └── gotTests.m ├── got-tvOSTests │ └── Info.plist ├── got-tvOS │ └── Info.plist └── got.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── got.xcscheme │ │ └── got-tvOS.xcscheme │ └── project.pbxproj ├── index.js ├── .buckconfig ├── README.md ├── __tests__ └── App.js ├── package.json ├── .gitignore ├── YouTubeVideo.js ├── .flowconfig └── App.js /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "got", 3 | "displayName": "got" 4 | } -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/NightKing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/images/NightKing.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | got 3 | 4 | -------------------------------------------------------------------------------- /ios/got/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | 4 | AppRegistry.registerComponent('got', () => App); 5 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | YouTube replica using the YouTube API and React Native. 2 | Blog post: https://medium.com/react-native-training/react-native-youtube-replica-f378200d91f0 3 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlonanthony/YouTubeReplica/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import App from '../App'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'got' 2 | include ':react-native-youtube' 3 | project(':react-native-youtube').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-youtube/android') 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | 7 | include ':app' 8 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/got/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.got; 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 "got"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ios/got/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/got/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "got", 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.0-alpha.1", 11 | "react-native": "0.54.4", 12 | "react-native-vector-icons": "^4.5.0", 13 | "react-native-youtube": "^1.1.0", 14 | "react-navigation": "^1.5.9" 15 | }, 16 | "devDependencies": { 17 | "babel-jest": "22.4.3", 18 | "babel-preset-react-native": "4.0.0", 19 | "jest": "22.4.3", 20 | "react-test-renderer": "^16.3.0-alpha.1" 21 | }, 22 | "jest": { 23 | "preset": "react-native" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/got/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/gotTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/got-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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/got/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.got; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.inprogress.reactnativeyoutube.ReactNativeYouTube; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | public boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage(), 28 | new ReactNativeYouTube(), 29 | new VectorIconsPackage() 30 | ); 31 | } 32 | 33 | @Override 34 | protected String getJSMainModuleName() { 35 | return "index"; 36 | } 37 | }; 38 | 39 | @Override 40 | public ReactNativeHost getReactNativeHost() { 41 | return mReactNativeHost; 42 | } 43 | 44 | @Override 45 | public void onCreate() { 46 | super.onCreate(); 47 | SoLoader.init(this, /* native exopackage */ false); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /ios/got/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"got" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /YouTubeVideo.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { StyleSheet, View } from 'react-native' 3 | import { StackNavigator } from 'react-navigation' 4 | import YouTube from 'react-native-youtube' 5 | 6 | export default class YouTubeVideo extends React.Component{ 7 | static navigationOptions = { 8 | headerTitle: 'YouTube', 9 | headerStyle: { 10 | backgroundColor: '#000' 11 | }, 12 | headerTitleStyle: { 13 | color: '#fff' 14 | } 15 | } 16 | 17 | render() { 18 | return ( 19 | 20 | this.setState({ isReady: true })} 27 | onChangeState={e => this.setState({ status: e.state })} 28 | onChangeQuality={e => this.setState({ quality: e.quality })} 29 | onError={e => this.setState({ error: e.error })} 30 | style={{ alignSelf: 'stretch', height: 300 }} 31 | /> 32 | 33 | ) 34 | } 35 | } 36 | 37 | const styles = StyleSheet.create({ 38 | container: { 39 | flex: 1, 40 | justifyContent: 'center', 41 | alignItems: 'center', 42 | backgroundColor: '#fff' 43 | } 44 | }) 45 | 46 | -------------------------------------------------------------------------------- /.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.65.0 55 | -------------------------------------------------------------------------------- /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.got", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.got", 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 | -------------------------------------------------------------------------------- /ios/got-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/got/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | got 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 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | Feather.ttf 59 | FontAwesome.ttf 60 | Foundation.ttf 61 | Ionicons.ttf 62 | MaterialCommunityIcons.ttf 63 | MaterialIcons.ttf 64 | Octicons.ttf 65 | SimpleLineIcons.ttf 66 | Zocial.ttf 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /ios/gotTests/gotTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface gotTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation gotTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/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 | -------------------------------------------------------------------------------- /ios/got/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/got.xcodeproj/xcshareddata/xcschemes/got.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/got.xcodeproj/xcshareddata/xcschemes/got-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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react' 2 | import { 3 | Image, 4 | TouchableHighlight, 5 | TouchableOpacity, 6 | ScrollView, 7 | StyleSheet, 8 | Text, 9 | View 10 | } from 'react-native' 11 | import { StackNavigator } from 'react-navigation' 12 | import YouTube from 'react-native-youtube' 13 | import YouTubeVideo from './YouTubeVideo' 14 | import Icon from 'react-native-vector-icons/MaterialIcons' 15 | import Icons from 'react-native-vector-icons/MaterialCommunityIcons' 16 | 17 | const apiKey = 'AIzaSyBJ3ntReiv0L19H2RoYW62LpRdIuyPhIpw' 18 | const channelId = 'UCQzdMyuz0Lf4zo4uGcEujFw' 19 | const results = 30 20 | 21 | class App extends Component { 22 | static navigationOptions = { 23 | headerStyle: { 24 | backgroundColor: '#fff' 25 | }, 26 | headerLeft: ( 27 | 28 | 31 | 32 | ), 33 | headerRight: ( 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | ) 49 | } 50 | 51 | 52 | constructor(props){ 53 | super(props) 54 | this.state = { 55 | data: [] 56 | } 57 | } 58 | 59 | componentDidMount(){ 60 | fetch(`https://www.googleapis.com/youtube/v3/search/?key=${apiKey}&channelId=${channelId}&part=snippet,id&order=date&maxResults=${results}`) 61 | //fetch('https://www.googleapis.com/youtube/v3/search/?key=AIzaSyBJ3ntReiv0L19H2RoYW62LpRdIuyPhIpw&channelId=UCQzdMyuz0Lf4zo4uGcEujFw&part=snippet,id&order=date&maxResults=30') 62 | .then(res => res.json()) 63 | .then(res => { 64 | const videoId = [] 65 | res.items.forEach(item => { 66 | videoId.push(item) 67 | }) 68 | this.setState({ 69 | data: videoId 70 | }) 71 | }) 72 | .catch(error => { 73 | console.error(error) 74 | }) 75 | } 76 | 77 | render() { 78 | const {navigate} = this.props.navigation 79 | return ( 80 | 81 | 82 | 83 | {this.state.data.map((item, i) => 84 | navigate('YouTubeVideo', {youtubeId: item.id.videoId})}> 87 | {/* onPress={() => this.props.navigation.navigate('YoutubeVideo', {youtubeId: item.id.videoId})}> */} 88 | 89 | 92 | 93 | 96 | {item.snippet.title} 97 | 98 | 99 | 100 | 101 | )} 102 | 103 | 104 | 105 | 106 | 107 | Home 108 | 109 | 110 | 111 | Trending 112 | 113 | 114 | 115 | Subscriptions 116 | 117 | 118 | 119 | Activity 120 | 121 | 122 | 123 | Library 124 | 125 | 126 | 127 | ) 128 | } 129 | } 130 | 131 | const styles = StyleSheet.create({ 132 | container: { 133 | flex: 1 134 | }, 135 | body: { 136 | flex: 1, 137 | backgroundColor: '#fff', 138 | alignItems: 'center', 139 | padding: 30 140 | }, 141 | vids: { 142 | paddingBottom: 30, 143 | width: 320, 144 | alignItems: 'center', 145 | backgroundColor: '#fff', 146 | justifyContent: 'center', 147 | borderBottomWidth: 0.6, 148 | borderColor: '#aaa' 149 | }, 150 | vidItems: { 151 | flexDirection: 'row', 152 | alignItems: 'center', 153 | justifyContent: 'space-around', 154 | padding: 10 155 | }, 156 | vidText: { 157 | padding: 20, 158 | color: '#000' 159 | }, 160 | tabBar: { 161 | backgroundColor: '#fff', 162 | height: 70, 163 | flexDirection: 'row', 164 | justifyContent: 'space-around', 165 | borderTopWidth: 0.5, 166 | borderColor: '#bbb' 167 | }, 168 | tabItems: { 169 | alignItems: 'center', 170 | justifyContent: 'center', 171 | paddingBottom: 5 172 | }, 173 | tabTitle: { 174 | fontSize: 11, 175 | color: '#333', 176 | paddingTop: 4, 177 | textDecorationLine: 'underline' 178 | } 179 | }) 180 | 181 | export default screens = StackNavigator({ 182 | Home: { screen: App }, 183 | YouTubeVideo: { screen: YouTubeVideo } 184 | }) -------------------------------------------------------------------------------- /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.got" 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 project(':react-native-youtube') 141 | compile project(':react-native-vector-icons') 142 | compile fileTree(dir: "libs", include: ["*.jar"]) 143 | compile "com.android.support:appcompat-v7:23.0.1" 144 | compile "com.facebook.react:react-native:+" // From node_modules 145 | } 146 | 147 | // Run this once to be able to run the application with BUCK 148 | // puts all compile dependencies into folder libs for BUCK to use 149 | task copyDownloadableDepsToLibs(type: Copy) { 150 | from configurations.compile 151 | into 'libs' 152 | } 153 | -------------------------------------------------------------------------------- /ios/got.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 /* gotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* gotTests.m */; }; 16 | 1121EB6ABBA44F24BB5FFFB0 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1C5A9C8094EF4D1DA9EB2CFA /* EvilIcons.ttf */; }; 17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 18 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 19 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 20 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 21 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 22 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 23 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 24 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 26 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 27 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 28 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 29 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 30 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 31 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 32 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 33 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 34 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 35 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 36 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 37 | 2DCD954D1E0B4F2C00145EB5 /* gotTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* gotTests.m */; }; 38 | 45D5189697CA4D84858FF3DC /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A9355D1BEAAC4BB6A4C84416 /* Feather.ttf */; }; 39 | 4A4E687A51864D41A736FE45 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F7A6D06ACBE64594AE9CF807 /* Octicons.ttf */; }; 40 | 5D3F5FE75043469A840CB0D2 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 391C4122A67A43C8A0AFF6ED /* SimpleLineIcons.ttf */; }; 41 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 42 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 43 | 846CF8658B8A4FE98F04FF4C /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA9C966AA79B48B28B53CC72 /* MaterialCommunityIcons.ttf */; }; 44 | 898708E12071C35F0036A3FF /* YTPlayerView-iframe-player.html in Resources */ = {isa = PBXBuildFile; fileRef = 898708E02071C35E0036A3FF /* YTPlayerView-iframe-player.html */; }; 45 | A52A96F938B74EB4B42F471E /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B772BBC9C3A246DDB1D8E930 /* Zocial.ttf */; }; 46 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 47 | B22F5B4F374D462886DE30BB /* libRCTYouTube.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F595A528D3884B9E94361BC0 /* libRCTYouTube.a */; }; 48 | C10268A22BAB41F292019935 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 90DF8A31E24C4328A0A64C96 /* Ionicons.ttf */; }; 49 | C1876A25B0FC4025A02D3990 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 16620629FDBA4FEFA0780D46 /* MaterialIcons.ttf */; }; 50 | C41241C1CD8A48B8BDE4B483 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 68E13AB49D3B4B02B417BEE7 /* Foundation.ttf */; }; 51 | C67457F9545F4647AABB2D76 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 26D07CE7759A43A8AD452BFC /* Entypo.ttf */; }; 52 | C9127A62535C476286D8114E /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F3AD2213FEB248ACB0B7D1D2 /* FontAwesome.ttf */; }; 53 | EE4275FDA56A467F955D6C60 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 26FDCA39EEE6443DBBBB035F /* libRNVectorIcons.a */; }; 54 | /* End PBXBuildFile section */ 55 | 56 | /* Begin PBXContainerItemProxy section */ 57 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 58 | isa = PBXContainerItemProxy; 59 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 60 | proxyType = 2; 61 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 62 | remoteInfo = RCTActionSheet; 63 | }; 64 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 67 | proxyType = 2; 68 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 69 | remoteInfo = RCTGeolocation; 70 | }; 71 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 76 | remoteInfo = RCTImage; 77 | }; 78 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 83 | remoteInfo = RCTNetwork; 84 | }; 85 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 90 | remoteInfo = RCTVibration; 91 | }; 92 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 95 | proxyType = 1; 96 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 97 | remoteInfo = got; 98 | }; 99 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 104 | remoteInfo = RCTSettings; 105 | }; 106 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 107 | isa = PBXContainerItemProxy; 108 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 109 | proxyType = 2; 110 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 111 | remoteInfo = RCTWebSocket; 112 | }; 113 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 114 | isa = PBXContainerItemProxy; 115 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 116 | proxyType = 2; 117 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 118 | remoteInfo = React; 119 | }; 120 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 121 | isa = PBXContainerItemProxy; 122 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 123 | proxyType = 1; 124 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 125 | remoteInfo = "got-tvOS"; 126 | }; 127 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 128 | isa = PBXContainerItemProxy; 129 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 130 | proxyType = 2; 131 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 132 | remoteInfo = "RCTBlob-tvOS"; 133 | }; 134 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 135 | isa = PBXContainerItemProxy; 136 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 137 | proxyType = 2; 138 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 139 | remoteInfo = fishhook; 140 | }; 141 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 142 | isa = PBXContainerItemProxy; 143 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 144 | proxyType = 2; 145 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 146 | remoteInfo = "fishhook-tvOS"; 147 | }; 148 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 149 | isa = PBXContainerItemProxy; 150 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 151 | proxyType = 2; 152 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 153 | remoteInfo = "RCTImage-tvOS"; 154 | }; 155 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 156 | isa = PBXContainerItemProxy; 157 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 158 | proxyType = 2; 159 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 160 | remoteInfo = "RCTLinking-tvOS"; 161 | }; 162 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 163 | isa = PBXContainerItemProxy; 164 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 165 | proxyType = 2; 166 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 167 | remoteInfo = "RCTNetwork-tvOS"; 168 | }; 169 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 170 | isa = PBXContainerItemProxy; 171 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 172 | proxyType = 2; 173 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 174 | remoteInfo = "RCTSettings-tvOS"; 175 | }; 176 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 177 | isa = PBXContainerItemProxy; 178 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 179 | proxyType = 2; 180 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 181 | remoteInfo = "RCTText-tvOS"; 182 | }; 183 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 184 | isa = PBXContainerItemProxy; 185 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 186 | proxyType = 2; 187 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 188 | remoteInfo = "RCTWebSocket-tvOS"; 189 | }; 190 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 191 | isa = PBXContainerItemProxy; 192 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 193 | proxyType = 2; 194 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 195 | remoteInfo = "React-tvOS"; 196 | }; 197 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 198 | isa = PBXContainerItemProxy; 199 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 200 | proxyType = 2; 201 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 202 | remoteInfo = yoga; 203 | }; 204 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 205 | isa = PBXContainerItemProxy; 206 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 207 | proxyType = 2; 208 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 209 | remoteInfo = "yoga-tvOS"; 210 | }; 211 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 212 | isa = PBXContainerItemProxy; 213 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 214 | proxyType = 2; 215 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 216 | remoteInfo = cxxreact; 217 | }; 218 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 219 | isa = PBXContainerItemProxy; 220 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 221 | proxyType = 2; 222 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 223 | remoteInfo = "cxxreact-tvOS"; 224 | }; 225 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 226 | isa = PBXContainerItemProxy; 227 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 228 | proxyType = 2; 229 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 230 | remoteInfo = jschelpers; 231 | }; 232 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 233 | isa = PBXContainerItemProxy; 234 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 235 | proxyType = 2; 236 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 237 | remoteInfo = "jschelpers-tvOS"; 238 | }; 239 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 240 | isa = PBXContainerItemProxy; 241 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 242 | proxyType = 2; 243 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 244 | remoteInfo = RCTAnimation; 245 | }; 246 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 247 | isa = PBXContainerItemProxy; 248 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 249 | proxyType = 2; 250 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 251 | remoteInfo = "RCTAnimation-tvOS"; 252 | }; 253 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 254 | isa = PBXContainerItemProxy; 255 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 256 | proxyType = 2; 257 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 258 | remoteInfo = RCTLinking; 259 | }; 260 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 261 | isa = PBXContainerItemProxy; 262 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 263 | proxyType = 2; 264 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 265 | remoteInfo = RCTText; 266 | }; 267 | 898708C62071C2CD0036A3FF /* PBXContainerItemProxy */ = { 268 | isa = PBXContainerItemProxy; 269 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 270 | proxyType = 2; 271 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 272 | remoteInfo = jsinspector; 273 | }; 274 | 898708C82071C2CD0036A3FF /* PBXContainerItemProxy */ = { 275 | isa = PBXContainerItemProxy; 276 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 277 | proxyType = 2; 278 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 279 | remoteInfo = "jsinspector-tvOS"; 280 | }; 281 | 898708CA2071C2CD0036A3FF /* PBXContainerItemProxy */ = { 282 | isa = PBXContainerItemProxy; 283 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 284 | proxyType = 2; 285 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 286 | remoteInfo = "third-party"; 287 | }; 288 | 898708CC2071C2CD0036A3FF /* PBXContainerItemProxy */ = { 289 | isa = PBXContainerItemProxy; 290 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 291 | proxyType = 2; 292 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 293 | remoteInfo = "third-party-tvOS"; 294 | }; 295 | 898708CE2071C2CD0036A3FF /* PBXContainerItemProxy */ = { 296 | isa = PBXContainerItemProxy; 297 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 298 | proxyType = 2; 299 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 300 | remoteInfo = "double-conversion"; 301 | }; 302 | 898708D02071C2CD0036A3FF /* PBXContainerItemProxy */ = { 303 | isa = PBXContainerItemProxy; 304 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 305 | proxyType = 2; 306 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 307 | remoteInfo = "double-conversion-tvOS"; 308 | }; 309 | 898708D22071C2CD0036A3FF /* PBXContainerItemProxy */ = { 310 | isa = PBXContainerItemProxy; 311 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 312 | proxyType = 2; 313 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 314 | remoteInfo = privatedata; 315 | }; 316 | 898708D42071C2CD0036A3FF /* PBXContainerItemProxy */ = { 317 | isa = PBXContainerItemProxy; 318 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 319 | proxyType = 2; 320 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 321 | remoteInfo = "privatedata-tvOS"; 322 | }; 323 | 898708DB2071C2CE0036A3FF /* PBXContainerItemProxy */ = { 324 | isa = PBXContainerItemProxy; 325 | containerPortal = 0F31BBEDDC5E41AFB6463F9D /* RCTYouTube.xcodeproj */; 326 | proxyType = 2; 327 | remoteGlobalIDString = 8BDB9BC91B4289AE00EF9FEF; 328 | remoteInfo = RCTYouTube; 329 | }; 330 | 898708DE2071C2CE0036A3FF /* PBXContainerItemProxy */ = { 331 | isa = PBXContainerItemProxy; 332 | containerPortal = 9B98D75DA9D04D75AC4B88B7 /* RNVectorIcons.xcodeproj */; 333 | proxyType = 2; 334 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 335 | remoteInfo = RNVectorIcons; 336 | }; 337 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 338 | isa = PBXContainerItemProxy; 339 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 340 | proxyType = 2; 341 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 342 | remoteInfo = RCTBlob; 343 | }; 344 | /* End PBXContainerItemProxy section */ 345 | 346 | /* Begin PBXFileReference section */ 347 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 348 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 349 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 350 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 351 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 352 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 353 | 00E356EE1AD99517003FC87E /* gotTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gotTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 354 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 355 | 00E356F21AD99517003FC87E /* gotTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = gotTests.m; sourceTree = ""; }; 356 | 0F31BBEDDC5E41AFB6463F9D /* RCTYouTube.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTYouTube.xcodeproj; path = "../node_modules/react-native-youtube/RCTYouTube.xcodeproj"; sourceTree = ""; }; 357 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 358 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 359 | 13B07F961A680F5B00A75B9A /* got.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = got.app; sourceTree = BUILT_PRODUCTS_DIR; }; 360 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = got/AppDelegate.h; sourceTree = ""; }; 361 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = got/AppDelegate.m; sourceTree = ""; }; 362 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 363 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = got/Images.xcassets; sourceTree = ""; }; 364 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = got/Info.plist; sourceTree = ""; }; 365 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = got/main.m; sourceTree = ""; }; 366 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 367 | 16620629FDBA4FEFA0780D46 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 368 | 1C5A9C8094EF4D1DA9EB2CFA /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 369 | 26D07CE7759A43A8AD452BFC /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 370 | 26FDCA39EEE6443DBBBB035F /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 371 | 2D02E47B1E0B4A5D006451C7 /* got-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "got-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 372 | 2D02E4901E0B4A5D006451C7 /* got-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "got-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 373 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 374 | 391C4122A67A43C8A0AFF6ED /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 375 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 376 | 68E13AB49D3B4B02B417BEE7 /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 377 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 378 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 379 | 898708E02071C35E0036A3FF /* YTPlayerView-iframe-player.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = "YTPlayerView-iframe-player.html"; path = "../node_modules/react-native-youtube/assets/YTPlayerView-iframe-player.html"; sourceTree = ""; }; 380 | 90DF8A31E24C4328A0A64C96 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 381 | 9B98D75DA9D04D75AC4B88B7 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 382 | A9355D1BEAAC4BB6A4C84416 /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 383 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 384 | B772BBC9C3A246DDB1D8E930 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 385 | F3AD2213FEB248ACB0B7D1D2 /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 386 | F595A528D3884B9E94361BC0 /* libRCTYouTube.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTYouTube.a; sourceTree = ""; }; 387 | F7A6D06ACBE64594AE9CF807 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 388 | FA9C966AA79B48B28B53CC72 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 389 | /* End PBXFileReference section */ 390 | 391 | /* Begin PBXFrameworksBuildPhase section */ 392 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 393 | isa = PBXFrameworksBuildPhase; 394 | buildActionMask = 2147483647; 395 | files = ( 396 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 397 | ); 398 | runOnlyForDeploymentPostprocessing = 0; 399 | }; 400 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 401 | isa = PBXFrameworksBuildPhase; 402 | buildActionMask = 2147483647; 403 | files = ( 404 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 405 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 406 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 407 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 408 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 409 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 410 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 411 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 412 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 413 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 414 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 415 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 416 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 417 | EE4275FDA56A467F955D6C60 /* libRNVectorIcons.a in Frameworks */, 418 | B22F5B4F374D462886DE30BB /* libRCTYouTube.a in Frameworks */, 419 | ); 420 | runOnlyForDeploymentPostprocessing = 0; 421 | }; 422 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 423 | isa = PBXFrameworksBuildPhase; 424 | buildActionMask = 2147483647; 425 | files = ( 426 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 427 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 428 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 429 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 430 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 431 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 432 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 433 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 434 | ); 435 | runOnlyForDeploymentPostprocessing = 0; 436 | }; 437 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 438 | isa = PBXFrameworksBuildPhase; 439 | buildActionMask = 2147483647; 440 | files = ( 441 | ); 442 | runOnlyForDeploymentPostprocessing = 0; 443 | }; 444 | /* End PBXFrameworksBuildPhase section */ 445 | 446 | /* Begin PBXGroup section */ 447 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 448 | isa = PBXGroup; 449 | children = ( 450 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 451 | ); 452 | name = Products; 453 | sourceTree = ""; 454 | }; 455 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 456 | isa = PBXGroup; 457 | children = ( 458 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 459 | ); 460 | name = Products; 461 | sourceTree = ""; 462 | }; 463 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 464 | isa = PBXGroup; 465 | children = ( 466 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 467 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 468 | ); 469 | name = Products; 470 | sourceTree = ""; 471 | }; 472 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 473 | isa = PBXGroup; 474 | children = ( 475 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 476 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 477 | ); 478 | name = Products; 479 | sourceTree = ""; 480 | }; 481 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 482 | isa = PBXGroup; 483 | children = ( 484 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 485 | ); 486 | name = Products; 487 | sourceTree = ""; 488 | }; 489 | 00E356EF1AD99517003FC87E /* gotTests */ = { 490 | isa = PBXGroup; 491 | children = ( 492 | 00E356F21AD99517003FC87E /* gotTests.m */, 493 | 00E356F01AD99517003FC87E /* Supporting Files */, 494 | ); 495 | path = gotTests; 496 | sourceTree = ""; 497 | }; 498 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 499 | isa = PBXGroup; 500 | children = ( 501 | 00E356F11AD99517003FC87E /* Info.plist */, 502 | ); 503 | name = "Supporting Files"; 504 | sourceTree = ""; 505 | }; 506 | 139105B71AF99BAD00B5F7CC /* Products */ = { 507 | isa = PBXGroup; 508 | children = ( 509 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 510 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 511 | ); 512 | name = Products; 513 | sourceTree = ""; 514 | }; 515 | 139FDEE71B06529A00C62182 /* Products */ = { 516 | isa = PBXGroup; 517 | children = ( 518 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 519 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 520 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 521 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 522 | ); 523 | name = Products; 524 | sourceTree = ""; 525 | }; 526 | 13B07FAE1A68108700A75B9A /* got */ = { 527 | isa = PBXGroup; 528 | children = ( 529 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 530 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 531 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 532 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 533 | 13B07FB61A68108700A75B9A /* Info.plist */, 534 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 535 | 13B07FB71A68108700A75B9A /* main.m */, 536 | ); 537 | name = got; 538 | sourceTree = ""; 539 | }; 540 | 146834001AC3E56700842450 /* Products */ = { 541 | isa = PBXGroup; 542 | children = ( 543 | 146834041AC3E56700842450 /* libReact.a */, 544 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 545 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 546 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 547 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 548 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 549 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 550 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 551 | 898708C72071C2CD0036A3FF /* libjsinspector.a */, 552 | 898708C92071C2CD0036A3FF /* libjsinspector-tvOS.a */, 553 | 898708CB2071C2CD0036A3FF /* libthird-party.a */, 554 | 898708CD2071C2CD0036A3FF /* libthird-party.a */, 555 | 898708CF2071C2CD0036A3FF /* libdouble-conversion.a */, 556 | 898708D12071C2CD0036A3FF /* libdouble-conversion.a */, 557 | 898708D32071C2CD0036A3FF /* libprivatedata.a */, 558 | 898708D52071C2CD0036A3FF /* libprivatedata-tvOS.a */, 559 | ); 560 | name = Products; 561 | sourceTree = ""; 562 | }; 563 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 564 | isa = PBXGroup; 565 | children = ( 566 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 567 | ); 568 | name = Frameworks; 569 | sourceTree = ""; 570 | }; 571 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 572 | isa = PBXGroup; 573 | children = ( 574 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 575 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 576 | ); 577 | name = Products; 578 | sourceTree = ""; 579 | }; 580 | 78C398B11ACF4ADC00677621 /* Products */ = { 581 | isa = PBXGroup; 582 | children = ( 583 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 584 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 585 | ); 586 | name = Products; 587 | sourceTree = ""; 588 | }; 589 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 590 | isa = PBXGroup; 591 | children = ( 592 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 593 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 594 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 595 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 596 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 597 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 598 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 599 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 600 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 601 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 602 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 603 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 604 | 9B98D75DA9D04D75AC4B88B7 /* RNVectorIcons.xcodeproj */, 605 | 0F31BBEDDC5E41AFB6463F9D /* RCTYouTube.xcodeproj */, 606 | ); 607 | name = Libraries; 608 | sourceTree = ""; 609 | }; 610 | 832341B11AAA6A8300B99B32 /* Products */ = { 611 | isa = PBXGroup; 612 | children = ( 613 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 614 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 615 | ); 616 | name = Products; 617 | sourceTree = ""; 618 | }; 619 | 83CBB9F61A601CBA00E9B192 = { 620 | isa = PBXGroup; 621 | children = ( 622 | 898708E02071C35E0036A3FF /* YTPlayerView-iframe-player.html */, 623 | 13B07FAE1A68108700A75B9A /* got */, 624 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 625 | 00E356EF1AD99517003FC87E /* gotTests */, 626 | 83CBBA001A601CBA00E9B192 /* Products */, 627 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 628 | EB00484522EE49538A62F812 /* Resources */, 629 | 898708A02071C2C20036A3FF /* Recovered References */, 630 | ); 631 | indentWidth = 2; 632 | sourceTree = ""; 633 | tabWidth = 2; 634 | usesTabs = 0; 635 | }; 636 | 83CBBA001A601CBA00E9B192 /* Products */ = { 637 | isa = PBXGroup; 638 | children = ( 639 | 13B07F961A680F5B00A75B9A /* got.app */, 640 | 00E356EE1AD99517003FC87E /* gotTests.xctest */, 641 | 2D02E47B1E0B4A5D006451C7 /* got-tvOS.app */, 642 | 2D02E4901E0B4A5D006451C7 /* got-tvOSTests.xctest */, 643 | ); 644 | name = Products; 645 | sourceTree = ""; 646 | }; 647 | 898708A02071C2C20036A3FF /* Recovered References */ = { 648 | isa = PBXGroup; 649 | children = ( 650 | 26FDCA39EEE6443DBBBB035F /* libRNVectorIcons.a */, 651 | F595A528D3884B9E94361BC0 /* libRCTYouTube.a */, 652 | ); 653 | name = "Recovered References"; 654 | sourceTree = ""; 655 | }; 656 | 898708D62071C2CD0036A3FF /* Products */ = { 657 | isa = PBXGroup; 658 | children = ( 659 | 898708DF2071C2CE0036A3FF /* libRNVectorIcons.a */, 660 | ); 661 | name = Products; 662 | sourceTree = ""; 663 | }; 664 | 898708D82071C2CD0036A3FF /* Products */ = { 665 | isa = PBXGroup; 666 | children = ( 667 | 898708DC2071C2CE0036A3FF /* libRCTYouTube.a */, 668 | ); 669 | name = Products; 670 | sourceTree = ""; 671 | }; 672 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 673 | isa = PBXGroup; 674 | children = ( 675 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 676 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 677 | ); 678 | name = Products; 679 | sourceTree = ""; 680 | }; 681 | EB00484522EE49538A62F812 /* Resources */ = { 682 | isa = PBXGroup; 683 | children = ( 684 | 26D07CE7759A43A8AD452BFC /* Entypo.ttf */, 685 | 1C5A9C8094EF4D1DA9EB2CFA /* EvilIcons.ttf */, 686 | A9355D1BEAAC4BB6A4C84416 /* Feather.ttf */, 687 | F3AD2213FEB248ACB0B7D1D2 /* FontAwesome.ttf */, 688 | 68E13AB49D3B4B02B417BEE7 /* Foundation.ttf */, 689 | 90DF8A31E24C4328A0A64C96 /* Ionicons.ttf */, 690 | FA9C966AA79B48B28B53CC72 /* MaterialCommunityIcons.ttf */, 691 | 16620629FDBA4FEFA0780D46 /* MaterialIcons.ttf */, 692 | F7A6D06ACBE64594AE9CF807 /* Octicons.ttf */, 693 | 391C4122A67A43C8A0AFF6ED /* SimpleLineIcons.ttf */, 694 | B772BBC9C3A246DDB1D8E930 /* Zocial.ttf */, 695 | ); 696 | name = Resources; 697 | sourceTree = ""; 698 | }; 699 | /* End PBXGroup section */ 700 | 701 | /* Begin PBXNativeTarget section */ 702 | 00E356ED1AD99517003FC87E /* gotTests */ = { 703 | isa = PBXNativeTarget; 704 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "gotTests" */; 705 | buildPhases = ( 706 | 00E356EA1AD99517003FC87E /* Sources */, 707 | 00E356EB1AD99517003FC87E /* Frameworks */, 708 | 00E356EC1AD99517003FC87E /* Resources */, 709 | ); 710 | buildRules = ( 711 | ); 712 | dependencies = ( 713 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 714 | ); 715 | name = gotTests; 716 | productName = gotTests; 717 | productReference = 00E356EE1AD99517003FC87E /* gotTests.xctest */; 718 | productType = "com.apple.product-type.bundle.unit-test"; 719 | }; 720 | 13B07F861A680F5B00A75B9A /* got */ = { 721 | isa = PBXNativeTarget; 722 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "got" */; 723 | buildPhases = ( 724 | 13B07F871A680F5B00A75B9A /* Sources */, 725 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 726 | 13B07F8E1A680F5B00A75B9A /* Resources */, 727 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 728 | ); 729 | buildRules = ( 730 | ); 731 | dependencies = ( 732 | ); 733 | name = got; 734 | productName = "Hello World"; 735 | productReference = 13B07F961A680F5B00A75B9A /* got.app */; 736 | productType = "com.apple.product-type.application"; 737 | }; 738 | 2D02E47A1E0B4A5D006451C7 /* got-tvOS */ = { 739 | isa = PBXNativeTarget; 740 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "got-tvOS" */; 741 | buildPhases = ( 742 | 2D02E4771E0B4A5D006451C7 /* Sources */, 743 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 744 | 2D02E4791E0B4A5D006451C7 /* Resources */, 745 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 746 | ); 747 | buildRules = ( 748 | ); 749 | dependencies = ( 750 | ); 751 | name = "got-tvOS"; 752 | productName = "got-tvOS"; 753 | productReference = 2D02E47B1E0B4A5D006451C7 /* got-tvOS.app */; 754 | productType = "com.apple.product-type.application"; 755 | }; 756 | 2D02E48F1E0B4A5D006451C7 /* got-tvOSTests */ = { 757 | isa = PBXNativeTarget; 758 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "got-tvOSTests" */; 759 | buildPhases = ( 760 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 761 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 762 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 763 | ); 764 | buildRules = ( 765 | ); 766 | dependencies = ( 767 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 768 | ); 769 | name = "got-tvOSTests"; 770 | productName = "got-tvOSTests"; 771 | productReference = 2D02E4901E0B4A5D006451C7 /* got-tvOSTests.xctest */; 772 | productType = "com.apple.product-type.bundle.unit-test"; 773 | }; 774 | /* End PBXNativeTarget section */ 775 | 776 | /* Begin PBXProject section */ 777 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 778 | isa = PBXProject; 779 | attributes = { 780 | LastUpgradeCheck = 610; 781 | ORGANIZATIONNAME = Facebook; 782 | TargetAttributes = { 783 | 00E356ED1AD99517003FC87E = { 784 | CreatedOnToolsVersion = 6.2; 785 | TestTargetID = 13B07F861A680F5B00A75B9A; 786 | }; 787 | 2D02E47A1E0B4A5D006451C7 = { 788 | CreatedOnToolsVersion = 8.2.1; 789 | ProvisioningStyle = Automatic; 790 | }; 791 | 2D02E48F1E0B4A5D006451C7 = { 792 | CreatedOnToolsVersion = 8.2.1; 793 | ProvisioningStyle = Automatic; 794 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 795 | }; 796 | }; 797 | }; 798 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "got" */; 799 | compatibilityVersion = "Xcode 3.2"; 800 | developmentRegion = English; 801 | hasScannedForEncodings = 0; 802 | knownRegions = ( 803 | en, 804 | Base, 805 | ); 806 | mainGroup = 83CBB9F61A601CBA00E9B192; 807 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 808 | projectDirPath = ""; 809 | projectReferences = ( 810 | { 811 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 812 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 813 | }, 814 | { 815 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 816 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 817 | }, 818 | { 819 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 820 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 821 | }, 822 | { 823 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 824 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 825 | }, 826 | { 827 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 828 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 829 | }, 830 | { 831 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 832 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 833 | }, 834 | { 835 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 836 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 837 | }, 838 | { 839 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 840 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 841 | }, 842 | { 843 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 844 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 845 | }, 846 | { 847 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 848 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 849 | }, 850 | { 851 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 852 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 853 | }, 854 | { 855 | ProductGroup = 898708D82071C2CD0036A3FF /* Products */; 856 | ProjectRef = 0F31BBEDDC5E41AFB6463F9D /* RCTYouTube.xcodeproj */; 857 | }, 858 | { 859 | ProductGroup = 146834001AC3E56700842450 /* Products */; 860 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 861 | }, 862 | { 863 | ProductGroup = 898708D62071C2CD0036A3FF /* Products */; 864 | ProjectRef = 9B98D75DA9D04D75AC4B88B7 /* RNVectorIcons.xcodeproj */; 865 | }, 866 | ); 867 | projectRoot = ""; 868 | targets = ( 869 | 13B07F861A680F5B00A75B9A /* got */, 870 | 00E356ED1AD99517003FC87E /* gotTests */, 871 | 2D02E47A1E0B4A5D006451C7 /* got-tvOS */, 872 | 2D02E48F1E0B4A5D006451C7 /* got-tvOSTests */, 873 | ); 874 | }; 875 | /* End PBXProject section */ 876 | 877 | /* Begin PBXReferenceProxy section */ 878 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 879 | isa = PBXReferenceProxy; 880 | fileType = archive.ar; 881 | path = libRCTActionSheet.a; 882 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 883 | sourceTree = BUILT_PRODUCTS_DIR; 884 | }; 885 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 886 | isa = PBXReferenceProxy; 887 | fileType = archive.ar; 888 | path = libRCTGeolocation.a; 889 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 890 | sourceTree = BUILT_PRODUCTS_DIR; 891 | }; 892 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 893 | isa = PBXReferenceProxy; 894 | fileType = archive.ar; 895 | path = libRCTImage.a; 896 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 897 | sourceTree = BUILT_PRODUCTS_DIR; 898 | }; 899 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 900 | isa = PBXReferenceProxy; 901 | fileType = archive.ar; 902 | path = libRCTNetwork.a; 903 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 904 | sourceTree = BUILT_PRODUCTS_DIR; 905 | }; 906 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 907 | isa = PBXReferenceProxy; 908 | fileType = archive.ar; 909 | path = libRCTVibration.a; 910 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 911 | sourceTree = BUILT_PRODUCTS_DIR; 912 | }; 913 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 914 | isa = PBXReferenceProxy; 915 | fileType = archive.ar; 916 | path = libRCTSettings.a; 917 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 918 | sourceTree = BUILT_PRODUCTS_DIR; 919 | }; 920 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 921 | isa = PBXReferenceProxy; 922 | fileType = archive.ar; 923 | path = libRCTWebSocket.a; 924 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 925 | sourceTree = BUILT_PRODUCTS_DIR; 926 | }; 927 | 146834041AC3E56700842450 /* libReact.a */ = { 928 | isa = PBXReferenceProxy; 929 | fileType = archive.ar; 930 | path = libReact.a; 931 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 932 | sourceTree = BUILT_PRODUCTS_DIR; 933 | }; 934 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 935 | isa = PBXReferenceProxy; 936 | fileType = archive.ar; 937 | path = "libRCTBlob-tvOS.a"; 938 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 939 | sourceTree = BUILT_PRODUCTS_DIR; 940 | }; 941 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 942 | isa = PBXReferenceProxy; 943 | fileType = archive.ar; 944 | path = libfishhook.a; 945 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 946 | sourceTree = BUILT_PRODUCTS_DIR; 947 | }; 948 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 949 | isa = PBXReferenceProxy; 950 | fileType = archive.ar; 951 | path = "libfishhook-tvOS.a"; 952 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 953 | sourceTree = BUILT_PRODUCTS_DIR; 954 | }; 955 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 956 | isa = PBXReferenceProxy; 957 | fileType = archive.ar; 958 | path = "libRCTImage-tvOS.a"; 959 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 960 | sourceTree = BUILT_PRODUCTS_DIR; 961 | }; 962 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 963 | isa = PBXReferenceProxy; 964 | fileType = archive.ar; 965 | path = "libRCTLinking-tvOS.a"; 966 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 967 | sourceTree = BUILT_PRODUCTS_DIR; 968 | }; 969 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 970 | isa = PBXReferenceProxy; 971 | fileType = archive.ar; 972 | path = "libRCTNetwork-tvOS.a"; 973 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 974 | sourceTree = BUILT_PRODUCTS_DIR; 975 | }; 976 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 977 | isa = PBXReferenceProxy; 978 | fileType = archive.ar; 979 | path = "libRCTSettings-tvOS.a"; 980 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 981 | sourceTree = BUILT_PRODUCTS_DIR; 982 | }; 983 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 984 | isa = PBXReferenceProxy; 985 | fileType = archive.ar; 986 | path = "libRCTText-tvOS.a"; 987 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 988 | sourceTree = BUILT_PRODUCTS_DIR; 989 | }; 990 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 991 | isa = PBXReferenceProxy; 992 | fileType = archive.ar; 993 | path = "libRCTWebSocket-tvOS.a"; 994 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 995 | sourceTree = BUILT_PRODUCTS_DIR; 996 | }; 997 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 998 | isa = PBXReferenceProxy; 999 | fileType = archive.ar; 1000 | path = libReact.a; 1001 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 1002 | sourceTree = BUILT_PRODUCTS_DIR; 1003 | }; 1004 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 1005 | isa = PBXReferenceProxy; 1006 | fileType = archive.ar; 1007 | path = libyoga.a; 1008 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 1009 | sourceTree = BUILT_PRODUCTS_DIR; 1010 | }; 1011 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 1012 | isa = PBXReferenceProxy; 1013 | fileType = archive.ar; 1014 | path = libyoga.a; 1015 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1016 | sourceTree = BUILT_PRODUCTS_DIR; 1017 | }; 1018 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1019 | isa = PBXReferenceProxy; 1020 | fileType = archive.ar; 1021 | path = libcxxreact.a; 1022 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1023 | sourceTree = BUILT_PRODUCTS_DIR; 1024 | }; 1025 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1026 | isa = PBXReferenceProxy; 1027 | fileType = archive.ar; 1028 | path = libcxxreact.a; 1029 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1030 | sourceTree = BUILT_PRODUCTS_DIR; 1031 | }; 1032 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1033 | isa = PBXReferenceProxy; 1034 | fileType = archive.ar; 1035 | path = libjschelpers.a; 1036 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1037 | sourceTree = BUILT_PRODUCTS_DIR; 1038 | }; 1039 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1040 | isa = PBXReferenceProxy; 1041 | fileType = archive.ar; 1042 | path = libjschelpers.a; 1043 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1044 | sourceTree = BUILT_PRODUCTS_DIR; 1045 | }; 1046 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1047 | isa = PBXReferenceProxy; 1048 | fileType = archive.ar; 1049 | path = libRCTAnimation.a; 1050 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1051 | sourceTree = BUILT_PRODUCTS_DIR; 1052 | }; 1053 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1054 | isa = PBXReferenceProxy; 1055 | fileType = archive.ar; 1056 | path = libRCTAnimation.a; 1057 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1058 | sourceTree = BUILT_PRODUCTS_DIR; 1059 | }; 1060 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1061 | isa = PBXReferenceProxy; 1062 | fileType = archive.ar; 1063 | path = libRCTLinking.a; 1064 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1065 | sourceTree = BUILT_PRODUCTS_DIR; 1066 | }; 1067 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1068 | isa = PBXReferenceProxy; 1069 | fileType = archive.ar; 1070 | path = libRCTText.a; 1071 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1072 | sourceTree = BUILT_PRODUCTS_DIR; 1073 | }; 1074 | 898708C72071C2CD0036A3FF /* libjsinspector.a */ = { 1075 | isa = PBXReferenceProxy; 1076 | fileType = archive.ar; 1077 | path = libjsinspector.a; 1078 | remoteRef = 898708C62071C2CD0036A3FF /* PBXContainerItemProxy */; 1079 | sourceTree = BUILT_PRODUCTS_DIR; 1080 | }; 1081 | 898708C92071C2CD0036A3FF /* libjsinspector-tvOS.a */ = { 1082 | isa = PBXReferenceProxy; 1083 | fileType = archive.ar; 1084 | path = "libjsinspector-tvOS.a"; 1085 | remoteRef = 898708C82071C2CD0036A3FF /* PBXContainerItemProxy */; 1086 | sourceTree = BUILT_PRODUCTS_DIR; 1087 | }; 1088 | 898708CB2071C2CD0036A3FF /* libthird-party.a */ = { 1089 | isa = PBXReferenceProxy; 1090 | fileType = archive.ar; 1091 | path = "libthird-party.a"; 1092 | remoteRef = 898708CA2071C2CD0036A3FF /* PBXContainerItemProxy */; 1093 | sourceTree = BUILT_PRODUCTS_DIR; 1094 | }; 1095 | 898708CD2071C2CD0036A3FF /* libthird-party.a */ = { 1096 | isa = PBXReferenceProxy; 1097 | fileType = archive.ar; 1098 | path = "libthird-party.a"; 1099 | remoteRef = 898708CC2071C2CD0036A3FF /* PBXContainerItemProxy */; 1100 | sourceTree = BUILT_PRODUCTS_DIR; 1101 | }; 1102 | 898708CF2071C2CD0036A3FF /* libdouble-conversion.a */ = { 1103 | isa = PBXReferenceProxy; 1104 | fileType = archive.ar; 1105 | path = "libdouble-conversion.a"; 1106 | remoteRef = 898708CE2071C2CD0036A3FF /* PBXContainerItemProxy */; 1107 | sourceTree = BUILT_PRODUCTS_DIR; 1108 | }; 1109 | 898708D12071C2CD0036A3FF /* libdouble-conversion.a */ = { 1110 | isa = PBXReferenceProxy; 1111 | fileType = archive.ar; 1112 | path = "libdouble-conversion.a"; 1113 | remoteRef = 898708D02071C2CD0036A3FF /* PBXContainerItemProxy */; 1114 | sourceTree = BUILT_PRODUCTS_DIR; 1115 | }; 1116 | 898708D32071C2CD0036A3FF /* libprivatedata.a */ = { 1117 | isa = PBXReferenceProxy; 1118 | fileType = archive.ar; 1119 | path = libprivatedata.a; 1120 | remoteRef = 898708D22071C2CD0036A3FF /* PBXContainerItemProxy */; 1121 | sourceTree = BUILT_PRODUCTS_DIR; 1122 | }; 1123 | 898708D52071C2CD0036A3FF /* libprivatedata-tvOS.a */ = { 1124 | isa = PBXReferenceProxy; 1125 | fileType = archive.ar; 1126 | path = "libprivatedata-tvOS.a"; 1127 | remoteRef = 898708D42071C2CD0036A3FF /* PBXContainerItemProxy */; 1128 | sourceTree = BUILT_PRODUCTS_DIR; 1129 | }; 1130 | 898708DC2071C2CE0036A3FF /* libRCTYouTube.a */ = { 1131 | isa = PBXReferenceProxy; 1132 | fileType = archive.ar; 1133 | path = libRCTYouTube.a; 1134 | remoteRef = 898708DB2071C2CE0036A3FF /* PBXContainerItemProxy */; 1135 | sourceTree = BUILT_PRODUCTS_DIR; 1136 | }; 1137 | 898708DF2071C2CE0036A3FF /* libRNVectorIcons.a */ = { 1138 | isa = PBXReferenceProxy; 1139 | fileType = archive.ar; 1140 | path = libRNVectorIcons.a; 1141 | remoteRef = 898708DE2071C2CE0036A3FF /* PBXContainerItemProxy */; 1142 | sourceTree = BUILT_PRODUCTS_DIR; 1143 | }; 1144 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1145 | isa = PBXReferenceProxy; 1146 | fileType = archive.ar; 1147 | path = libRCTBlob.a; 1148 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1149 | sourceTree = BUILT_PRODUCTS_DIR; 1150 | }; 1151 | /* End PBXReferenceProxy section */ 1152 | 1153 | /* Begin PBXResourcesBuildPhase section */ 1154 | 00E356EC1AD99517003FC87E /* Resources */ = { 1155 | isa = PBXResourcesBuildPhase; 1156 | buildActionMask = 2147483647; 1157 | files = ( 1158 | ); 1159 | runOnlyForDeploymentPostprocessing = 0; 1160 | }; 1161 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1162 | isa = PBXResourcesBuildPhase; 1163 | buildActionMask = 2147483647; 1164 | files = ( 1165 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1166 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1167 | C67457F9545F4647AABB2D76 /* Entypo.ttf in Resources */, 1168 | 1121EB6ABBA44F24BB5FFFB0 /* EvilIcons.ttf in Resources */, 1169 | 45D5189697CA4D84858FF3DC /* Feather.ttf in Resources */, 1170 | C9127A62535C476286D8114E /* FontAwesome.ttf in Resources */, 1171 | C41241C1CD8A48B8BDE4B483 /* Foundation.ttf in Resources */, 1172 | C10268A22BAB41F292019935 /* Ionicons.ttf in Resources */, 1173 | 846CF8658B8A4FE98F04FF4C /* MaterialCommunityIcons.ttf in Resources */, 1174 | C1876A25B0FC4025A02D3990 /* MaterialIcons.ttf in Resources */, 1175 | 4A4E687A51864D41A736FE45 /* Octicons.ttf in Resources */, 1176 | 5D3F5FE75043469A840CB0D2 /* SimpleLineIcons.ttf in Resources */, 1177 | 898708E12071C35F0036A3FF /* YTPlayerView-iframe-player.html in Resources */, 1178 | A52A96F938B74EB4B42F471E /* Zocial.ttf in Resources */, 1179 | ); 1180 | runOnlyForDeploymentPostprocessing = 0; 1181 | }; 1182 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1183 | isa = PBXResourcesBuildPhase; 1184 | buildActionMask = 2147483647; 1185 | files = ( 1186 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1187 | ); 1188 | runOnlyForDeploymentPostprocessing = 0; 1189 | }; 1190 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1191 | isa = PBXResourcesBuildPhase; 1192 | buildActionMask = 2147483647; 1193 | files = ( 1194 | ); 1195 | runOnlyForDeploymentPostprocessing = 0; 1196 | }; 1197 | /* End PBXResourcesBuildPhase section */ 1198 | 1199 | /* Begin PBXShellScriptBuildPhase section */ 1200 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1201 | isa = PBXShellScriptBuildPhase; 1202 | buildActionMask = 2147483647; 1203 | files = ( 1204 | ); 1205 | inputPaths = ( 1206 | ); 1207 | name = "Bundle React Native code and images"; 1208 | outputPaths = ( 1209 | ); 1210 | runOnlyForDeploymentPostprocessing = 0; 1211 | shellPath = /bin/sh; 1212 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1213 | }; 1214 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1215 | isa = PBXShellScriptBuildPhase; 1216 | buildActionMask = 2147483647; 1217 | files = ( 1218 | ); 1219 | inputPaths = ( 1220 | ); 1221 | name = "Bundle React Native Code And Images"; 1222 | outputPaths = ( 1223 | ); 1224 | runOnlyForDeploymentPostprocessing = 0; 1225 | shellPath = /bin/sh; 1226 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1227 | }; 1228 | /* End PBXShellScriptBuildPhase section */ 1229 | 1230 | /* Begin PBXSourcesBuildPhase section */ 1231 | 00E356EA1AD99517003FC87E /* Sources */ = { 1232 | isa = PBXSourcesBuildPhase; 1233 | buildActionMask = 2147483647; 1234 | files = ( 1235 | 00E356F31AD99517003FC87E /* gotTests.m in Sources */, 1236 | ); 1237 | runOnlyForDeploymentPostprocessing = 0; 1238 | }; 1239 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1240 | isa = PBXSourcesBuildPhase; 1241 | buildActionMask = 2147483647; 1242 | files = ( 1243 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1244 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1245 | ); 1246 | runOnlyForDeploymentPostprocessing = 0; 1247 | }; 1248 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1249 | isa = PBXSourcesBuildPhase; 1250 | buildActionMask = 2147483647; 1251 | files = ( 1252 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1253 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1254 | ); 1255 | runOnlyForDeploymentPostprocessing = 0; 1256 | }; 1257 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1258 | isa = PBXSourcesBuildPhase; 1259 | buildActionMask = 2147483647; 1260 | files = ( 1261 | 2DCD954D1E0B4F2C00145EB5 /* gotTests.m in Sources */, 1262 | ); 1263 | runOnlyForDeploymentPostprocessing = 0; 1264 | }; 1265 | /* End PBXSourcesBuildPhase section */ 1266 | 1267 | /* Begin PBXTargetDependency section */ 1268 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1269 | isa = PBXTargetDependency; 1270 | target = 13B07F861A680F5B00A75B9A /* got */; 1271 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1272 | }; 1273 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1274 | isa = PBXTargetDependency; 1275 | target = 2D02E47A1E0B4A5D006451C7 /* got-tvOS */; 1276 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1277 | }; 1278 | /* End PBXTargetDependency section */ 1279 | 1280 | /* Begin PBXVariantGroup section */ 1281 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1282 | isa = PBXVariantGroup; 1283 | children = ( 1284 | 13B07FB21A68108700A75B9A /* Base */, 1285 | ); 1286 | name = LaunchScreen.xib; 1287 | path = got; 1288 | sourceTree = ""; 1289 | }; 1290 | /* End PBXVariantGroup section */ 1291 | 1292 | /* Begin XCBuildConfiguration section */ 1293 | 00E356F61AD99517003FC87E /* Debug */ = { 1294 | isa = XCBuildConfiguration; 1295 | buildSettings = { 1296 | BUNDLE_LOADER = "$(TEST_HOST)"; 1297 | GCC_PREPROCESSOR_DEFINITIONS = ( 1298 | "DEBUG=1", 1299 | "$(inherited)", 1300 | ); 1301 | HEADER_SEARCH_PATHS = ( 1302 | "$(inherited)", 1303 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1304 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1305 | ); 1306 | INFOPLIST_FILE = gotTests/Info.plist; 1307 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1308 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1309 | LIBRARY_SEARCH_PATHS = ( 1310 | "$(inherited)", 1311 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1312 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1313 | ); 1314 | OTHER_LDFLAGS = ( 1315 | "-ObjC", 1316 | "-lc++", 1317 | ); 1318 | PRODUCT_NAME = "$(TARGET_NAME)"; 1319 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/got.app/got"; 1320 | }; 1321 | name = Debug; 1322 | }; 1323 | 00E356F71AD99517003FC87E /* Release */ = { 1324 | isa = XCBuildConfiguration; 1325 | buildSettings = { 1326 | BUNDLE_LOADER = "$(TEST_HOST)"; 1327 | COPY_PHASE_STRIP = NO; 1328 | HEADER_SEARCH_PATHS = ( 1329 | "$(inherited)", 1330 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1331 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1332 | ); 1333 | INFOPLIST_FILE = gotTests/Info.plist; 1334 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1335 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1336 | LIBRARY_SEARCH_PATHS = ( 1337 | "$(inherited)", 1338 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1339 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1340 | ); 1341 | OTHER_LDFLAGS = ( 1342 | "-ObjC", 1343 | "-lc++", 1344 | ); 1345 | PRODUCT_NAME = "$(TARGET_NAME)"; 1346 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/got.app/got"; 1347 | }; 1348 | name = Release; 1349 | }; 1350 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1351 | isa = XCBuildConfiguration; 1352 | buildSettings = { 1353 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1354 | CURRENT_PROJECT_VERSION = 1; 1355 | DEAD_CODE_STRIPPING = NO; 1356 | HEADER_SEARCH_PATHS = ( 1357 | "$(inherited)", 1358 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1359 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1360 | ); 1361 | INFOPLIST_FILE = got/Info.plist; 1362 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1363 | OTHER_LDFLAGS = ( 1364 | "$(inherited)", 1365 | "-ObjC", 1366 | "-lc++", 1367 | ); 1368 | PRODUCT_NAME = got; 1369 | VERSIONING_SYSTEM = "apple-generic"; 1370 | }; 1371 | name = Debug; 1372 | }; 1373 | 13B07F951A680F5B00A75B9A /* Release */ = { 1374 | isa = XCBuildConfiguration; 1375 | buildSettings = { 1376 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1377 | CURRENT_PROJECT_VERSION = 1; 1378 | HEADER_SEARCH_PATHS = ( 1379 | "$(inherited)", 1380 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1381 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1382 | ); 1383 | INFOPLIST_FILE = got/Info.plist; 1384 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1385 | OTHER_LDFLAGS = ( 1386 | "$(inherited)", 1387 | "-ObjC", 1388 | "-lc++", 1389 | ); 1390 | PRODUCT_NAME = got; 1391 | VERSIONING_SYSTEM = "apple-generic"; 1392 | }; 1393 | name = Release; 1394 | }; 1395 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1396 | isa = XCBuildConfiguration; 1397 | buildSettings = { 1398 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1399 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1400 | CLANG_ANALYZER_NONNULL = YES; 1401 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1402 | CLANG_WARN_INFINITE_RECURSION = YES; 1403 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1404 | DEBUG_INFORMATION_FORMAT = dwarf; 1405 | ENABLE_TESTABILITY = YES; 1406 | GCC_NO_COMMON_BLOCKS = YES; 1407 | HEADER_SEARCH_PATHS = ( 1408 | "$(inherited)", 1409 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1410 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1411 | ); 1412 | INFOPLIST_FILE = "got-tvOS/Info.plist"; 1413 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1414 | LIBRARY_SEARCH_PATHS = ( 1415 | "$(inherited)", 1416 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1417 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1418 | ); 1419 | OTHER_LDFLAGS = ( 1420 | "-ObjC", 1421 | "-lc++", 1422 | ); 1423 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.got-tvOS"; 1424 | PRODUCT_NAME = "$(TARGET_NAME)"; 1425 | SDKROOT = appletvos; 1426 | TARGETED_DEVICE_FAMILY = 3; 1427 | TVOS_DEPLOYMENT_TARGET = 9.2; 1428 | }; 1429 | name = Debug; 1430 | }; 1431 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1432 | isa = XCBuildConfiguration; 1433 | buildSettings = { 1434 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1435 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1436 | CLANG_ANALYZER_NONNULL = YES; 1437 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1438 | CLANG_WARN_INFINITE_RECURSION = YES; 1439 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1440 | COPY_PHASE_STRIP = NO; 1441 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1442 | GCC_NO_COMMON_BLOCKS = YES; 1443 | HEADER_SEARCH_PATHS = ( 1444 | "$(inherited)", 1445 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1446 | "$(SRCROOT)/../node_modules/react-native-youtube/**", 1447 | ); 1448 | INFOPLIST_FILE = "got-tvOS/Info.plist"; 1449 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1450 | LIBRARY_SEARCH_PATHS = ( 1451 | "$(inherited)", 1452 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1453 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1454 | ); 1455 | OTHER_LDFLAGS = ( 1456 | "-ObjC", 1457 | "-lc++", 1458 | ); 1459 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.got-tvOS"; 1460 | PRODUCT_NAME = "$(TARGET_NAME)"; 1461 | SDKROOT = appletvos; 1462 | TARGETED_DEVICE_FAMILY = 3; 1463 | TVOS_DEPLOYMENT_TARGET = 9.2; 1464 | }; 1465 | name = Release; 1466 | }; 1467 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1468 | isa = XCBuildConfiguration; 1469 | buildSettings = { 1470 | BUNDLE_LOADER = "$(TEST_HOST)"; 1471 | CLANG_ANALYZER_NONNULL = YES; 1472 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1473 | CLANG_WARN_INFINITE_RECURSION = YES; 1474 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1475 | DEBUG_INFORMATION_FORMAT = dwarf; 1476 | ENABLE_TESTABILITY = YES; 1477 | GCC_NO_COMMON_BLOCKS = YES; 1478 | INFOPLIST_FILE = "got-tvOSTests/Info.plist"; 1479 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1480 | LIBRARY_SEARCH_PATHS = ( 1481 | "$(inherited)", 1482 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1483 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1484 | ); 1485 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.got-tvOSTests"; 1486 | PRODUCT_NAME = "$(TARGET_NAME)"; 1487 | SDKROOT = appletvos; 1488 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/got-tvOS.app/got-tvOS"; 1489 | TVOS_DEPLOYMENT_TARGET = 10.1; 1490 | }; 1491 | name = Debug; 1492 | }; 1493 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1494 | isa = XCBuildConfiguration; 1495 | buildSettings = { 1496 | BUNDLE_LOADER = "$(TEST_HOST)"; 1497 | CLANG_ANALYZER_NONNULL = YES; 1498 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1499 | CLANG_WARN_INFINITE_RECURSION = YES; 1500 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1501 | COPY_PHASE_STRIP = NO; 1502 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1503 | GCC_NO_COMMON_BLOCKS = YES; 1504 | INFOPLIST_FILE = "got-tvOSTests/Info.plist"; 1505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1506 | LIBRARY_SEARCH_PATHS = ( 1507 | "$(inherited)", 1508 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1509 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1510 | ); 1511 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.got-tvOSTests"; 1512 | PRODUCT_NAME = "$(TARGET_NAME)"; 1513 | SDKROOT = appletvos; 1514 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/got-tvOS.app/got-tvOS"; 1515 | TVOS_DEPLOYMENT_TARGET = 10.1; 1516 | }; 1517 | name = Release; 1518 | }; 1519 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1520 | isa = XCBuildConfiguration; 1521 | buildSettings = { 1522 | ALWAYS_SEARCH_USER_PATHS = NO; 1523 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1524 | CLANG_CXX_LIBRARY = "libc++"; 1525 | CLANG_ENABLE_MODULES = YES; 1526 | CLANG_ENABLE_OBJC_ARC = YES; 1527 | CLANG_WARN_BOOL_CONVERSION = YES; 1528 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1529 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1530 | CLANG_WARN_EMPTY_BODY = YES; 1531 | CLANG_WARN_ENUM_CONVERSION = YES; 1532 | CLANG_WARN_INT_CONVERSION = YES; 1533 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1534 | CLANG_WARN_UNREACHABLE_CODE = YES; 1535 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1536 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1537 | COPY_PHASE_STRIP = NO; 1538 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1539 | GCC_C_LANGUAGE_STANDARD = gnu99; 1540 | GCC_DYNAMIC_NO_PIC = NO; 1541 | GCC_OPTIMIZATION_LEVEL = 0; 1542 | GCC_PREPROCESSOR_DEFINITIONS = ( 1543 | "DEBUG=1", 1544 | "$(inherited)", 1545 | ); 1546 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1547 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1548 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1549 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1550 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1551 | GCC_WARN_UNUSED_FUNCTION = YES; 1552 | GCC_WARN_UNUSED_VARIABLE = YES; 1553 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1554 | MTL_ENABLE_DEBUG_INFO = YES; 1555 | ONLY_ACTIVE_ARCH = YES; 1556 | SDKROOT = iphoneos; 1557 | }; 1558 | name = Debug; 1559 | }; 1560 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1561 | isa = XCBuildConfiguration; 1562 | buildSettings = { 1563 | ALWAYS_SEARCH_USER_PATHS = NO; 1564 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1565 | CLANG_CXX_LIBRARY = "libc++"; 1566 | CLANG_ENABLE_MODULES = YES; 1567 | CLANG_ENABLE_OBJC_ARC = YES; 1568 | CLANG_WARN_BOOL_CONVERSION = YES; 1569 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1570 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1571 | CLANG_WARN_EMPTY_BODY = YES; 1572 | CLANG_WARN_ENUM_CONVERSION = YES; 1573 | CLANG_WARN_INT_CONVERSION = YES; 1574 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1575 | CLANG_WARN_UNREACHABLE_CODE = YES; 1576 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1577 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1578 | COPY_PHASE_STRIP = YES; 1579 | ENABLE_NS_ASSERTIONS = NO; 1580 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1581 | GCC_C_LANGUAGE_STANDARD = gnu99; 1582 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1583 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1584 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1585 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1586 | GCC_WARN_UNUSED_FUNCTION = YES; 1587 | GCC_WARN_UNUSED_VARIABLE = YES; 1588 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1589 | MTL_ENABLE_DEBUG_INFO = NO; 1590 | SDKROOT = iphoneos; 1591 | VALIDATE_PRODUCT = YES; 1592 | }; 1593 | name = Release; 1594 | }; 1595 | /* End XCBuildConfiguration section */ 1596 | 1597 | /* Begin XCConfigurationList section */ 1598 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "gotTests" */ = { 1599 | isa = XCConfigurationList; 1600 | buildConfigurations = ( 1601 | 00E356F61AD99517003FC87E /* Debug */, 1602 | 00E356F71AD99517003FC87E /* Release */, 1603 | ); 1604 | defaultConfigurationIsVisible = 0; 1605 | defaultConfigurationName = Release; 1606 | }; 1607 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "got" */ = { 1608 | isa = XCConfigurationList; 1609 | buildConfigurations = ( 1610 | 13B07F941A680F5B00A75B9A /* Debug */, 1611 | 13B07F951A680F5B00A75B9A /* Release */, 1612 | ); 1613 | defaultConfigurationIsVisible = 0; 1614 | defaultConfigurationName = Release; 1615 | }; 1616 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "got-tvOS" */ = { 1617 | isa = XCConfigurationList; 1618 | buildConfigurations = ( 1619 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1620 | 2D02E4981E0B4A5E006451C7 /* Release */, 1621 | ); 1622 | defaultConfigurationIsVisible = 0; 1623 | defaultConfigurationName = Release; 1624 | }; 1625 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "got-tvOSTests" */ = { 1626 | isa = XCConfigurationList; 1627 | buildConfigurations = ( 1628 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1629 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1630 | ); 1631 | defaultConfigurationIsVisible = 0; 1632 | defaultConfigurationName = Release; 1633 | }; 1634 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "got" */ = { 1635 | isa = XCConfigurationList; 1636 | buildConfigurations = ( 1637 | 83CBBA201A601CBA00E9B192 /* Debug */, 1638 | 83CBBA211A601CBA00E9B192 /* Release */, 1639 | ); 1640 | defaultConfigurationIsVisible = 0; 1641 | defaultConfigurationName = Release; 1642 | }; 1643 | /* End XCConfigurationList section */ 1644 | }; 1645 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1646 | } 1647 | --------------------------------------------------------------------------------