├── mobile
├── .watchmanconfig
├── .gitattributes
├── app.json
├── images
│ └── Entria.png
├── 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
│ │ │ │ │ ├── Feather.ttf
│ │ │ │ │ ├── Ionicons.ttf
│ │ │ │ │ ├── Octicons.ttf
│ │ │ │ │ ├── EvilIcons.ttf
│ │ │ │ │ ├── FontAwesome.ttf
│ │ │ │ │ ├── Foundation.ttf
│ │ │ │ │ ├── MaterialIcons.ttf
│ │ │ │ │ ├── SimpleLineIcons.ttf
│ │ │ │ │ └── MaterialCommunityIcons.ttf
│ │ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── mobile
│ │ │ │ │ ├── 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
│ ├── mobile
│ │ ├── Images.xcassets
│ │ │ ├── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ └── Contents.json
│ │ ├── AppDelegate.h
│ │ ├── main.m
│ │ ├── AppDelegate.m
│ │ ├── Info.plist
│ │ └── Base.lproj
│ │ │ └── LaunchScreen.xib
│ ├── mobileTests
│ │ ├── Info.plist
│ │ └── mobileTests.m
│ ├── mobile-tvOSTests
│ │ └── Info.plist
│ ├── mobile-tvOS
│ │ └── Info.plist
│ └── mobile.xcodeproj
│ │ ├── xcshareddata
│ │ └── xcschemes
│ │ │ ├── mobile.xcscheme
│ │ │ └── mobile-tvOS.xcscheme
│ │ └── project.pbxproj
├── .buckconfig
├── index.js
├── .babelrc
├── __tests__
│ └── App.js
├── src
│ ├── App.js
│ ├── Environment.js
│ ├── mutations
│ │ ├── CreateTodoMutation.js
│ │ ├── UpdateTodoMutation.js
│ │ └── __generated__
│ │ │ ├── CreateTodoMutation.graphql.js
│ │ │ └── UpdateTodoMutation.graphql.js
│ └── components
│ │ ├── __generated__
│ │ ├── Todo_todo.graphql.js
│ │ ├── TodoAddViewerQuery.graphql.js
│ │ ├── TodoList_viewer.graphql.js
│ │ └── TodoListLoadingAllTodoQuery.graphql.js
│ │ ├── Todo.js
│ │ ├── Splash.js
│ │ ├── TodoAdd.js
│ │ └── TodoList.js
├── .gitignore
├── package.json
├── .flowconfig
└── data
│ └── schema.graphql
├── README.md
├── design
├── layout.png
└── interface.xd
├── server
├── .graphcoolrc
├── package.json
├── types.graphql
└── graphcool.yml
└── .gitignore
/mobile/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/mobile/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/mobile/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "mobile",
3 | "displayName": "mobile"
4 | }
--------------------------------------------------------------------------------
/design/layout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/design/layout.png
--------------------------------------------------------------------------------
/design/interface.xd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/design/interface.xd
--------------------------------------------------------------------------------
/mobile/images/Entria.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/images/Entria.png
--------------------------------------------------------------------------------
/server/.graphcoolrc:
--------------------------------------------------------------------------------
1 | targets:
2 | prod: shared-eu-west-1/cjdhywzgk0s5t0129y4jpjkga
3 | default: prod
4 |
--------------------------------------------------------------------------------
/server/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "entria-todo",
3 | "version": "1.0.0",
4 | "description": "My Graphcool Service"
5 | }
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | mobile
3 |
4 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/mobile/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/mobile/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Entypo.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Entypo.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Zocial.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Zocial.ttf
--------------------------------------------------------------------------------
/mobile/index.js:
--------------------------------------------------------------------------------
1 | import { AppRegistry } from 'react-native';
2 | import App from './src/App';
3 |
4 | AppRegistry.registerComponent('mobile', () => App);
5 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Feather.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Feather.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Ionicons.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Octicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Octicons.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/EvilIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/EvilIcons.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/FontAwesome.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/FontAwesome.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/Foundation.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/Foundation.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/MaterialIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/MaterialIcons.ttf
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/SimpleLineIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/SimpleLineIcons.ttf
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/mobile/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/thicodes/entria-todo/HEAD/mobile/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf
--------------------------------------------------------------------------------
/server/types.graphql:
--------------------------------------------------------------------------------
1 | type Todo @model {
2 | id: ID! @isUnique
3 | createdAt: DateTime!
4 | updatedAt: DateTime!
5 | task: String!
6 | isCompleted: Boolean! @defaultValue(value: "false")
7 | }
--------------------------------------------------------------------------------
/mobile/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/mobile/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | "react-native",
4 | "react-native-stage-0/decorator-support"
5 | ],
6 | "plugins": [
7 | ["relay", {"schema": "data/schema.graphql"}]
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/__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 |
--------------------------------------------------------------------------------
/mobile/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'mobile'
2 | include ':react-native-linear-gradient'
3 | project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/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 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/java/com/mobile/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.mobile;
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 "mobile";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/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 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/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 |
--------------------------------------------------------------------------------
/mobile/src/App.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Sample React Native App
3 | * https://github.com/facebook/react-native
4 | * @flow
5 | */
6 |
7 | import React, { Component } from 'react';
8 | import { StackNavigator } from 'react-navigation'
9 | import Splash from './components/Splash'
10 | import TodoAdd from './components/TodoAdd'
11 | import TodoList from './components/TodoList'
12 |
13 | const App = StackNavigator(
14 | {
15 | Splash: { screen: Splash },
16 | TodoList: { screen: TodoList },
17 | TodoAdd: { screen: TodoAdd },
18 | },
19 | {
20 | initialRouteName: 'Splash',
21 | mode: 'modal'
22 | }
23 | )
24 |
25 | export default () =>
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/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 | }
--------------------------------------------------------------------------------
/mobile/src/Environment.js:
--------------------------------------------------------------------------------
1 |
2 | import {
3 | Environment,
4 | Network,
5 | RecordSource,
6 | Store,
7 | } from 'relay-runtime'
8 |
9 | const network = Network.create((operation, variables) => {
10 | return fetch('https://api.graph.cool/relay/v1/cjdhywzgk0s5t0129y4jpjkga', {
11 | method: 'POST',
12 | headers: {
13 | 'Accept': 'application/json',
14 | 'Content-Type': 'application/json'
15 | },
16 | body: JSON.stringify({
17 | query: operation.text,
18 | variables,
19 | }),
20 | }).then(response => {
21 | return response.json()
22 | })
23 | })
24 |
25 | const store = new Store(new RecordSource())
26 |
27 | const environment = new Environment({
28 | network,
29 | store,
30 | })
31 |
32 | export default environment
--------------------------------------------------------------------------------
/mobile/ios/mobileTests/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 |
--------------------------------------------------------------------------------
/mobile/ios/mobile-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 |
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/src/mutations/CreateTodoMutation.js:
--------------------------------------------------------------------------------
1 | import {
2 | commitMutation,
3 | graphql,
4 | } from 'react-relay'
5 | import environment from '../Environment'
6 |
7 | const mutation = graphql`
8 | mutation CreateTodoMutation($input: CreateTodoInput!) {
9 | createTodo(input: $input) {
10 | todo {
11 | id
12 | task
13 | }
14 | }
15 | }
16 | `
17 |
18 | const commit = (task) => {
19 | const variables = {
20 | input: {
21 | task,
22 | clientMutationId: ""
23 | }
24 | };
25 | return new Promise((resolve, reject) => {
26 | commitMutation(environment, {
27 | mutation,
28 | variables,
29 | onCompleted: (response, error) => {
30 | console.log(response, environment)
31 | resolve(response)
32 | },
33 | onError: err => reject(err)
34 | })
35 | })
36 | }
37 |
38 | export default commit;
--------------------------------------------------------------------------------
/mobile/.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 |
--------------------------------------------------------------------------------
/mobile/src/mutations/UpdateTodoMutation.js:
--------------------------------------------------------------------------------
1 | import {
2 | commitMutation,
3 | graphql,
4 | } from 'react-relay'
5 | import environment from '../Environment'
6 |
7 | const mutation = graphql`
8 | mutation UpdateTodoMutation($input: UpdateTodoInput!) {
9 | updateTodo(input: $input) {
10 | todo {
11 | id
12 | isCompleted
13 | }
14 | }
15 | }
16 | `
17 |
18 | const commit = (todoId, isCheck) => {
19 | const variables = {
20 | input: {
21 | id: todoId,
22 | isCompleted: isCheck,
23 | clientMutationId: ""
24 | }
25 | };
26 | return new Promise((resolve, reject) => {
27 | commitMutation(environment, {
28 | mutation,
29 | variables,
30 | onCompleted: (response, error) => {
31 | console.log(response, environment)
32 | resolve(response)
33 | },
34 | onError: err => reject(err)
35 | })
36 | })
37 | }
38 |
39 | export default commit;
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 |
8 | # Runtime data
9 | pids
10 | *.pid
11 | *.seed
12 | *.pid.lock
13 |
14 | # Directory for instrumented libs generated by jscoverage/JSCover
15 | lib-cov
16 |
17 | # Coverage directory used by tools like istanbul
18 | coverage
19 |
20 | # nyc test coverage
21 | .nyc_output
22 |
23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24 | .grunt
25 |
26 | # Bower dependency directory (https://bower.io/)
27 | bower_components
28 |
29 | # node-waf configuration
30 | .lock-wscript
31 |
32 | # Compiled binary addons (http://nodejs.org/api/addons.html)
33 | build/Release
34 |
35 | # Dependency directories
36 | node_modules/
37 | jspm_packages/
38 |
39 | # Typescript v1 declaration files
40 | typings/
41 |
42 | # Optional npm cache directory
43 | .npm
44 |
45 | # Optional eslint cache
46 | .eslintcache
47 |
48 | # Optional REPL history
49 | .node_repl_history
50 |
51 | # Output of 'npm pack'
52 | *.tgz
53 |
54 | # Yarn Integrity file
55 | .yarn-integrity
56 |
57 | # dotenv environment variables file
58 | .env
59 |
60 |
--------------------------------------------------------------------------------
/mobile/src/components/__generated__/Todo_todo.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | */
4 |
5 | /* eslint-disable */
6 |
7 | 'use strict';
8 |
9 | /*::
10 | import type {ConcreteFragment} from 'relay-runtime';
11 | export type Todo_todo = {|
12 | +id: string;
13 | +task: string;
14 | +createdAt: any;
15 | +isCompleted: boolean;
16 | |};
17 | */
18 |
19 |
20 | const fragment /*: ConcreteFragment*/ = {
21 | "argumentDefinitions": [],
22 | "kind": "Fragment",
23 | "metadata": null,
24 | "name": "Todo_todo",
25 | "selections": [
26 | {
27 | "kind": "ScalarField",
28 | "alias": null,
29 | "args": null,
30 | "name": "id",
31 | "storageKey": null
32 | },
33 | {
34 | "kind": "ScalarField",
35 | "alias": null,
36 | "args": null,
37 | "name": "task",
38 | "storageKey": null
39 | },
40 | {
41 | "kind": "ScalarField",
42 | "alias": null,
43 | "args": null,
44 | "name": "createdAt",
45 | "storageKey": null
46 | },
47 | {
48 | "kind": "ScalarField",
49 | "alias": null,
50 | "args": null,
51 | "name": "isCompleted",
52 | "storageKey": null
53 | }
54 | ],
55 | "type": "Todo"
56 | };
57 |
58 | module.exports = fragment;
59 |
--------------------------------------------------------------------------------
/server/graphcool.yml:
--------------------------------------------------------------------------------
1 | # Welcome to Graphcool!
2 | #
3 | # This file is the main config file for your Graphcool Service.
4 | # It's very minimal at this point and uses default values.
5 | # We've included a hello world function here.
6 | # Just run `graphcool deploy` to have the first running Graphcool Service.
7 | #
8 | # Check out some examples:
9 | # https://github.com/graphcool/framework/tree/master/examples
10 | #
11 | # Here are the reference docs of this definition format:
12 | # https://www.graph.cool/docs/reference/service-definition/graphcool.yml-foatho8aip
13 | #
14 | # Happy Coding!
15 |
16 |
17 | # In the types.graphql you define your data schema
18 | types: ./types.graphql
19 |
20 | # Model/Relation permissions are used to limit the API access
21 | # To take the burden of thinking about those while development, we
22 | # preconfigured the wildcard ("*") permission that allows everything
23 | # Read more here:
24 | # https://www.graph.cool/docs/reference/auth/authorization/overview-iegoo0heez
25 | permissions:
26 | - operation: "*"
27 |
28 |
29 | # Your root tokens used for functions to get full access to the API
30 | # Read more here:
31 | # https://www.graph.cool/docs/reference/auth/authentication/authentication-tokens-eip7ahqu5o
32 | # rootTokens:
33 | # - mytoken
34 |
35 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
19 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/mobile/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "mobile",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "start": "node node_modules/react-native/local-cli/cli.js start",
7 | "relay": "relay-compiler --src ./src --schema data/schema.graphql",
8 | "relay:watch": "yarn relay -- --watch",
9 | "test": "jest"
10 | },
11 | "dependencies": {
12 | "babel-preset-react-native-stage-0": "^1.0.1",
13 | "hoist-non-react-statics": "^2.3.1",
14 | "moment": "^2.20.1",
15 | "react": "16.2.0",
16 | "react-native": "0.53.0",
17 | "react-native-action-button": "^2.8.4",
18 | "react-native-elements": "^0.19.0",
19 | "react-native-linear-gradient": "^2.4.0",
20 | "react-native-vector-icons": "^4.5.0",
21 | "react-navigation": "^1.0.3",
22 | "react-relay": "^1.4.1"
23 | },
24 | "devDependencies": {
25 | "babel-eslint": "^8.2.1",
26 | "babel-jest": "22.2.2",
27 | "babel-plugin-relay": "^1.4.1",
28 | "babel-preset-react-native": "4.0.0",
29 | "eslint": "^4.17.0",
30 | "eslint-plugin-import": "^2.8.0",
31 | "eslint-plugin-react-native": "^3.2.1",
32 | "jest": "22.2.2",
33 | "react-devtools": "^3.1.0",
34 | "react-test-renderer": "16.2.0",
35 | "relay-compiler": "^1.4.1"
36 | },
37 | "jest": {
38 | "preset": "react-native"
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/mobile/android/app/src/main/java/com/mobile/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.mobile;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.BV.LinearGradient.LinearGradientPackage;
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 LinearGradientPackage(),
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 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/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:@"mobile"
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 |
--------------------------------------------------------------------------------
/mobile/.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.63.0
55 |
--------------------------------------------------------------------------------
/mobile/src/components/Todo.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react'
2 | import {
3 | createFragmentContainer,
4 | graphql
5 | } from 'react-relay'
6 | import {
7 | Text,
8 | View,
9 | } from 'react-native'
10 | import { CheckBox } from 'react-native-elements'
11 | import moment from 'moment'
12 | import UpdateTodoMutation from '../mutations/UpdateTodoMutation'
13 |
14 | class Todo extends Component {
15 | state = {
16 | checked: false
17 | }
18 |
19 | componentDidMount() {
20 | this.setState({ checked: this.props.todo.isCompleted })
21 | }
22 |
23 | handleCheck = () => {
24 | this.setState({ checked: !this.state.checked }, () => {
25 | UpdateTodoMutation(this.props.todo.id, this.state.checked)
26 | })
27 | }
28 | render() {
29 | let {
30 | todo,
31 | createdAt
32 | } = this.props
33 |
34 | return (
35 |
41 | {todo.task}
42 | {moment(todo.createdAt, 'YYYYMMDD').fromNow()}
43 |
44 | }
45 | checked={this.state.checked}
46 | />
47 | )
48 | }
49 | }
50 |
51 | export default createFragmentContainer(Todo, graphql`
52 | fragment Todo_todo on Todo {
53 | id
54 | task
55 | createdAt
56 | isCompleted
57 | }
58 | `)
--------------------------------------------------------------------------------
/mobile/ios/mobile-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 |
--------------------------------------------------------------------------------
/mobile/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.mobile",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.mobile",
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 |
--------------------------------------------------------------------------------
/mobile/src/components/__generated__/TodoAddViewerQuery.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | * @relayHash 543b7e25ae4c7438e645cc7656753f7c
4 | */
5 |
6 | /* eslint-disable */
7 |
8 | 'use strict';
9 |
10 | /*::
11 | import type {ConcreteBatch} from 'relay-runtime';
12 | export type TodoAddViewerQueryResponse = {|
13 | +viewer: {|
14 | +id: string;
15 | |};
16 | |};
17 | */
18 |
19 |
20 | /*
21 | query TodoAddViewerQuery {
22 | viewer {
23 | id
24 | }
25 | }
26 | */
27 |
28 | const batch /*: ConcreteBatch*/ = {
29 | "fragment": {
30 | "argumentDefinitions": [],
31 | "kind": "Fragment",
32 | "metadata": null,
33 | "name": "TodoAddViewerQuery",
34 | "selections": [
35 | {
36 | "kind": "LinkedField",
37 | "alias": null,
38 | "args": null,
39 | "concreteType": "Viewer",
40 | "name": "viewer",
41 | "plural": false,
42 | "selections": [
43 | {
44 | "kind": "ScalarField",
45 | "alias": null,
46 | "args": null,
47 | "name": "id",
48 | "storageKey": null
49 | }
50 | ],
51 | "storageKey": null
52 | }
53 | ],
54 | "type": "Query"
55 | },
56 | "id": null,
57 | "kind": "Batch",
58 | "metadata": {},
59 | "name": "TodoAddViewerQuery",
60 | "query": {
61 | "argumentDefinitions": [],
62 | "kind": "Root",
63 | "name": "TodoAddViewerQuery",
64 | "operation": "query",
65 | "selections": [
66 | {
67 | "kind": "LinkedField",
68 | "alias": null,
69 | "args": null,
70 | "concreteType": "Viewer",
71 | "name": "viewer",
72 | "plural": false,
73 | "selections": [
74 | {
75 | "kind": "ScalarField",
76 | "alias": null,
77 | "args": null,
78 | "name": "id",
79 | "storageKey": null
80 | }
81 | ],
82 | "storageKey": null
83 | }
84 | ]
85 | },
86 | "text": "query TodoAddViewerQuery {\n viewer {\n id\n }\n}\n"
87 | };
88 |
89 | module.exports = batch;
90 |
--------------------------------------------------------------------------------
/mobile/ios/mobile/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | mobile
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 |
--------------------------------------------------------------------------------
/mobile/ios/mobileTests/mobileTests.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 mobileTests : XCTestCase
20 |
21 | @end
22 |
23 | @implementation mobileTests
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 |
--------------------------------------------------------------------------------
/mobile/src/components/Splash.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react'
2 | import {
3 | Animated,
4 | StyleSheet,
5 | Text,
6 | Image,
7 | View
8 | } from 'react-native'
9 | import LinearGradient from 'react-native-linear-gradient'
10 | import Dimensions from 'Dimensions';
11 | const {width, height} = Dimensions.get('window');
12 |
13 | class Splash extends Component {
14 | static navigationOptions = {
15 | header: null,
16 | }
17 |
18 | state = {
19 | scaleAnimated: new Animated.Value(2),
20 | }
21 |
22 | componentDidMount() {
23 | this.startViewAnimated()
24 | }
25 |
26 | startViewAnimated = value => {
27 | const { scaleAnimated } = this.state;
28 | Animated.sequence([
29 | Animated.timing(scaleAnimated, {
30 | duration: 2000,
31 | toValue: 0.1,
32 | }),
33 | Animated.timing(scaleAnimated, {
34 | duration: 500,
35 | toValue: 500,
36 | }),
37 | ]).start(() => {
38 |
39 | this.props.navigation.navigate('TodoList');
40 | });
41 | };
42 |
43 | render() {
44 | return (
45 |
46 |
50 |
51 |
55 |
56 |
57 |
58 | )
59 | }
60 | }
61 |
62 | const styles = StyleSheet.create({
63 | container: {
64 | flex: 1,
65 | },
66 | containerImage: {
67 | width: width,
68 | height: height,
69 | flexDirection:'row',
70 | alignItems:'center',
71 | justifyContent:'center'
72 | },
73 | linearGradient: {
74 | flex: 1
75 | },
76 | buttonText: {
77 | fontSize: 18,
78 | fontFamily: 'Gill Sans',
79 | textAlign: 'center',
80 | margin: 10,
81 | color: '#ffffff',
82 | backgroundColor: 'transparent',
83 | },
84 | })
85 |
86 | export default Splash
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/src/components/TodoAdd.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react'
2 | import {
3 | View,
4 | StyleSheet,
5 | Text,
6 | } from 'react-native'
7 | import {
8 | FormLabel,
9 | FormInput,
10 | FormValidationMessage,
11 | Button
12 | } from 'react-native-elements'
13 | import {
14 | QueryRenderer,
15 | graphql
16 | } from 'react-relay'
17 | import environment from '../Environment'
18 | import CreatePostMutation from '../mutations/CreateTodoMutation'
19 |
20 | const TodoAddViewerQuery = graphql`
21 | query TodoAddViewerQuery {
22 | viewer {
23 | id
24 | }
25 | }
26 | `
27 |
28 | class TodoAdd extends Component {
29 | static navigationOptions = {
30 | title: 'Todo Add',
31 | headerTintColor: '#fff',
32 | headerStyle: {
33 | backgroundColor: '#832655'
34 | }
35 | }
36 |
37 | state = {
38 | task: ''
39 | }
40 |
41 | handleSubmit = async(viewerId) => {
42 | const { task } = this.state
43 | await CreatePostMutation(task)
44 | this.props.navigation.navigate('TodoList')
45 | //CreatePostMutation(task, viewerId, () => this.props.navigation.navigate('TodoListLoading') )
46 | }
47 |
48 | render() {
49 | return (
50 | {
54 | if (error) {
55 | return {error.message}
56 | } else if (props) {
57 | return (
58 |
59 |
60 | this.setState({task})}
63 | />
64 |
65 |
66 |
67 |
75 | )
76 | }
77 | return Loading
78 | }}
79 | />
80 |
81 | )
82 | }
83 | }
84 |
85 | const styles = StyleSheet.create({
86 | container: {
87 | flex: 1,
88 | paddingTop: 25,
89 | backgroundColor: 'white'
90 | },
91 | formView: {
92 | paddingBottom: 22,
93 | }
94 | })
95 |
96 | export default TodoAdd
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/src/components/TodoList.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react'
2 | import {
3 | View,
4 | Text,
5 | ScrollView,
6 | StyleSheet,
7 | } from 'react-native'
8 | import {
9 | List,
10 | ListItem,
11 | Header
12 | } from 'react-native-elements'
13 | import ActionButton from 'react-native-action-button';
14 | import moment from 'moment'
15 | import hoistStatics from 'hoist-non-react-statics'
16 | import {
17 | createFragmentContainer,
18 | createPaginationContainer,
19 | graphql,
20 | QueryRenderer,
21 | } from 'react-relay';
22 | import { withNavigation } from 'react-navigation';
23 | import environment from '../Environment'
24 | import Todo from './Todo'
25 |
26 | @withNavigation
27 | class TodoList extends Component {
28 | static navigationOptions = {
29 | header: null
30 | }
31 |
32 | goToAdd = () => {
33 | this.props.navigation.navigate('TodoAdd')
34 | }
35 |
36 | render() {
37 | return (
38 |
39 |
40 | Todo List
41 | {moment().format("ddd MMM Do")}
42 |
43 |
44 |
45 | {this.props.viewer.allTodoes.edges.map(({node}) =>
46 |
47 | )}
48 |
49 |
50 |
51 |
52 | )
53 | }
54 | }
55 |
56 | const TodoListFragmentContainer = createFragmentContainer(
57 | TodoList,
58 | graphql`
59 | fragment TodoList_viewer on Viewer {
60 | allTodoes(last: 100, orderBy: createdAt_DESC) @ connection(key: "TodoList_allTodoes", filters: []) {
61 | edges {
62 | node {
63 | ...Todo_todo
64 | }
65 | }
66 | }
67 | }
68 | `
69 | )
70 |
71 | const TodoListQueryRenderer = () => {
72 | return(
73 | {
83 | if (error) {
84 | return {error.message}
85 | } else if (props) {
86 | return
87 | }
88 | return Loading
89 | }}
90 | />
91 | )
92 | }
93 |
94 | const styles = StyleSheet.create({
95 | container: {
96 | flex: 1,
97 | backgroundColor: '#e7ebee'
98 | },
99 | superHeader: {
100 | backgroundColor: '#832655',
101 | padding: 15,
102 | },
103 | titleH1: {
104 | fontSize: 58,
105 | color: '#fff'
106 | },
107 | titleH2: {
108 | fontSize: 25,
109 | color: '#fff'
110 | }
111 | })
112 |
113 |
114 | export default hoistStatics(TodoListQueryRenderer, TodoList);
--------------------------------------------------------------------------------
/mobile/ios/mobile/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 |
--------------------------------------------------------------------------------
/mobile/src/components/__generated__/TodoList_viewer.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | */
4 |
5 | /* eslint-disable */
6 |
7 | 'use strict';
8 |
9 | /*::
10 | import type {ConcreteFragment} from 'relay-runtime';
11 | export type TodoList_viewer = {|
12 | +allTodoes: {|
13 | +edges: ?$ReadOnlyArray{|
14 | +node: {| |};
15 | |}>;
16 | |};
17 | |};
18 | */
19 |
20 |
21 | const fragment /*: ConcreteFragment*/ = {
22 | "argumentDefinitions": [],
23 | "kind": "Fragment",
24 | "metadata": {
25 | "connection": [
26 | {
27 | "count": null,
28 | "cursor": null,
29 | "direction": "backward",
30 | "path": [
31 | "allTodoes"
32 | ]
33 | }
34 | ]
35 | },
36 | "name": "TodoList_viewer",
37 | "selections": [
38 | {
39 | "kind": "LinkedField",
40 | "alias": "allTodoes",
41 | "args": null,
42 | "concreteType": "TodoConnection",
43 | "name": "__TodoList_allTodoes_connection",
44 | "plural": false,
45 | "selections": [
46 | {
47 | "kind": "LinkedField",
48 | "alias": null,
49 | "args": null,
50 | "concreteType": "TodoEdge",
51 | "name": "edges",
52 | "plural": true,
53 | "selections": [
54 | {
55 | "kind": "LinkedField",
56 | "alias": null,
57 | "args": null,
58 | "concreteType": "Todo",
59 | "name": "node",
60 | "plural": false,
61 | "selections": [
62 | {
63 | "kind": "FragmentSpread",
64 | "name": "Todo_todo",
65 | "args": null
66 | }
67 | ],
68 | "storageKey": null
69 | }
70 | ],
71 | "storageKey": null
72 | },
73 | {
74 | "kind": "InlineFragment",
75 | "type": "TodoConnection",
76 | "selections": [
77 | {
78 | "kind": "LinkedField",
79 | "alias": null,
80 | "args": null,
81 | "concreteType": "TodoEdge",
82 | "name": "edges",
83 | "plural": true,
84 | "selections": [
85 | {
86 | "kind": "ScalarField",
87 | "alias": null,
88 | "args": null,
89 | "name": "cursor",
90 | "storageKey": null
91 | },
92 | {
93 | "kind": "LinkedField",
94 | "alias": null,
95 | "args": null,
96 | "concreteType": "Todo",
97 | "name": "node",
98 | "plural": false,
99 | "selections": [
100 | {
101 | "kind": "ScalarField",
102 | "alias": null,
103 | "args": null,
104 | "name": "__typename",
105 | "storageKey": null
106 | }
107 | ],
108 | "storageKey": null
109 | }
110 | ],
111 | "storageKey": null
112 | },
113 | {
114 | "kind": "LinkedField",
115 | "alias": null,
116 | "args": null,
117 | "concreteType": "PageInfo",
118 | "name": "pageInfo",
119 | "plural": false,
120 | "selections": [
121 | {
122 | "kind": "ScalarField",
123 | "alias": null,
124 | "args": null,
125 | "name": "hasPreviousPage",
126 | "storageKey": null
127 | },
128 | {
129 | "kind": "ScalarField",
130 | "alias": null,
131 | "args": null,
132 | "name": "startCursor",
133 | "storageKey": null
134 | }
135 | ],
136 | "storageKey": null
137 | }
138 | ]
139 | }
140 | ],
141 | "storageKey": null
142 | }
143 | ],
144 | "type": "Viewer"
145 | };
146 |
147 | module.exports = fragment;
148 |
--------------------------------------------------------------------------------
/mobile/src/mutations/__generated__/CreateTodoMutation.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | * @relayHash 02c2b29c47fdbb402b276a40317a48fa
4 | */
5 |
6 | /* eslint-disable */
7 |
8 | 'use strict';
9 |
10 | /*::
11 | import type {ConcreteBatch} from 'relay-runtime';
12 | export type CreateTodoMutationVariables = {|
13 | input: {
14 | isCompleted?: ?boolean;
15 | task: string;
16 | clientMutationId: string;
17 | };
18 | |};
19 | export type CreateTodoMutationResponse = {|
20 | +createTodo: ?{|
21 | +todo: ?{|
22 | +id: string;
23 | +task: string;
24 | |};
25 | |};
26 | |};
27 | */
28 |
29 |
30 | /*
31 | mutation CreateTodoMutation(
32 | $input: CreateTodoInput!
33 | ) {
34 | createTodo(input: $input) {
35 | todo {
36 | id
37 | task
38 | }
39 | }
40 | }
41 | */
42 |
43 | const batch /*: ConcreteBatch*/ = {
44 | "fragment": {
45 | "argumentDefinitions": [
46 | {
47 | "kind": "LocalArgument",
48 | "name": "input",
49 | "type": "CreateTodoInput!",
50 | "defaultValue": null
51 | }
52 | ],
53 | "kind": "Fragment",
54 | "metadata": null,
55 | "name": "CreateTodoMutation",
56 | "selections": [
57 | {
58 | "kind": "LinkedField",
59 | "alias": null,
60 | "args": [
61 | {
62 | "kind": "Variable",
63 | "name": "input",
64 | "variableName": "input",
65 | "type": "CreateTodoInput!"
66 | }
67 | ],
68 | "concreteType": "CreateTodoPayload",
69 | "name": "createTodo",
70 | "plural": false,
71 | "selections": [
72 | {
73 | "kind": "LinkedField",
74 | "alias": null,
75 | "args": null,
76 | "concreteType": "Todo",
77 | "name": "todo",
78 | "plural": false,
79 | "selections": [
80 | {
81 | "kind": "ScalarField",
82 | "alias": null,
83 | "args": null,
84 | "name": "id",
85 | "storageKey": null
86 | },
87 | {
88 | "kind": "ScalarField",
89 | "alias": null,
90 | "args": null,
91 | "name": "task",
92 | "storageKey": null
93 | }
94 | ],
95 | "storageKey": null
96 | }
97 | ],
98 | "storageKey": null
99 | }
100 | ],
101 | "type": "Mutation"
102 | },
103 | "id": null,
104 | "kind": "Batch",
105 | "metadata": {},
106 | "name": "CreateTodoMutation",
107 | "query": {
108 | "argumentDefinitions": [
109 | {
110 | "kind": "LocalArgument",
111 | "name": "input",
112 | "type": "CreateTodoInput!",
113 | "defaultValue": null
114 | }
115 | ],
116 | "kind": "Root",
117 | "name": "CreateTodoMutation",
118 | "operation": "mutation",
119 | "selections": [
120 | {
121 | "kind": "LinkedField",
122 | "alias": null,
123 | "args": [
124 | {
125 | "kind": "Variable",
126 | "name": "input",
127 | "variableName": "input",
128 | "type": "CreateTodoInput!"
129 | }
130 | ],
131 | "concreteType": "CreateTodoPayload",
132 | "name": "createTodo",
133 | "plural": false,
134 | "selections": [
135 | {
136 | "kind": "LinkedField",
137 | "alias": null,
138 | "args": null,
139 | "concreteType": "Todo",
140 | "name": "todo",
141 | "plural": false,
142 | "selections": [
143 | {
144 | "kind": "ScalarField",
145 | "alias": null,
146 | "args": null,
147 | "name": "id",
148 | "storageKey": null
149 | },
150 | {
151 | "kind": "ScalarField",
152 | "alias": null,
153 | "args": null,
154 | "name": "task",
155 | "storageKey": null
156 | }
157 | ],
158 | "storageKey": null
159 | }
160 | ],
161 | "storageKey": null
162 | }
163 | ]
164 | },
165 | "text": "mutation CreateTodoMutation(\n $input: CreateTodoInput!\n) {\n createTodo(input: $input) {\n todo {\n id\n task\n }\n }\n}\n"
166 | };
167 |
168 | module.exports = batch;
169 |
--------------------------------------------------------------------------------
/mobile/src/mutations/__generated__/UpdateTodoMutation.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | * @relayHash 6a432328789f16d4a2c5943518847b64
4 | */
5 |
6 | /* eslint-disable */
7 |
8 | 'use strict';
9 |
10 | /*::
11 | import type {ConcreteBatch} from 'relay-runtime';
12 | export type UpdateTodoMutationVariables = {|
13 | input: {
14 | id: string;
15 | isCompleted?: ?boolean;
16 | task?: ?string;
17 | clientMutationId: string;
18 | };
19 | |};
20 | export type UpdateTodoMutationResponse = {|
21 | +updateTodo: ?{|
22 | +todo: ?{|
23 | +id: string;
24 | +isCompleted: boolean;
25 | |};
26 | |};
27 | |};
28 | */
29 |
30 |
31 | /*
32 | mutation UpdateTodoMutation(
33 | $input: UpdateTodoInput!
34 | ) {
35 | updateTodo(input: $input) {
36 | todo {
37 | id
38 | isCompleted
39 | }
40 | }
41 | }
42 | */
43 |
44 | const batch /*: ConcreteBatch*/ = {
45 | "fragment": {
46 | "argumentDefinitions": [
47 | {
48 | "kind": "LocalArgument",
49 | "name": "input",
50 | "type": "UpdateTodoInput!",
51 | "defaultValue": null
52 | }
53 | ],
54 | "kind": "Fragment",
55 | "metadata": null,
56 | "name": "UpdateTodoMutation",
57 | "selections": [
58 | {
59 | "kind": "LinkedField",
60 | "alias": null,
61 | "args": [
62 | {
63 | "kind": "Variable",
64 | "name": "input",
65 | "variableName": "input",
66 | "type": "UpdateTodoInput!"
67 | }
68 | ],
69 | "concreteType": "UpdateTodoPayload",
70 | "name": "updateTodo",
71 | "plural": false,
72 | "selections": [
73 | {
74 | "kind": "LinkedField",
75 | "alias": null,
76 | "args": null,
77 | "concreteType": "Todo",
78 | "name": "todo",
79 | "plural": false,
80 | "selections": [
81 | {
82 | "kind": "ScalarField",
83 | "alias": null,
84 | "args": null,
85 | "name": "id",
86 | "storageKey": null
87 | },
88 | {
89 | "kind": "ScalarField",
90 | "alias": null,
91 | "args": null,
92 | "name": "isCompleted",
93 | "storageKey": null
94 | }
95 | ],
96 | "storageKey": null
97 | }
98 | ],
99 | "storageKey": null
100 | }
101 | ],
102 | "type": "Mutation"
103 | },
104 | "id": null,
105 | "kind": "Batch",
106 | "metadata": {},
107 | "name": "UpdateTodoMutation",
108 | "query": {
109 | "argumentDefinitions": [
110 | {
111 | "kind": "LocalArgument",
112 | "name": "input",
113 | "type": "UpdateTodoInput!",
114 | "defaultValue": null
115 | }
116 | ],
117 | "kind": "Root",
118 | "name": "UpdateTodoMutation",
119 | "operation": "mutation",
120 | "selections": [
121 | {
122 | "kind": "LinkedField",
123 | "alias": null,
124 | "args": [
125 | {
126 | "kind": "Variable",
127 | "name": "input",
128 | "variableName": "input",
129 | "type": "UpdateTodoInput!"
130 | }
131 | ],
132 | "concreteType": "UpdateTodoPayload",
133 | "name": "updateTodo",
134 | "plural": false,
135 | "selections": [
136 | {
137 | "kind": "LinkedField",
138 | "alias": null,
139 | "args": null,
140 | "concreteType": "Todo",
141 | "name": "todo",
142 | "plural": false,
143 | "selections": [
144 | {
145 | "kind": "ScalarField",
146 | "alias": null,
147 | "args": null,
148 | "name": "id",
149 | "storageKey": null
150 | },
151 | {
152 | "kind": "ScalarField",
153 | "alias": null,
154 | "args": null,
155 | "name": "isCompleted",
156 | "storageKey": null
157 | }
158 | ],
159 | "storageKey": null
160 | }
161 | ],
162 | "storageKey": null
163 | }
164 | ]
165 | },
166 | "text": "mutation UpdateTodoMutation(\n $input: UpdateTodoInput!\n) {\n updateTodo(input: $input) {\n todo {\n id\n isCompleted\n }\n }\n}\n"
167 | };
168 |
169 | module.exports = batch;
170 |
--------------------------------------------------------------------------------
/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.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 |
--------------------------------------------------------------------------------
/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-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 |
--------------------------------------------------------------------------------
/mobile/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 |
--------------------------------------------------------------------------------
/mobile/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.mobile"
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-linear-gradient')
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 |
--------------------------------------------------------------------------------
/mobile/data/schema.graphql:
--------------------------------------------------------------------------------
1 | input CreateTodo {
2 | isCompleted: Boolean
3 | task: String!
4 | }
5 |
6 | input CreateTodoInput {
7 | isCompleted: Boolean
8 | task: String!
9 | clientMutationId: String!
10 | }
11 |
12 | type CreateTodoPayload {
13 | viewer: Viewer!
14 | clientMutationId: String!
15 | todo: Todo
16 | edge: TodoEdge
17 | }
18 |
19 | scalar DateTime
20 |
21 | input DeleteTodoInput {
22 | id: ID!
23 | clientMutationId: String!
24 | }
25 |
26 | type DeleteTodoPayload {
27 | viewer: Viewer!
28 | clientMutationId: String!
29 | todo: Todo
30 | edge: TodoEdge
31 | deletedId: ID
32 | }
33 |
34 | type Mutation {
35 | createTodo(input: CreateTodoInput!): CreateTodoPayload
36 | updateTodo(input: UpdateTodoInput!): UpdateTodoPayload
37 | updateOrCreateTodo(input: UpdateOrCreateTodoInput!): UpdateOrCreateTodoPayload
38 | deleteTodo(input: DeleteTodoInput!): DeleteTodoPayload
39 | }
40 |
41 | # An object with an ID
42 | interface Node {
43 | # The id of the object.
44 | id: ID!
45 | }
46 |
47 | # Information about pagination in a connection.
48 | type PageInfo {
49 | # When paginating forwards, are there more items?
50 | hasNextPage: Boolean!
51 |
52 | # When paginating backwards, are there more items?
53 | hasPreviousPage: Boolean!
54 |
55 | # When paginating backwards, the cursor to continue.
56 | startCursor: String
57 |
58 | # When paginating forwards, the cursor to continue.
59 | endCursor: String
60 | }
61 |
62 | type Query {
63 | viewer: Viewer!
64 |
65 | # Fetches an object given its ID
66 | node(
67 | # The ID of an object
68 | id: ID!
69 | ): Node
70 | }
71 |
72 | type Todo implements Node {
73 | createdAt: DateTime!
74 | id: ID!
75 | isCompleted: Boolean!
76 | task: String!
77 | updatedAt: DateTime!
78 | }
79 |
80 | # A connection to a list of items.
81 | type TodoConnection {
82 | # Information to aid in pagination.
83 | pageInfo: PageInfo!
84 |
85 | # A list of edges.
86 | edges: [TodoEdge]
87 |
88 | # Count of filtered result set without considering pagination arguments
89 | count: Int!
90 | }
91 |
92 | # An edge in a connection.
93 | type TodoEdge {
94 | # The item at the end of the edge.
95 | node: Todo!
96 |
97 | # A cursor for use in pagination.
98 | cursor: String!
99 | }
100 |
101 | input TodoFilter {
102 | # Logical AND on all given filters.
103 | AND: [TodoFilter!]
104 |
105 | # Logical OR on all given filters.
106 | OR: [TodoFilter!]
107 | createdAt: DateTime
108 |
109 | # All values that are not equal to given value.
110 | createdAt_not: DateTime
111 |
112 | # All values that are contained in given list.
113 | createdAt_in: [DateTime!]
114 |
115 | # All values that are not contained in given list.
116 | createdAt_not_in: [DateTime!]
117 |
118 | # All values less than the given value.
119 | createdAt_lt: DateTime
120 |
121 | # All values less than or equal the given value.
122 | createdAt_lte: DateTime
123 |
124 | # All values greater than the given value.
125 | createdAt_gt: DateTime
126 |
127 | # All values greater than or equal the given value.
128 | createdAt_gte: DateTime
129 | id: ID
130 |
131 | # All values that are not equal to given value.
132 | id_not: ID
133 |
134 | # All values that are contained in given list.
135 | id_in: [ID!]
136 |
137 | # All values that are not contained in given list.
138 | id_not_in: [ID!]
139 |
140 | # All values less than the given value.
141 | id_lt: ID
142 |
143 | # All values less than or equal the given value.
144 | id_lte: ID
145 |
146 | # All values greater than the given value.
147 | id_gt: ID
148 |
149 | # All values greater than or equal the given value.
150 | id_gte: ID
151 |
152 | # All values containing the given string.
153 | id_contains: ID
154 |
155 | # All values not containing the given string.
156 | id_not_contains: ID
157 |
158 | # All values starting with the given string.
159 | id_starts_with: ID
160 |
161 | # All values not starting with the given string.
162 | id_not_starts_with: ID
163 |
164 | # All values ending with the given string.
165 | id_ends_with: ID
166 |
167 | # All values not ending with the given string.
168 | id_not_ends_with: ID
169 | isCompleted: Boolean
170 |
171 | # All values that are not equal to given value.
172 | isCompleted_not: Boolean
173 | task: String
174 |
175 | # All values that are not equal to given value.
176 | task_not: String
177 |
178 | # All values that are contained in given list.
179 | task_in: [String!]
180 |
181 | # All values that are not contained in given list.
182 | task_not_in: [String!]
183 |
184 | # All values less than the given value.
185 | task_lt: String
186 |
187 | # All values less than or equal the given value.
188 | task_lte: String
189 |
190 | # All values greater than the given value.
191 | task_gt: String
192 |
193 | # All values greater than or equal the given value.
194 | task_gte: String
195 |
196 | # All values containing the given string.
197 | task_contains: String
198 |
199 | # All values not containing the given string.
200 | task_not_contains: String
201 |
202 | # All values starting with the given string.
203 | task_starts_with: String
204 |
205 | # All values not starting with the given string.
206 | task_not_starts_with: String
207 |
208 | # All values ending with the given string.
209 | task_ends_with: String
210 |
211 | # All values not ending with the given string.
212 | task_not_ends_with: String
213 | updatedAt: DateTime
214 |
215 | # All values that are not equal to given value.
216 | updatedAt_not: DateTime
217 |
218 | # All values that are contained in given list.
219 | updatedAt_in: [DateTime!]
220 |
221 | # All values that are not contained in given list.
222 | updatedAt_not_in: [DateTime!]
223 |
224 | # All values less than the given value.
225 | updatedAt_lt: DateTime
226 |
227 | # All values less than or equal the given value.
228 | updatedAt_lte: DateTime
229 |
230 | # All values greater than the given value.
231 | updatedAt_gt: DateTime
232 |
233 | # All values greater than or equal the given value.
234 | updatedAt_gte: DateTime
235 | }
236 |
237 | enum TodoOrderBy {
238 | createdAt_ASC
239 | createdAt_DESC
240 | id_ASC
241 | id_DESC
242 | isCompleted_ASC
243 | isCompleted_DESC
244 | task_ASC
245 | task_DESC
246 | updatedAt_ASC
247 | updatedAt_DESC
248 | }
249 |
250 | input UpdateOrCreateTodoInput {
251 | update: UpdateTodo!
252 | create: CreateTodo!
253 | clientMutationId: String!
254 | }
255 |
256 | type UpdateOrCreateTodoPayload {
257 | viewer: Viewer!
258 | clientMutationId: String!
259 | todo: Todo
260 | edge: TodoEdge
261 | }
262 |
263 | input UpdateTodo {
264 | id: ID!
265 | isCompleted: Boolean
266 | task: String
267 | }
268 |
269 | input UpdateTodoInput {
270 | id: ID!
271 | isCompleted: Boolean
272 | task: String
273 | clientMutationId: String!
274 | }
275 |
276 | type UpdateTodoPayload {
277 | viewer: Viewer!
278 | clientMutationId: String!
279 | todo: Todo
280 | edge: TodoEdge
281 | }
282 |
283 | # This is the famous Relay viewer object
284 | type Viewer {
285 | allTodoes(filter: TodoFilter, orderBy: TodoOrderBy, skip: Int, after: String, before: String, first: Int, last: Int): TodoConnection!
286 | Todo(id: ID): Todo
287 | id: ID!
288 | }
289 |
290 |
--------------------------------------------------------------------------------
/mobile/src/components/__generated__/TodoListLoadingAllTodoQuery.graphql.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @flow
3 | * @relayHash b191504b083c48243f0dce418c5e3ca9
4 | */
5 |
6 | /* eslint-disable */
7 |
8 | 'use strict';
9 |
10 | /*::
11 | import type {ConcreteBatch} from 'relay-runtime';
12 | export type TodoListLoadingAllTodoQueryResponse = {|
13 | +viewer: {| |};
14 | |};
15 | */
16 |
17 |
18 | /*
19 | query TodoListLoadingAllTodoQuery {
20 | viewer {
21 | ...TodoList_viewer
22 | id
23 | }
24 | }
25 |
26 | fragment TodoList_viewer on Viewer {
27 | allTodoes(last: 100, orderBy: createdAt_DESC) {
28 | edges {
29 | node {
30 | ...Todo_todo
31 | id
32 | }
33 | }
34 | ... on TodoConnection {
35 | edges {
36 | cursor
37 | node {
38 | __typename
39 | id
40 | }
41 | }
42 | pageInfo {
43 | hasPreviousPage
44 | startCursor
45 | }
46 | }
47 | }
48 | }
49 |
50 | fragment Todo_todo on Todo {
51 | id
52 | task
53 | createdAt
54 | isCompleted
55 | }
56 | */
57 |
58 | const batch /*: ConcreteBatch*/ = {
59 | "fragment": {
60 | "argumentDefinitions": [],
61 | "kind": "Fragment",
62 | "metadata": null,
63 | "name": "TodoListLoadingAllTodoQuery",
64 | "selections": [
65 | {
66 | "kind": "LinkedField",
67 | "alias": null,
68 | "args": null,
69 | "concreteType": "Viewer",
70 | "name": "viewer",
71 | "plural": false,
72 | "selections": [
73 | {
74 | "kind": "FragmentSpread",
75 | "name": "TodoList_viewer",
76 | "args": null
77 | }
78 | ],
79 | "storageKey": null
80 | }
81 | ],
82 | "type": "Query"
83 | },
84 | "id": null,
85 | "kind": "Batch",
86 | "metadata": {},
87 | "name": "TodoListLoadingAllTodoQuery",
88 | "query": {
89 | "argumentDefinitions": [],
90 | "kind": "Root",
91 | "name": "TodoListLoadingAllTodoQuery",
92 | "operation": "query",
93 | "selections": [
94 | {
95 | "kind": "LinkedField",
96 | "alias": null,
97 | "args": null,
98 | "concreteType": "Viewer",
99 | "name": "viewer",
100 | "plural": false,
101 | "selections": [
102 | {
103 | "kind": "ScalarField",
104 | "alias": null,
105 | "args": null,
106 | "name": "id",
107 | "storageKey": null
108 | },
109 | {
110 | "kind": "InlineFragment",
111 | "type": "Viewer",
112 | "selections": [
113 | {
114 | "kind": "LinkedField",
115 | "alias": null,
116 | "args": [
117 | {
118 | "kind": "Literal",
119 | "name": "last",
120 | "value": 100,
121 | "type": "Int"
122 | },
123 | {
124 | "kind": "Literal",
125 | "name": "orderBy",
126 | "value": "createdAt_DESC",
127 | "type": "TodoOrderBy"
128 | }
129 | ],
130 | "concreteType": "TodoConnection",
131 | "name": "allTodoes",
132 | "plural": false,
133 | "selections": [
134 | {
135 | "kind": "LinkedField",
136 | "alias": null,
137 | "args": null,
138 | "concreteType": "TodoEdge",
139 | "name": "edges",
140 | "plural": true,
141 | "selections": [
142 | {
143 | "kind": "LinkedField",
144 | "alias": null,
145 | "args": null,
146 | "concreteType": "Todo",
147 | "name": "node",
148 | "plural": false,
149 | "selections": [
150 | {
151 | "kind": "ScalarField",
152 | "alias": null,
153 | "args": null,
154 | "name": "id",
155 | "storageKey": null
156 | },
157 | {
158 | "kind": "InlineFragment",
159 | "type": "Todo",
160 | "selections": [
161 | {
162 | "kind": "ScalarField",
163 | "alias": null,
164 | "args": null,
165 | "name": "task",
166 | "storageKey": null
167 | },
168 | {
169 | "kind": "ScalarField",
170 | "alias": null,
171 | "args": null,
172 | "name": "createdAt",
173 | "storageKey": null
174 | },
175 | {
176 | "kind": "ScalarField",
177 | "alias": null,
178 | "args": null,
179 | "name": "isCompleted",
180 | "storageKey": null
181 | }
182 | ]
183 | }
184 | ],
185 | "storageKey": null
186 | }
187 | ],
188 | "storageKey": null
189 | },
190 | {
191 | "kind": "InlineFragment",
192 | "type": "TodoConnection",
193 | "selections": [
194 | {
195 | "kind": "LinkedField",
196 | "alias": null,
197 | "args": null,
198 | "concreteType": "TodoEdge",
199 | "name": "edges",
200 | "plural": true,
201 | "selections": [
202 | {
203 | "kind": "ScalarField",
204 | "alias": null,
205 | "args": null,
206 | "name": "cursor",
207 | "storageKey": null
208 | },
209 | {
210 | "kind": "LinkedField",
211 | "alias": null,
212 | "args": null,
213 | "concreteType": "Todo",
214 | "name": "node",
215 | "plural": false,
216 | "selections": [
217 | {
218 | "kind": "ScalarField",
219 | "alias": null,
220 | "args": null,
221 | "name": "__typename",
222 | "storageKey": null
223 | }
224 | ],
225 | "storageKey": null
226 | }
227 | ],
228 | "storageKey": null
229 | },
230 | {
231 | "kind": "LinkedField",
232 | "alias": null,
233 | "args": null,
234 | "concreteType": "PageInfo",
235 | "name": "pageInfo",
236 | "plural": false,
237 | "selections": [
238 | {
239 | "kind": "ScalarField",
240 | "alias": null,
241 | "args": null,
242 | "name": "hasPreviousPage",
243 | "storageKey": null
244 | },
245 | {
246 | "kind": "ScalarField",
247 | "alias": null,
248 | "args": null,
249 | "name": "startCursor",
250 | "storageKey": null
251 | }
252 | ],
253 | "storageKey": null
254 | }
255 | ]
256 | }
257 | ],
258 | "storageKey": "allTodoes{\"last\":100,\"orderBy\":\"createdAt_DESC\"}"
259 | },
260 | {
261 | "kind": "LinkedHandle",
262 | "alias": null,
263 | "args": [
264 | {
265 | "kind": "Literal",
266 | "name": "last",
267 | "value": 100,
268 | "type": "Int"
269 | },
270 | {
271 | "kind": "Literal",
272 | "name": "orderBy",
273 | "value": "createdAt_DESC",
274 | "type": "TodoOrderBy"
275 | }
276 | ],
277 | "handle": "connection",
278 | "name": "allTodoes",
279 | "key": "TodoList_allTodoes",
280 | "filters": []
281 | }
282 | ]
283 | }
284 | ],
285 | "storageKey": null
286 | }
287 | ]
288 | },
289 | "text": "query TodoListLoadingAllTodoQuery {\n viewer {\n ...TodoList_viewer\n id\n }\n}\n\nfragment TodoList_viewer on Viewer {\n allTodoes(last: 100, orderBy: createdAt_DESC) {\n edges {\n node {\n ...Todo_todo\n id\n }\n }\n ... on TodoConnection {\n edges {\n cursor\n node {\n __typename\n id\n }\n }\n pageInfo {\n hasPreviousPage\n startCursor\n }\n }\n }\n}\n\nfragment Todo_todo on Todo {\n id\n task\n createdAt\n isCompleted\n}\n"
290 | };
291 |
292 | module.exports = batch;
293 |
--------------------------------------------------------------------------------
/mobile/ios/mobile.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 | /* Begin PBXBuildFile section */
9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
14 | 00E356F31AD99517003FC87E /* mobileTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* mobileTests.m */; };
15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
34 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
35 | 2DCD954D1E0B4F2C00145EB5 /* mobileTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* mobileTests.m */; };
36 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
38 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
39 | 0607742625BA45ED89D48066 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A5ECC3A3FD2443C5AA8C3FB9 /* libRNVectorIcons.a */; };
40 | 6F84893780FA411CBB93E563 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 31F7800555A64FE594A282C4 /* Entypo.ttf */; };
41 | 9B5FFDF400F14D1F9F089831 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 258C887E6DBF4953AAAF6822 /* EvilIcons.ttf */; };
42 | 83992C43962F4742856C460C /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 76E024020EEF43BB9616825C /* Feather.ttf */; };
43 | 8FC061AFCA014526BF4E1989 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C68448F479F34881A36910FB /* FontAwesome.ttf */; };
44 | 0C432D1126DA493ABCA84930 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 97C9F457CD2B442CB25C9E5B /* Foundation.ttf */; };
45 | DCF52624B8204B4CACEE654B /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2B9137EC138B4D16954F75F4 /* Ionicons.ttf */; };
46 | E2E14626DAE6423A9F33322D /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DE6CAC6691746D38B5A7154 /* MaterialCommunityIcons.ttf */; };
47 | 279E427CFA5C4C9B8B357BCB /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CF8FCB3F2B164E6BA597ADD3 /* MaterialIcons.ttf */; };
48 | 122DB3927FB8411D97E7B694 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B90676CB949844309194D2CE /* Octicons.ttf */; };
49 | 6FEF75FAA13D410594C0DDBD /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F3684801640340BB8AD7E585 /* SimpleLineIcons.ttf */; };
50 | 59FD68CA8EE6436B917BB92A /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 25BFC1EB7AC74443AF9527AD /* Zocial.ttf */; };
51 | AD3CA923D5E94B499BF679A1 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AD3BE15DE04942DFBB6C1973 /* libBVLinearGradient.a */; };
52 | /* End PBXBuildFile section */
53 |
54 | /* Begin PBXContainerItemProxy section */
55 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
56 | isa = PBXContainerItemProxy;
57 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
58 | proxyType = 2;
59 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
60 | remoteInfo = RCTActionSheet;
61 | };
62 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
63 | isa = PBXContainerItemProxy;
64 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
65 | proxyType = 2;
66 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
67 | remoteInfo = RCTGeolocation;
68 | };
69 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
70 | isa = PBXContainerItemProxy;
71 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
72 | proxyType = 2;
73 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
74 | remoteInfo = RCTImage;
75 | };
76 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
77 | isa = PBXContainerItemProxy;
78 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
79 | proxyType = 2;
80 | remoteGlobalIDString = 58B511DB1A9E6C8500147676;
81 | remoteInfo = RCTNetwork;
82 | };
83 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
84 | isa = PBXContainerItemProxy;
85 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
86 | proxyType = 2;
87 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
88 | remoteInfo = RCTVibration;
89 | };
90 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
91 | isa = PBXContainerItemProxy;
92 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
93 | proxyType = 1;
94 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
95 | remoteInfo = mobile;
96 | };
97 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
98 | isa = PBXContainerItemProxy;
99 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
100 | proxyType = 2;
101 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
102 | remoteInfo = RCTSettings;
103 | };
104 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
105 | isa = PBXContainerItemProxy;
106 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
107 | proxyType = 2;
108 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
109 | remoteInfo = RCTWebSocket;
110 | };
111 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
112 | isa = PBXContainerItemProxy;
113 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
114 | proxyType = 2;
115 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
116 | remoteInfo = React;
117 | };
118 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
119 | isa = PBXContainerItemProxy;
120 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
121 | proxyType = 1;
122 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
123 | remoteInfo = "mobile-tvOS";
124 | };
125 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
126 | isa = PBXContainerItemProxy;
127 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
128 | proxyType = 2;
129 | remoteGlobalIDString = ADD01A681E09402E00F6D226;
130 | remoteInfo = "RCTBlob-tvOS";
131 | };
132 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
133 | isa = PBXContainerItemProxy;
134 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
135 | proxyType = 2;
136 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
137 | remoteInfo = fishhook;
138 | };
139 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
140 | isa = PBXContainerItemProxy;
141 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
142 | proxyType = 2;
143 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
144 | remoteInfo = "fishhook-tvOS";
145 | };
146 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
147 | isa = PBXContainerItemProxy;
148 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
149 | proxyType = 2;
150 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
151 | remoteInfo = "RCTImage-tvOS";
152 | };
153 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
154 | isa = PBXContainerItemProxy;
155 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
156 | proxyType = 2;
157 | remoteGlobalIDString = 2D2A28471D9B043800D4039D;
158 | remoteInfo = "RCTLinking-tvOS";
159 | };
160 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
161 | isa = PBXContainerItemProxy;
162 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
163 | proxyType = 2;
164 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
165 | remoteInfo = "RCTNetwork-tvOS";
166 | };
167 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
168 | isa = PBXContainerItemProxy;
169 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
170 | proxyType = 2;
171 | remoteGlobalIDString = 2D2A28611D9B046600D4039D;
172 | remoteInfo = "RCTSettings-tvOS";
173 | };
174 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
175 | isa = PBXContainerItemProxy;
176 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
177 | proxyType = 2;
178 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
179 | remoteInfo = "RCTText-tvOS";
180 | };
181 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
182 | isa = PBXContainerItemProxy;
183 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
184 | proxyType = 2;
185 | remoteGlobalIDString = 2D2A28881D9B049200D4039D;
186 | remoteInfo = "RCTWebSocket-tvOS";
187 | };
188 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
189 | isa = PBXContainerItemProxy;
190 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
191 | proxyType = 2;
192 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
193 | remoteInfo = "React-tvOS";
194 | };
195 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
196 | isa = PBXContainerItemProxy;
197 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
198 | proxyType = 2;
199 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
200 | remoteInfo = yoga;
201 | };
202 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
203 | isa = PBXContainerItemProxy;
204 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
205 | proxyType = 2;
206 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
207 | remoteInfo = "yoga-tvOS";
208 | };
209 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
210 | isa = PBXContainerItemProxy;
211 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
212 | proxyType = 2;
213 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
214 | remoteInfo = cxxreact;
215 | };
216 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
217 | isa = PBXContainerItemProxy;
218 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
219 | proxyType = 2;
220 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
221 | remoteInfo = "cxxreact-tvOS";
222 | };
223 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
224 | isa = PBXContainerItemProxy;
225 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
226 | proxyType = 2;
227 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
228 | remoteInfo = jschelpers;
229 | };
230 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
231 | isa = PBXContainerItemProxy;
232 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
233 | proxyType = 2;
234 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
235 | remoteInfo = "jschelpers-tvOS";
236 | };
237 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
238 | isa = PBXContainerItemProxy;
239 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
240 | proxyType = 2;
241 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
242 | remoteInfo = RCTAnimation;
243 | };
244 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
245 | isa = PBXContainerItemProxy;
246 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
247 | proxyType = 2;
248 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
249 | remoteInfo = "RCTAnimation-tvOS";
250 | };
251 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
252 | isa = PBXContainerItemProxy;
253 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
254 | proxyType = 2;
255 | remoteGlobalIDString = 134814201AA4EA6300B7C361;
256 | remoteInfo = RCTLinking;
257 | };
258 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
259 | isa = PBXContainerItemProxy;
260 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
261 | proxyType = 2;
262 | remoteGlobalIDString = 58B5119B1A9E6C1200147676;
263 | remoteInfo = RCTText;
264 | };
265 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
266 | isa = PBXContainerItemProxy;
267 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
268 | proxyType = 2;
269 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
270 | remoteInfo = RCTBlob;
271 | };
272 | /* End PBXContainerItemProxy section */
273 |
274 | /* Begin PBXFileReference section */
275 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
276 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; };
277 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; };
278 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; };
279 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; };
280 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; };
281 | 00E356EE1AD99517003FC87E /* mobileTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = mobileTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
282 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
283 | 00E356F21AD99517003FC87E /* mobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = mobileTests.m; sourceTree = ""; };
284 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; };
285 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; };
286 | 13B07F961A680F5B00A75B9A /* mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = mobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
287 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = mobile/AppDelegate.h; sourceTree = ""; };
288 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = mobile/AppDelegate.m; sourceTree = ""; };
289 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
290 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = mobile/Images.xcassets; sourceTree = ""; };
291 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = mobile/Info.plist; sourceTree = ""; };
292 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = mobile/main.m; sourceTree = ""; };
293 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; };
294 | 2D02E47B1E0B4A5D006451C7 /* mobile-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "mobile-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
295 | 2D02E4901E0B4A5D006451C7 /* mobile-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "mobile-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
296 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
297 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; };
298 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; };
299 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; };
300 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; };
301 | B6DD1B9400EF4571B95A7ACA /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
302 | A5ECC3A3FD2443C5AA8C3FB9 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
303 | 31F7800555A64FE594A282C4 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
304 | 258C887E6DBF4953AAAF6822 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
305 | 76E024020EEF43BB9616825C /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
306 | C68448F479F34881A36910FB /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
307 | 97C9F457CD2B442CB25C9E5B /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
308 | 2B9137EC138B4D16954F75F4 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
309 | 7DE6CAC6691746D38B5A7154 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
310 | CF8FCB3F2B164E6BA597ADD3 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
311 | B90676CB949844309194D2CE /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
312 | F3684801640340BB8AD7E585 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
313 | 25BFC1EB7AC74443AF9527AD /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; };
314 | B15FEFF087D64B6BAE18F19C /* BVLinearGradient.xcodeproj */ = {isa = PBXFileReference; name = "BVLinearGradient.xcodeproj"; path = "../node_modules/react-native-linear-gradient/BVLinearGradient.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
315 | AD3BE15DE04942DFBB6C1973 /* libBVLinearGradient.a */ = {isa = PBXFileReference; name = "libBVLinearGradient.a"; path = "libBVLinearGradient.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
316 | /* End PBXFileReference section */
317 |
318 | /* Begin PBXFrameworksBuildPhase section */
319 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
320 | isa = PBXFrameworksBuildPhase;
321 | buildActionMask = 2147483647;
322 | files = (
323 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
324 | );
325 | runOnlyForDeploymentPostprocessing = 0;
326 | };
327 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
328 | isa = PBXFrameworksBuildPhase;
329 | buildActionMask = 2147483647;
330 | files = (
331 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
332 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
333 | 146834051AC3E58100842450 /* libReact.a in Frameworks */,
334 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
335 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
336 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
337 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
338 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
339 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
340 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
341 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
342 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
343 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
344 | 0607742625BA45ED89D48066 /* libRNVectorIcons.a in Frameworks */,
345 | AD3CA923D5E94B499BF679A1 /* libBVLinearGradient.a in Frameworks */,
346 | );
347 | runOnlyForDeploymentPostprocessing = 0;
348 | };
349 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
350 | isa = PBXFrameworksBuildPhase;
351 | buildActionMask = 2147483647;
352 | files = (
353 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
354 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
355 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
356 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
357 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
358 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
359 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
360 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
361 | );
362 | runOnlyForDeploymentPostprocessing = 0;
363 | };
364 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
365 | isa = PBXFrameworksBuildPhase;
366 | buildActionMask = 2147483647;
367 | files = (
368 | );
369 | runOnlyForDeploymentPostprocessing = 0;
370 | };
371 | /* End PBXFrameworksBuildPhase section */
372 |
373 | /* Begin PBXGroup section */
374 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
375 | isa = PBXGroup;
376 | children = (
377 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
378 | );
379 | name = Products;
380 | sourceTree = "";
381 | };
382 | 00C302B61ABCB90400DB3ED1 /* Products */ = {
383 | isa = PBXGroup;
384 | children = (
385 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
386 | );
387 | name = Products;
388 | sourceTree = "";
389 | };
390 | 00C302BC1ABCB91800DB3ED1 /* Products */ = {
391 | isa = PBXGroup;
392 | children = (
393 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
394 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
395 | );
396 | name = Products;
397 | sourceTree = "";
398 | };
399 | 00C302D41ABCB9D200DB3ED1 /* Products */ = {
400 | isa = PBXGroup;
401 | children = (
402 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
403 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
404 | );
405 | name = Products;
406 | sourceTree = "";
407 | };
408 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
409 | isa = PBXGroup;
410 | children = (
411 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
412 | );
413 | name = Products;
414 | sourceTree = "";
415 | };
416 | 00E356EF1AD99517003FC87E /* mobileTests */ = {
417 | isa = PBXGroup;
418 | children = (
419 | 00E356F21AD99517003FC87E /* mobileTests.m */,
420 | 00E356F01AD99517003FC87E /* Supporting Files */,
421 | );
422 | path = mobileTests;
423 | sourceTree = "";
424 | };
425 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
426 | isa = PBXGroup;
427 | children = (
428 | 00E356F11AD99517003FC87E /* Info.plist */,
429 | );
430 | name = "Supporting Files";
431 | sourceTree = "";
432 | };
433 | 139105B71AF99BAD00B5F7CC /* Products */ = {
434 | isa = PBXGroup;
435 | children = (
436 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
437 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
438 | );
439 | name = Products;
440 | sourceTree = "";
441 | };
442 | 139FDEE71B06529A00C62182 /* Products */ = {
443 | isa = PBXGroup;
444 | children = (
445 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
446 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
447 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
448 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
449 | );
450 | name = Products;
451 | sourceTree = "";
452 | };
453 | 13B07FAE1A68108700A75B9A /* mobile */ = {
454 | isa = PBXGroup;
455 | children = (
456 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
457 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
458 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
459 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
460 | 13B07FB61A68108700A75B9A /* Info.plist */,
461 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
462 | 13B07FB71A68108700A75B9A /* main.m */,
463 | );
464 | name = mobile;
465 | sourceTree = "";
466 | };
467 | 146834001AC3E56700842450 /* Products */ = {
468 | isa = PBXGroup;
469 | children = (
470 | 146834041AC3E56700842450 /* libReact.a */,
471 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
472 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
473 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
474 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
475 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
476 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
477 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */,
478 | );
479 | name = Products;
480 | sourceTree = "";
481 | };
482 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
483 | isa = PBXGroup;
484 | children = (
485 | 2D16E6891FA4F8E400B85C8A /* libReact.a */,
486 | );
487 | name = Frameworks;
488 | sourceTree = "";
489 | };
490 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
491 | isa = PBXGroup;
492 | children = (
493 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
494 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
495 | );
496 | name = Products;
497 | sourceTree = "";
498 | };
499 | 78C398B11ACF4ADC00677621 /* Products */ = {
500 | isa = PBXGroup;
501 | children = (
502 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
503 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
504 | );
505 | name = Products;
506 | sourceTree = "";
507 | };
508 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
509 | isa = PBXGroup;
510 | children = (
511 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
512 | 146833FF1AC3E56700842450 /* React.xcodeproj */,
513 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
514 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
515 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
516 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
517 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
518 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
519 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
520 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
521 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
522 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
523 | B6DD1B9400EF4571B95A7ACA /* RNVectorIcons.xcodeproj */,
524 | B15FEFF087D64B6BAE18F19C /* BVLinearGradient.xcodeproj */,
525 | );
526 | name = Libraries;
527 | sourceTree = "";
528 | };
529 | 832341B11AAA6A8300B99B32 /* Products */ = {
530 | isa = PBXGroup;
531 | children = (
532 | 832341B51AAA6A8300B99B32 /* libRCTText.a */,
533 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
534 | );
535 | name = Products;
536 | sourceTree = "";
537 | };
538 | 83CBB9F61A601CBA00E9B192 = {
539 | isa = PBXGroup;
540 | children = (
541 | 13B07FAE1A68108700A75B9A /* mobile */,
542 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
543 | 00E356EF1AD99517003FC87E /* mobileTests */,
544 | 83CBBA001A601CBA00E9B192 /* Products */,
545 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
546 | 085DF187B2B24E94941EB04F /* Resources */,
547 | );
548 | indentWidth = 2;
549 | sourceTree = "";
550 | tabWidth = 2;
551 | usesTabs = 0;
552 | };
553 | 83CBBA001A601CBA00E9B192 /* Products */ = {
554 | isa = PBXGroup;
555 | children = (
556 | 13B07F961A680F5B00A75B9A /* mobile.app */,
557 | 00E356EE1AD99517003FC87E /* mobileTests.xctest */,
558 | 2D02E47B1E0B4A5D006451C7 /* mobile-tvOS.app */,
559 | 2D02E4901E0B4A5D006451C7 /* mobile-tvOSTests.xctest */,
560 | );
561 | name = Products;
562 | sourceTree = "";
563 | };
564 | ADBDB9201DFEBF0600ED6528 /* Products */ = {
565 | isa = PBXGroup;
566 | children = (
567 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
568 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
569 | );
570 | name = Products;
571 | sourceTree = "";
572 | };
573 | 085DF187B2B24E94941EB04F /* Resources */ = {
574 | isa = "PBXGroup";
575 | children = (
576 | 31F7800555A64FE594A282C4 /* Entypo.ttf */,
577 | 258C887E6DBF4953AAAF6822 /* EvilIcons.ttf */,
578 | 76E024020EEF43BB9616825C /* Feather.ttf */,
579 | C68448F479F34881A36910FB /* FontAwesome.ttf */,
580 | 97C9F457CD2B442CB25C9E5B /* Foundation.ttf */,
581 | 2B9137EC138B4D16954F75F4 /* Ionicons.ttf */,
582 | 7DE6CAC6691746D38B5A7154 /* MaterialCommunityIcons.ttf */,
583 | CF8FCB3F2B164E6BA597ADD3 /* MaterialIcons.ttf */,
584 | B90676CB949844309194D2CE /* Octicons.ttf */,
585 | F3684801640340BB8AD7E585 /* SimpleLineIcons.ttf */,
586 | 25BFC1EB7AC74443AF9527AD /* Zocial.ttf */,
587 | );
588 | name = Resources;
589 | sourceTree = "";
590 | path = "";
591 | };
592 | /* End PBXGroup section */
593 |
594 | /* Begin PBXNativeTarget section */
595 | 00E356ED1AD99517003FC87E /* mobileTests */ = {
596 | isa = PBXNativeTarget;
597 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "mobileTests" */;
598 | buildPhases = (
599 | 00E356EA1AD99517003FC87E /* Sources */,
600 | 00E356EB1AD99517003FC87E /* Frameworks */,
601 | 00E356EC1AD99517003FC87E /* Resources */,
602 | );
603 | buildRules = (
604 | );
605 | dependencies = (
606 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
607 | );
608 | name = mobileTests;
609 | productName = mobileTests;
610 | productReference = 00E356EE1AD99517003FC87E /* mobileTests.xctest */;
611 | productType = "com.apple.product-type.bundle.unit-test";
612 | };
613 | 13B07F861A680F5B00A75B9A /* mobile */ = {
614 | isa = PBXNativeTarget;
615 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "mobile" */;
616 | buildPhases = (
617 | 13B07F871A680F5B00A75B9A /* Sources */,
618 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
619 | 13B07F8E1A680F5B00A75B9A /* Resources */,
620 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
621 | );
622 | buildRules = (
623 | );
624 | dependencies = (
625 | );
626 | name = mobile;
627 | productName = "Hello World";
628 | productReference = 13B07F961A680F5B00A75B9A /* mobile.app */;
629 | productType = "com.apple.product-type.application";
630 | };
631 | 2D02E47A1E0B4A5D006451C7 /* mobile-tvOS */ = {
632 | isa = PBXNativeTarget;
633 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "mobile-tvOS" */;
634 | buildPhases = (
635 | 2D02E4771E0B4A5D006451C7 /* Sources */,
636 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
637 | 2D02E4791E0B4A5D006451C7 /* Resources */,
638 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
639 | );
640 | buildRules = (
641 | );
642 | dependencies = (
643 | );
644 | name = "mobile-tvOS";
645 | productName = "mobile-tvOS";
646 | productReference = 2D02E47B1E0B4A5D006451C7 /* mobile-tvOS.app */;
647 | productType = "com.apple.product-type.application";
648 | };
649 | 2D02E48F1E0B4A5D006451C7 /* mobile-tvOSTests */ = {
650 | isa = PBXNativeTarget;
651 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "mobile-tvOSTests" */;
652 | buildPhases = (
653 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
654 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
655 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
656 | );
657 | buildRules = (
658 | );
659 | dependencies = (
660 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
661 | );
662 | name = "mobile-tvOSTests";
663 | productName = "mobile-tvOSTests";
664 | productReference = 2D02E4901E0B4A5D006451C7 /* mobile-tvOSTests.xctest */;
665 | productType = "com.apple.product-type.bundle.unit-test";
666 | };
667 | /* End PBXNativeTarget section */
668 |
669 | /* Begin PBXProject section */
670 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
671 | isa = PBXProject;
672 | attributes = {
673 | LastUpgradeCheck = 610;
674 | ORGANIZATIONNAME = Facebook;
675 | TargetAttributes = {
676 | 00E356ED1AD99517003FC87E = {
677 | CreatedOnToolsVersion = 6.2;
678 | TestTargetID = 13B07F861A680F5B00A75B9A;
679 | };
680 | 2D02E47A1E0B4A5D006451C7 = {
681 | CreatedOnToolsVersion = 8.2.1;
682 | ProvisioningStyle = Automatic;
683 | };
684 | 2D02E48F1E0B4A5D006451C7 = {
685 | CreatedOnToolsVersion = 8.2.1;
686 | ProvisioningStyle = Automatic;
687 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
688 | };
689 | };
690 | };
691 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "mobile" */;
692 | compatibilityVersion = "Xcode 3.2";
693 | developmentRegion = English;
694 | hasScannedForEncodings = 0;
695 | knownRegions = (
696 | en,
697 | Base,
698 | );
699 | mainGroup = 83CBB9F61A601CBA00E9B192;
700 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
701 | projectDirPath = "";
702 | projectReferences = (
703 | {
704 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
705 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
706 | },
707 | {
708 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
709 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
710 | },
711 | {
712 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
713 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
714 | },
715 | {
716 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
717 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
718 | },
719 | {
720 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
721 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
722 | },
723 | {
724 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
725 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
726 | },
727 | {
728 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
729 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
730 | },
731 | {
732 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
733 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
734 | },
735 | {
736 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
737 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
738 | },
739 | {
740 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
741 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
742 | },
743 | {
744 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
745 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
746 | },
747 | {
748 | ProductGroup = 146834001AC3E56700842450 /* Products */;
749 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
750 | },
751 | );
752 | projectRoot = "";
753 | targets = (
754 | 13B07F861A680F5B00A75B9A /* mobile */,
755 | 00E356ED1AD99517003FC87E /* mobileTests */,
756 | 2D02E47A1E0B4A5D006451C7 /* mobile-tvOS */,
757 | 2D02E48F1E0B4A5D006451C7 /* mobile-tvOSTests */,
758 | );
759 | };
760 | /* End PBXProject section */
761 |
762 | /* Begin PBXReferenceProxy section */
763 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
764 | isa = PBXReferenceProxy;
765 | fileType = archive.ar;
766 | path = libRCTActionSheet.a;
767 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
768 | sourceTree = BUILT_PRODUCTS_DIR;
769 | };
770 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
771 | isa = PBXReferenceProxy;
772 | fileType = archive.ar;
773 | path = libRCTGeolocation.a;
774 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
775 | sourceTree = BUILT_PRODUCTS_DIR;
776 | };
777 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
778 | isa = PBXReferenceProxy;
779 | fileType = archive.ar;
780 | path = libRCTImage.a;
781 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
782 | sourceTree = BUILT_PRODUCTS_DIR;
783 | };
784 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
785 | isa = PBXReferenceProxy;
786 | fileType = archive.ar;
787 | path = libRCTNetwork.a;
788 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
789 | sourceTree = BUILT_PRODUCTS_DIR;
790 | };
791 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
792 | isa = PBXReferenceProxy;
793 | fileType = archive.ar;
794 | path = libRCTVibration.a;
795 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
796 | sourceTree = BUILT_PRODUCTS_DIR;
797 | };
798 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
799 | isa = PBXReferenceProxy;
800 | fileType = archive.ar;
801 | path = libRCTSettings.a;
802 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
803 | sourceTree = BUILT_PRODUCTS_DIR;
804 | };
805 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
806 | isa = PBXReferenceProxy;
807 | fileType = archive.ar;
808 | path = libRCTWebSocket.a;
809 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
810 | sourceTree = BUILT_PRODUCTS_DIR;
811 | };
812 | 146834041AC3E56700842450 /* libReact.a */ = {
813 | isa = PBXReferenceProxy;
814 | fileType = archive.ar;
815 | path = libReact.a;
816 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
817 | sourceTree = BUILT_PRODUCTS_DIR;
818 | };
819 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
820 | isa = PBXReferenceProxy;
821 | fileType = archive.ar;
822 | path = "libRCTBlob-tvOS.a";
823 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
824 | sourceTree = BUILT_PRODUCTS_DIR;
825 | };
826 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
827 | isa = PBXReferenceProxy;
828 | fileType = archive.ar;
829 | path = libfishhook.a;
830 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
831 | sourceTree = BUILT_PRODUCTS_DIR;
832 | };
833 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
834 | isa = PBXReferenceProxy;
835 | fileType = archive.ar;
836 | path = "libfishhook-tvOS.a";
837 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
838 | sourceTree = BUILT_PRODUCTS_DIR;
839 | };
840 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
841 | isa = PBXReferenceProxy;
842 | fileType = archive.ar;
843 | path = "libRCTImage-tvOS.a";
844 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
845 | sourceTree = BUILT_PRODUCTS_DIR;
846 | };
847 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
848 | isa = PBXReferenceProxy;
849 | fileType = archive.ar;
850 | path = "libRCTLinking-tvOS.a";
851 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
852 | sourceTree = BUILT_PRODUCTS_DIR;
853 | };
854 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
855 | isa = PBXReferenceProxy;
856 | fileType = archive.ar;
857 | path = "libRCTNetwork-tvOS.a";
858 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
859 | sourceTree = BUILT_PRODUCTS_DIR;
860 | };
861 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
862 | isa = PBXReferenceProxy;
863 | fileType = archive.ar;
864 | path = "libRCTSettings-tvOS.a";
865 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
866 | sourceTree = BUILT_PRODUCTS_DIR;
867 | };
868 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
869 | isa = PBXReferenceProxy;
870 | fileType = archive.ar;
871 | path = "libRCTText-tvOS.a";
872 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
873 | sourceTree = BUILT_PRODUCTS_DIR;
874 | };
875 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
876 | isa = PBXReferenceProxy;
877 | fileType = archive.ar;
878 | path = "libRCTWebSocket-tvOS.a";
879 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
880 | sourceTree = BUILT_PRODUCTS_DIR;
881 | };
882 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = {
883 | isa = PBXReferenceProxy;
884 | fileType = archive.ar;
885 | path = "libReact-tvOS.a";
886 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
887 | sourceTree = BUILT_PRODUCTS_DIR;
888 | };
889 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
890 | isa = PBXReferenceProxy;
891 | fileType = archive.ar;
892 | path = libyoga.a;
893 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
894 | sourceTree = BUILT_PRODUCTS_DIR;
895 | };
896 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
897 | isa = PBXReferenceProxy;
898 | fileType = archive.ar;
899 | path = libyoga.a;
900 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
901 | sourceTree = BUILT_PRODUCTS_DIR;
902 | };
903 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
904 | isa = PBXReferenceProxy;
905 | fileType = archive.ar;
906 | path = libcxxreact.a;
907 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
908 | sourceTree = BUILT_PRODUCTS_DIR;
909 | };
910 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
911 | isa = PBXReferenceProxy;
912 | fileType = archive.ar;
913 | path = libcxxreact.a;
914 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
915 | sourceTree = BUILT_PRODUCTS_DIR;
916 | };
917 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
918 | isa = PBXReferenceProxy;
919 | fileType = archive.ar;
920 | path = libjschelpers.a;
921 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
922 | sourceTree = BUILT_PRODUCTS_DIR;
923 | };
924 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
925 | isa = PBXReferenceProxy;
926 | fileType = archive.ar;
927 | path = libjschelpers.a;
928 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
929 | sourceTree = BUILT_PRODUCTS_DIR;
930 | };
931 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
932 | isa = PBXReferenceProxy;
933 | fileType = archive.ar;
934 | path = libRCTAnimation.a;
935 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
936 | sourceTree = BUILT_PRODUCTS_DIR;
937 | };
938 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
939 | isa = PBXReferenceProxy;
940 | fileType = archive.ar;
941 | path = libRCTAnimation.a;
942 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
943 | sourceTree = BUILT_PRODUCTS_DIR;
944 | };
945 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
946 | isa = PBXReferenceProxy;
947 | fileType = archive.ar;
948 | path = libRCTLinking.a;
949 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
950 | sourceTree = BUILT_PRODUCTS_DIR;
951 | };
952 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
953 | isa = PBXReferenceProxy;
954 | fileType = archive.ar;
955 | path = libRCTText.a;
956 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
957 | sourceTree = BUILT_PRODUCTS_DIR;
958 | };
959 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
960 | isa = PBXReferenceProxy;
961 | fileType = archive.ar;
962 | path = libRCTBlob.a;
963 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
964 | sourceTree = BUILT_PRODUCTS_DIR;
965 | };
966 | /* End PBXReferenceProxy section */
967 |
968 | /* Begin PBXResourcesBuildPhase section */
969 | 00E356EC1AD99517003FC87E /* Resources */ = {
970 | isa = PBXResourcesBuildPhase;
971 | buildActionMask = 2147483647;
972 | files = (
973 | );
974 | runOnlyForDeploymentPostprocessing = 0;
975 | };
976 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
977 | isa = PBXResourcesBuildPhase;
978 | buildActionMask = 2147483647;
979 | files = (
980 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
981 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
982 | 6F84893780FA411CBB93E563 /* Entypo.ttf in Resources */,
983 | 9B5FFDF400F14D1F9F089831 /* EvilIcons.ttf in Resources */,
984 | 83992C43962F4742856C460C /* Feather.ttf in Resources */,
985 | 8FC061AFCA014526BF4E1989 /* FontAwesome.ttf in Resources */,
986 | 0C432D1126DA493ABCA84930 /* Foundation.ttf in Resources */,
987 | DCF52624B8204B4CACEE654B /* Ionicons.ttf in Resources */,
988 | E2E14626DAE6423A9F33322D /* MaterialCommunityIcons.ttf in Resources */,
989 | 279E427CFA5C4C9B8B357BCB /* MaterialIcons.ttf in Resources */,
990 | 122DB3927FB8411D97E7B694 /* Octicons.ttf in Resources */,
991 | 6FEF75FAA13D410594C0DDBD /* SimpleLineIcons.ttf in Resources */,
992 | 59FD68CA8EE6436B917BB92A /* Zocial.ttf in Resources */,
993 | );
994 | runOnlyForDeploymentPostprocessing = 0;
995 | };
996 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
997 | isa = PBXResourcesBuildPhase;
998 | buildActionMask = 2147483647;
999 | files = (
1000 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1001 | );
1002 | runOnlyForDeploymentPostprocessing = 0;
1003 | };
1004 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1005 | isa = PBXResourcesBuildPhase;
1006 | buildActionMask = 2147483647;
1007 | files = (
1008 | );
1009 | runOnlyForDeploymentPostprocessing = 0;
1010 | };
1011 | /* End PBXResourcesBuildPhase section */
1012 |
1013 | /* Begin PBXShellScriptBuildPhase section */
1014 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1015 | isa = PBXShellScriptBuildPhase;
1016 | buildActionMask = 2147483647;
1017 | files = (
1018 | );
1019 | inputPaths = (
1020 | );
1021 | name = "Bundle React Native code and images";
1022 | outputPaths = (
1023 | );
1024 | runOnlyForDeploymentPostprocessing = 0;
1025 | shellPath = /bin/sh;
1026 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1027 | };
1028 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1029 | isa = PBXShellScriptBuildPhase;
1030 | buildActionMask = 2147483647;
1031 | files = (
1032 | );
1033 | inputPaths = (
1034 | );
1035 | name = "Bundle React Native Code And Images";
1036 | outputPaths = (
1037 | );
1038 | runOnlyForDeploymentPostprocessing = 0;
1039 | shellPath = /bin/sh;
1040 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1041 | };
1042 | /* End PBXShellScriptBuildPhase section */
1043 |
1044 | /* Begin PBXSourcesBuildPhase section */
1045 | 00E356EA1AD99517003FC87E /* Sources */ = {
1046 | isa = PBXSourcesBuildPhase;
1047 | buildActionMask = 2147483647;
1048 | files = (
1049 | 00E356F31AD99517003FC87E /* mobileTests.m in Sources */,
1050 | );
1051 | runOnlyForDeploymentPostprocessing = 0;
1052 | };
1053 | 13B07F871A680F5B00A75B9A /* Sources */ = {
1054 | isa = PBXSourcesBuildPhase;
1055 | buildActionMask = 2147483647;
1056 | files = (
1057 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1058 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
1059 | );
1060 | runOnlyForDeploymentPostprocessing = 0;
1061 | };
1062 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1063 | isa = PBXSourcesBuildPhase;
1064 | buildActionMask = 2147483647;
1065 | files = (
1066 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1067 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1068 | );
1069 | runOnlyForDeploymentPostprocessing = 0;
1070 | };
1071 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1072 | isa = PBXSourcesBuildPhase;
1073 | buildActionMask = 2147483647;
1074 | files = (
1075 | 2DCD954D1E0B4F2C00145EB5 /* mobileTests.m in Sources */,
1076 | );
1077 | runOnlyForDeploymentPostprocessing = 0;
1078 | };
1079 | /* End PBXSourcesBuildPhase section */
1080 |
1081 | /* Begin PBXTargetDependency section */
1082 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1083 | isa = PBXTargetDependency;
1084 | target = 13B07F861A680F5B00A75B9A /* mobile */;
1085 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1086 | };
1087 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1088 | isa = PBXTargetDependency;
1089 | target = 2D02E47A1E0B4A5D006451C7 /* mobile-tvOS */;
1090 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1091 | };
1092 | /* End PBXTargetDependency section */
1093 |
1094 | /* Begin PBXVariantGroup section */
1095 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1096 | isa = PBXVariantGroup;
1097 | children = (
1098 | 13B07FB21A68108700A75B9A /* Base */,
1099 | );
1100 | name = LaunchScreen.xib;
1101 | path = mobile;
1102 | sourceTree = "";
1103 | };
1104 | /* End PBXVariantGroup section */
1105 |
1106 | /* Begin XCBuildConfiguration section */
1107 | 00E356F61AD99517003FC87E /* Debug */ = {
1108 | isa = XCBuildConfiguration;
1109 | buildSettings = {
1110 | BUNDLE_LOADER = "$(TEST_HOST)";
1111 | GCC_PREPROCESSOR_DEFINITIONS = (
1112 | "DEBUG=1",
1113 | "$(inherited)",
1114 | );
1115 | INFOPLIST_FILE = mobileTests/Info.plist;
1116 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1117 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1118 | OTHER_LDFLAGS = (
1119 | "-ObjC",
1120 | "-lc++",
1121 | );
1122 | PRODUCT_NAME = "$(TARGET_NAME)";
1123 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/mobile.app/mobile";
1124 | LIBRARY_SEARCH_PATHS = (
1125 | "$(inherited)",
1126 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1127 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1128 | );
1129 | HEADER_SEARCH_PATHS = (
1130 | "$(inherited)",
1131 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1132 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1133 | );
1134 | };
1135 | name = Debug;
1136 | };
1137 | 00E356F71AD99517003FC87E /* Release */ = {
1138 | isa = XCBuildConfiguration;
1139 | buildSettings = {
1140 | BUNDLE_LOADER = "$(TEST_HOST)";
1141 | COPY_PHASE_STRIP = NO;
1142 | INFOPLIST_FILE = mobileTests/Info.plist;
1143 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1144 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1145 | OTHER_LDFLAGS = (
1146 | "-ObjC",
1147 | "-lc++",
1148 | );
1149 | PRODUCT_NAME = "$(TARGET_NAME)";
1150 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/mobile.app/mobile";
1151 | LIBRARY_SEARCH_PATHS = (
1152 | "$(inherited)",
1153 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1154 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1155 | );
1156 | HEADER_SEARCH_PATHS = (
1157 | "$(inherited)",
1158 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1159 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1160 | );
1161 | };
1162 | name = Release;
1163 | };
1164 | 13B07F941A680F5B00A75B9A /* Debug */ = {
1165 | isa = XCBuildConfiguration;
1166 | buildSettings = {
1167 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1168 | CURRENT_PROJECT_VERSION = 1;
1169 | DEAD_CODE_STRIPPING = NO;
1170 | INFOPLIST_FILE = mobile/Info.plist;
1171 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1172 | OTHER_LDFLAGS = (
1173 | "$(inherited)",
1174 | "-ObjC",
1175 | "-lc++",
1176 | );
1177 | PRODUCT_NAME = mobile;
1178 | VERSIONING_SYSTEM = "apple-generic";
1179 | HEADER_SEARCH_PATHS = (
1180 | "$(inherited)",
1181 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1182 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1183 | );
1184 | };
1185 | name = Debug;
1186 | };
1187 | 13B07F951A680F5B00A75B9A /* Release */ = {
1188 | isa = XCBuildConfiguration;
1189 | buildSettings = {
1190 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1191 | CURRENT_PROJECT_VERSION = 1;
1192 | INFOPLIST_FILE = mobile/Info.plist;
1193 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1194 | OTHER_LDFLAGS = (
1195 | "$(inherited)",
1196 | "-ObjC",
1197 | "-lc++",
1198 | );
1199 | PRODUCT_NAME = mobile;
1200 | VERSIONING_SYSTEM = "apple-generic";
1201 | HEADER_SEARCH_PATHS = (
1202 | "$(inherited)",
1203 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1204 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1205 | );
1206 | };
1207 | name = Release;
1208 | };
1209 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1210 | isa = XCBuildConfiguration;
1211 | buildSettings = {
1212 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1213 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1214 | CLANG_ANALYZER_NONNULL = YES;
1215 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1216 | CLANG_WARN_INFINITE_RECURSION = YES;
1217 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1218 | DEBUG_INFORMATION_FORMAT = dwarf;
1219 | ENABLE_TESTABILITY = YES;
1220 | GCC_NO_COMMON_BLOCKS = YES;
1221 | INFOPLIST_FILE = "mobile-tvOS/Info.plist";
1222 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1223 | OTHER_LDFLAGS = (
1224 | "-ObjC",
1225 | "-lc++",
1226 | );
1227 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.mobile-tvOS";
1228 | PRODUCT_NAME = "$(TARGET_NAME)";
1229 | SDKROOT = appletvos;
1230 | TARGETED_DEVICE_FAMILY = 3;
1231 | TVOS_DEPLOYMENT_TARGET = 9.2;
1232 | LIBRARY_SEARCH_PATHS = (
1233 | "$(inherited)",
1234 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1235 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1236 | );
1237 | HEADER_SEARCH_PATHS = (
1238 | "$(inherited)",
1239 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1240 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1241 | );
1242 | };
1243 | name = Debug;
1244 | };
1245 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
1246 | isa = XCBuildConfiguration;
1247 | buildSettings = {
1248 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1249 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1250 | CLANG_ANALYZER_NONNULL = YES;
1251 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1252 | CLANG_WARN_INFINITE_RECURSION = YES;
1253 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1254 | COPY_PHASE_STRIP = NO;
1255 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1256 | GCC_NO_COMMON_BLOCKS = YES;
1257 | INFOPLIST_FILE = "mobile-tvOS/Info.plist";
1258 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1259 | OTHER_LDFLAGS = (
1260 | "-ObjC",
1261 | "-lc++",
1262 | );
1263 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.mobile-tvOS";
1264 | PRODUCT_NAME = "$(TARGET_NAME)";
1265 | SDKROOT = appletvos;
1266 | TARGETED_DEVICE_FAMILY = 3;
1267 | TVOS_DEPLOYMENT_TARGET = 9.2;
1268 | LIBRARY_SEARCH_PATHS = (
1269 | "$(inherited)",
1270 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1271 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1272 | );
1273 | HEADER_SEARCH_PATHS = (
1274 | "$(inherited)",
1275 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager",
1276 | "$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
1277 | );
1278 | };
1279 | name = Release;
1280 | };
1281 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1282 | isa = XCBuildConfiguration;
1283 | buildSettings = {
1284 | BUNDLE_LOADER = "$(TEST_HOST)";
1285 | CLANG_ANALYZER_NONNULL = YES;
1286 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1287 | CLANG_WARN_INFINITE_RECURSION = YES;
1288 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1289 | DEBUG_INFORMATION_FORMAT = dwarf;
1290 | ENABLE_TESTABILITY = YES;
1291 | GCC_NO_COMMON_BLOCKS = YES;
1292 | INFOPLIST_FILE = "mobile-tvOSTests/Info.plist";
1293 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1294 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.mobile-tvOSTests";
1295 | PRODUCT_NAME = "$(TARGET_NAME)";
1296 | SDKROOT = appletvos;
1297 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/mobile-tvOS.app/mobile-tvOS";
1298 | TVOS_DEPLOYMENT_TARGET = 10.1;
1299 | LIBRARY_SEARCH_PATHS = (
1300 | "$(inherited)",
1301 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1302 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1303 | );
1304 | };
1305 | name = Debug;
1306 | };
1307 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1308 | isa = XCBuildConfiguration;
1309 | buildSettings = {
1310 | BUNDLE_LOADER = "$(TEST_HOST)";
1311 | CLANG_ANALYZER_NONNULL = YES;
1312 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1313 | CLANG_WARN_INFINITE_RECURSION = YES;
1314 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
1315 | COPY_PHASE_STRIP = NO;
1316 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1317 | GCC_NO_COMMON_BLOCKS = YES;
1318 | INFOPLIST_FILE = "mobile-tvOSTests/Info.plist";
1319 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1320 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.mobile-tvOSTests";
1321 | PRODUCT_NAME = "$(TARGET_NAME)";
1322 | SDKROOT = appletvos;
1323 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/mobile-tvOS.app/mobile-tvOS";
1324 | TVOS_DEPLOYMENT_TARGET = 10.1;
1325 | LIBRARY_SEARCH_PATHS = (
1326 | "$(inherited)",
1327 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1328 | "\"$(SRCROOT)/$(TARGET_NAME)\"",
1329 | );
1330 | };
1331 | name = Release;
1332 | };
1333 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
1334 | isa = XCBuildConfiguration;
1335 | buildSettings = {
1336 | ALWAYS_SEARCH_USER_PATHS = NO;
1337 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1338 | CLANG_CXX_LIBRARY = "libc++";
1339 | CLANG_ENABLE_MODULES = YES;
1340 | CLANG_ENABLE_OBJC_ARC = YES;
1341 | CLANG_WARN_BOOL_CONVERSION = YES;
1342 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1343 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1344 | CLANG_WARN_EMPTY_BODY = YES;
1345 | CLANG_WARN_ENUM_CONVERSION = YES;
1346 | CLANG_WARN_INT_CONVERSION = YES;
1347 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1348 | CLANG_WARN_UNREACHABLE_CODE = YES;
1349 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1350 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1351 | COPY_PHASE_STRIP = NO;
1352 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1353 | GCC_C_LANGUAGE_STANDARD = gnu99;
1354 | GCC_DYNAMIC_NO_PIC = NO;
1355 | GCC_OPTIMIZATION_LEVEL = 0;
1356 | GCC_PREPROCESSOR_DEFINITIONS = (
1357 | "DEBUG=1",
1358 | "$(inherited)",
1359 | );
1360 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1361 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1362 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1363 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1364 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1365 | GCC_WARN_UNUSED_FUNCTION = YES;
1366 | GCC_WARN_UNUSED_VARIABLE = YES;
1367 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1368 | MTL_ENABLE_DEBUG_INFO = YES;
1369 | ONLY_ACTIVE_ARCH = YES;
1370 | SDKROOT = iphoneos;
1371 | };
1372 | name = Debug;
1373 | };
1374 | 83CBBA211A601CBA00E9B192 /* Release */ = {
1375 | isa = XCBuildConfiguration;
1376 | buildSettings = {
1377 | ALWAYS_SEARCH_USER_PATHS = NO;
1378 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1379 | CLANG_CXX_LIBRARY = "libc++";
1380 | CLANG_ENABLE_MODULES = YES;
1381 | CLANG_ENABLE_OBJC_ARC = YES;
1382 | CLANG_WARN_BOOL_CONVERSION = YES;
1383 | CLANG_WARN_CONSTANT_CONVERSION = YES;
1384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1385 | CLANG_WARN_EMPTY_BODY = YES;
1386 | CLANG_WARN_ENUM_CONVERSION = YES;
1387 | CLANG_WARN_INT_CONVERSION = YES;
1388 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1389 | CLANG_WARN_UNREACHABLE_CODE = YES;
1390 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1391 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1392 | COPY_PHASE_STRIP = YES;
1393 | ENABLE_NS_ASSERTIONS = NO;
1394 | ENABLE_STRICT_OBJC_MSGSEND = YES;
1395 | GCC_C_LANGUAGE_STANDARD = gnu99;
1396 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1397 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1398 | GCC_WARN_UNDECLARED_SELECTOR = YES;
1399 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1400 | GCC_WARN_UNUSED_FUNCTION = YES;
1401 | GCC_WARN_UNUSED_VARIABLE = YES;
1402 | IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1403 | MTL_ENABLE_DEBUG_INFO = NO;
1404 | SDKROOT = iphoneos;
1405 | VALIDATE_PRODUCT = YES;
1406 | };
1407 | name = Release;
1408 | };
1409 | /* End XCBuildConfiguration section */
1410 |
1411 | /* Begin XCConfigurationList section */
1412 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "mobileTests" */ = {
1413 | isa = XCConfigurationList;
1414 | buildConfigurations = (
1415 | 00E356F61AD99517003FC87E /* Debug */,
1416 | 00E356F71AD99517003FC87E /* Release */,
1417 | );
1418 | defaultConfigurationIsVisible = 0;
1419 | defaultConfigurationName = Release;
1420 | };
1421 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "mobile" */ = {
1422 | isa = XCConfigurationList;
1423 | buildConfigurations = (
1424 | 13B07F941A680F5B00A75B9A /* Debug */,
1425 | 13B07F951A680F5B00A75B9A /* Release */,
1426 | );
1427 | defaultConfigurationIsVisible = 0;
1428 | defaultConfigurationName = Release;
1429 | };
1430 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "mobile-tvOS" */ = {
1431 | isa = XCConfigurationList;
1432 | buildConfigurations = (
1433 | 2D02E4971E0B4A5E006451C7 /* Debug */,
1434 | 2D02E4981E0B4A5E006451C7 /* Release */,
1435 | );
1436 | defaultConfigurationIsVisible = 0;
1437 | defaultConfigurationName = Release;
1438 | };
1439 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "mobile-tvOSTests" */ = {
1440 | isa = XCConfigurationList;
1441 | buildConfigurations = (
1442 | 2D02E4991E0B4A5E006451C7 /* Debug */,
1443 | 2D02E49A1E0B4A5E006451C7 /* Release */,
1444 | );
1445 | defaultConfigurationIsVisible = 0;
1446 | defaultConfigurationName = Release;
1447 | };
1448 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "mobile" */ = {
1449 | isa = XCConfigurationList;
1450 | buildConfigurations = (
1451 | 83CBBA201A601CBA00E9B192 /* Debug */,
1452 | 83CBBA211A601CBA00E9B192 /* Release */,
1453 | );
1454 | defaultConfigurationIsVisible = 0;
1455 | defaultConfigurationName = Release;
1456 | };
1457 | /* End XCConfigurationList section */
1458 | };
1459 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1460 | }
1461 |
--------------------------------------------------------------------------------