├── .gitignore ├── LICENSE ├── README.md ├── TodoList ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── todolist │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── TodoList-tvOS │ │ └── Info.plist │ ├── TodoList-tvOSTests │ │ └── Info.plist │ ├── TodoList.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TodoList-tvOS.xcscheme │ │ │ └── TodoList.xcscheme │ ├── TodoList │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── TodoListTests │ │ ├── Info.plist │ │ └── TodoListTests.m ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── About.android.js │ │ ├── About.ios.js │ │ ├── AddTodo.js │ │ ├── TodoItem.js │ │ └── TodoList.js │ ├── images │ │ ├── check.png │ │ ├── check@2x.png │ │ ├── check@3x.png │ │ ├── star.png │ │ ├── star@2x.png │ │ └── star@3x.png │ └── lib │ │ └── api.js └── yarn.lock └── server ├── .gitignore ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 NanoHop 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Native Todo 2 | 3 | A getting started project for React Native 4 | -------------------------------------------------------------------------------- /TodoList/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /TodoList/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /TodoList/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.65.0 55 | -------------------------------------------------------------------------------- /TodoList/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /TodoList/.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 | -------------------------------------------------------------------------------- /TodoList/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /TodoList/App.js: -------------------------------------------------------------------------------- 1 | 2 | import React, { Component } from 'react'; 3 | import { 4 | Platform, 5 | StyleSheet, 6 | Text, 7 | View 8 | } from 'react-native'; 9 | 10 | import { TabNavigator, StackNavigator } from 'react-navigation' 11 | 12 | import ToDoList from './src/components/TodoList' 13 | import About from './src/components/About' 14 | import AddTodo from './src/components/AddTodo' 15 | 16 | const TodoNav = StackNavigator({ 17 | TodoList: { screen: ToDoList }, 18 | AddTodo: { screen: AddTodo } 19 | }, { 20 | mode: 'modal' 21 | }) 22 | 23 | const TabNav = TabNavigator({ 24 | TodoNav: { screen: TodoNav }, 25 | About: { screen: About }, 26 | }, { 27 | tabBarPosition: 'bottom', 28 | tabBarOptions: { 29 | activeTintColor: '#0066cc' 30 | }, 31 | ...TabNavigator.Presets.iOSBottomTabs 32 | }) 33 | 34 | type Props = {}; 35 | export default class App extends Component { 36 | render() { 37 | return ( 38 | 39 | ); 40 | } 41 | } 42 | 43 | const styles = StyleSheet.create({ 44 | 45 | }); 46 | -------------------------------------------------------------------------------- /TodoList/__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 | -------------------------------------------------------------------------------- /TodoList/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.todolist", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.todolist", 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 | -------------------------------------------------------------------------------- /TodoList/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.todolist" 102 | minSdkVersion 16 103 | targetSdkVersion 22 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile fileTree(dir: "libs", include: ["*.jar"]) 141 | compile "com.android.support:appcompat-v7:23.0.1" 142 | compile "com.facebook.react:react-native:+" // From node_modules 143 | } 144 | 145 | // Run this once to be able to run the application with BUCK 146 | // puts all compile dependencies into folder libs for BUCK to use 147 | task copyDownloadableDepsToLibs(type: Copy) { 148 | from configurations.compile 149 | into 'libs' 150 | } 151 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/java/com/todolist/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.todolist; 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 "TodoList"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TodoList/android/app/src/main/java/com/todolist/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.todolist; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage() 26 | ); 27 | } 28 | 29 | @Override 30 | protected String getJSMainModuleName() { 31 | return "index"; 32 | } 33 | }; 34 | 35 | @Override 36 | public ReactNativeHost getReactNativeHost() { 37 | return mReactNativeHost; 38 | } 39 | 40 | @Override 41 | public void onCreate() { 42 | super.onCreate(); 43 | SoLoader.init(this, /* native exopackage */ false); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TodoList 3 | 4 | -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /TodoList/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 | -------------------------------------------------------------------------------- /TodoList/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'TodoList' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /TodoList/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TodoList", 3 | "displayName": "TodoList" 4 | } -------------------------------------------------------------------------------- /TodoList/index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './App'; 3 | 4 | console.disableYellowBox = true; 5 | 6 | AppRegistry.registerComponent('TodoList', () => App); 7 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList-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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList-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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList.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 /* TodoListTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* TodoListTests.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 /* TodoListTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* TodoListTests.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 | 7FCD938EFADB45AABFF8FF03 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 11501B4B92394A64A45E91D8 /* Entypo.ttf */; }; 40 | 052D5F4BD4884F949650D4DC /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4F811FE0346A46C492B70BF3 /* EvilIcons.ttf */; }; 41 | FFB6978769A24460AE1743D7 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 29DAE44307D14A85BCF4EF4B /* FontAwesome.ttf */; }; 42 | E6E47EE82D64427FAC61E41F /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 946E50552DFF4948AD41431E /* Foundation.ttf */; }; 43 | D79003F86FCA4B48BCE70962 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 25A4C9E376E7454490B0E622 /* Ionicons.ttf */; }; 44 | 5697CCA81C164E1582D5A599 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6CEA17B8935845FD8524C252 /* MaterialIcons.ttf */; }; 45 | 1F20A65066E0421689AAB45D /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A76205268E764BF1951AA39B /* Octicons.ttf */; }; 46 | FEF2B5B929BD415884B4F700 /* OFL.txt in Resources */ = {isa = PBXBuildFile; fileRef = 8EB41128238A497E98253A9A /* OFL.txt */; }; 47 | 33CA243F80CB49E3B09F1B89 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5CF85ADE34C24D48BF03D49A /* Roboto_medium.ttf */; }; 48 | A526FB73846A4804A7ABE33E /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D8A7990747514E6AAED3F1D7 /* Roboto.ttf */; }; 49 | 1E3A43B159E14080A9D9A142 /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2816768CF8BE40C1BEFBB8C4 /* rubicon-icon-font.ttf */; }; 50 | B0A44DF9BB7C439BA19DBB1A /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 631E967629C4438C8FDE352B /* SimpleLineIcons.ttf */; }; 51 | D7D3AA42C366480087D25EF2 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 65AA25BAF57445AC98B317B7 /* Zocial.ttf */; }; 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 = TodoList; 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 = "TodoList-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 /* TodoListTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TodoListTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 282 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 283 | 00E356F21AD99517003FC87E /* TodoListTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TodoListTests.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 /* TodoList.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TodoList.app; sourceTree = BUILT_PRODUCTS_DIR; }; 287 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = TodoList/AppDelegate.h; sourceTree = ""; }; 288 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = TodoList/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 = TodoList/Images.xcassets; sourceTree = ""; }; 291 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = TodoList/Info.plist; sourceTree = ""; }; 292 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = TodoList/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 /* TodoList-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "TodoList-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 295 | 2D02E4901E0B4A5D006451C7 /* TodoList-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "TodoList-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 | 11501B4B92394A64A45E91D8 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 302 | 4F811FE0346A46C492B70BF3 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 303 | 29DAE44307D14A85BCF4EF4B /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 304 | 946E50552DFF4948AD41431E /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 305 | 25A4C9E376E7454490B0E622 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 306 | 6CEA17B8935845FD8524C252 /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 307 | A76205268E764BF1951AA39B /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 308 | 8EB41128238A497E98253A9A /* OFL.txt */ = {isa = PBXFileReference; name = "OFL.txt"; path = "../node_modules/native-base/Fonts/OFL.txt"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 309 | 5CF85ADE34C24D48BF03D49A /* Roboto_medium.ttf */ = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 310 | D8A7990747514E6AAED3F1D7 /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 311 | 2816768CF8BE40C1BEFBB8C4 /* rubicon-icon-font.ttf */ = {isa = PBXFileReference; name = "rubicon-icon-font.ttf"; path = "../node_modules/native-base/Fonts/rubicon-icon-font.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 312 | 631E967629C4438C8FDE352B /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 313 | 65AA25BAF57445AC98B317B7 /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 314 | /* End PBXFileReference section */ 315 | 316 | /* Begin PBXFrameworksBuildPhase section */ 317 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 318 | isa = PBXFrameworksBuildPhase; 319 | buildActionMask = 2147483647; 320 | files = ( 321 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | }; 325 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 326 | isa = PBXFrameworksBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 330 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 331 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 332 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 333 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 334 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 335 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 336 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 337 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 338 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 339 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 340 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 341 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 342 | ); 343 | runOnlyForDeploymentPostprocessing = 0; 344 | }; 345 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 346 | isa = PBXFrameworksBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 350 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 351 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 352 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 353 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 354 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 355 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 356 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | }; 360 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 361 | isa = PBXFrameworksBuildPhase; 362 | buildActionMask = 2147483647; 363 | files = ( 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | /* End PBXFrameworksBuildPhase section */ 368 | 369 | /* Begin PBXGroup section */ 370 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 371 | isa = PBXGroup; 372 | children = ( 373 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 374 | ); 375 | name = Products; 376 | sourceTree = ""; 377 | }; 378 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 379 | isa = PBXGroup; 380 | children = ( 381 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 382 | ); 383 | name = Products; 384 | sourceTree = ""; 385 | }; 386 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 387 | isa = PBXGroup; 388 | children = ( 389 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 390 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 391 | ); 392 | name = Products; 393 | sourceTree = ""; 394 | }; 395 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 396 | isa = PBXGroup; 397 | children = ( 398 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 399 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 400 | ); 401 | name = Products; 402 | sourceTree = ""; 403 | }; 404 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 405 | isa = PBXGroup; 406 | children = ( 407 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 408 | ); 409 | name = Products; 410 | sourceTree = ""; 411 | }; 412 | 00E356EF1AD99517003FC87E /* TodoListTests */ = { 413 | isa = PBXGroup; 414 | children = ( 415 | 00E356F21AD99517003FC87E /* TodoListTests.m */, 416 | 00E356F01AD99517003FC87E /* Supporting Files */, 417 | ); 418 | path = TodoListTests; 419 | sourceTree = ""; 420 | }; 421 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 422 | isa = PBXGroup; 423 | children = ( 424 | 00E356F11AD99517003FC87E /* Info.plist */, 425 | ); 426 | name = "Supporting Files"; 427 | sourceTree = ""; 428 | }; 429 | 139105B71AF99BAD00B5F7CC /* Products */ = { 430 | isa = PBXGroup; 431 | children = ( 432 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 433 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 434 | ); 435 | name = Products; 436 | sourceTree = ""; 437 | }; 438 | 139FDEE71B06529A00C62182 /* Products */ = { 439 | isa = PBXGroup; 440 | children = ( 441 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 442 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 443 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 444 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 445 | ); 446 | name = Products; 447 | sourceTree = ""; 448 | }; 449 | 13B07FAE1A68108700A75B9A /* TodoList */ = { 450 | isa = PBXGroup; 451 | children = ( 452 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 453 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 454 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 455 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 456 | 13B07FB61A68108700A75B9A /* Info.plist */, 457 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 458 | 13B07FB71A68108700A75B9A /* main.m */, 459 | ); 460 | name = TodoList; 461 | sourceTree = ""; 462 | }; 463 | 146834001AC3E56700842450 /* Products */ = { 464 | isa = PBXGroup; 465 | children = ( 466 | 146834041AC3E56700842450 /* libReact.a */, 467 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 468 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 469 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 470 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 471 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 472 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 473 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */, 474 | ); 475 | name = Products; 476 | sourceTree = ""; 477 | }; 478 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 479 | isa = PBXGroup; 480 | children = ( 481 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 482 | ); 483 | name = Frameworks; 484 | sourceTree = ""; 485 | }; 486 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 487 | isa = PBXGroup; 488 | children = ( 489 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 490 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 491 | ); 492 | name = Products; 493 | sourceTree = ""; 494 | }; 495 | 78C398B11ACF4ADC00677621 /* Products */ = { 496 | isa = PBXGroup; 497 | children = ( 498 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 499 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 500 | ); 501 | name = Products; 502 | sourceTree = ""; 503 | }; 504 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 505 | isa = PBXGroup; 506 | children = ( 507 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 508 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 509 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 510 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 511 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 512 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 513 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 514 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 515 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 516 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 517 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 518 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 519 | ); 520 | name = Libraries; 521 | sourceTree = ""; 522 | }; 523 | 832341B11AAA6A8300B99B32 /* Products */ = { 524 | isa = PBXGroup; 525 | children = ( 526 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 527 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 528 | ); 529 | name = Products; 530 | sourceTree = ""; 531 | }; 532 | 83CBB9F61A601CBA00E9B192 = { 533 | isa = PBXGroup; 534 | children = ( 535 | 13B07FAE1A68108700A75B9A /* TodoList */, 536 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 537 | 00E356EF1AD99517003FC87E /* TodoListTests */, 538 | 83CBBA001A601CBA00E9B192 /* Products */, 539 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 540 | A2C6347242E340AEAB1FDE88 /* Resources */, 541 | ); 542 | indentWidth = 2; 543 | sourceTree = ""; 544 | tabWidth = 2; 545 | usesTabs = 0; 546 | }; 547 | 83CBBA001A601CBA00E9B192 /* Products */ = { 548 | isa = PBXGroup; 549 | children = ( 550 | 13B07F961A680F5B00A75B9A /* TodoList.app */, 551 | 00E356EE1AD99517003FC87E /* TodoListTests.xctest */, 552 | 2D02E47B1E0B4A5D006451C7 /* TodoList-tvOS.app */, 553 | 2D02E4901E0B4A5D006451C7 /* TodoList-tvOSTests.xctest */, 554 | ); 555 | name = Products; 556 | sourceTree = ""; 557 | }; 558 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 559 | isa = PBXGroup; 560 | children = ( 561 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 562 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 563 | ); 564 | name = Products; 565 | sourceTree = ""; 566 | }; 567 | A2C6347242E340AEAB1FDE88 /* Resources */ = { 568 | isa = PBXGroup; 569 | children = ( 570 | 11501B4B92394A64A45E91D8 /* Entypo.ttf */, 571 | 4F811FE0346A46C492B70BF3 /* EvilIcons.ttf */, 572 | 29DAE44307D14A85BCF4EF4B /* FontAwesome.ttf */, 573 | 946E50552DFF4948AD41431E /* Foundation.ttf */, 574 | 25A4C9E376E7454490B0E622 /* Ionicons.ttf */, 575 | 6CEA17B8935845FD8524C252 /* MaterialIcons.ttf */, 576 | A76205268E764BF1951AA39B /* Octicons.ttf */, 577 | 8EB41128238A497E98253A9A /* OFL.txt */, 578 | 5CF85ADE34C24D48BF03D49A /* Roboto_medium.ttf */, 579 | D8A7990747514E6AAED3F1D7 /* Roboto.ttf */, 580 | 2816768CF8BE40C1BEFBB8C4 /* rubicon-icon-font.ttf */, 581 | 631E967629C4438C8FDE352B /* SimpleLineIcons.ttf */, 582 | 65AA25BAF57445AC98B317B7 /* Zocial.ttf */, 583 | ); 584 | name = Resources; 585 | path = ""; 586 | sourceTree = ""; 587 | }; 588 | /* End PBXGroup section */ 589 | 590 | /* Begin PBXNativeTarget section */ 591 | 00E356ED1AD99517003FC87E /* TodoListTests */ = { 592 | isa = PBXNativeTarget; 593 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "TodoListTests" */; 594 | buildPhases = ( 595 | 00E356EA1AD99517003FC87E /* Sources */, 596 | 00E356EB1AD99517003FC87E /* Frameworks */, 597 | 00E356EC1AD99517003FC87E /* Resources */, 598 | ); 599 | buildRules = ( 600 | ); 601 | dependencies = ( 602 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 603 | ); 604 | name = TodoListTests; 605 | productName = TodoListTests; 606 | productReference = 00E356EE1AD99517003FC87E /* TodoListTests.xctest */; 607 | productType = "com.apple.product-type.bundle.unit-test"; 608 | }; 609 | 13B07F861A680F5B00A75B9A /* TodoList */ = { 610 | isa = PBXNativeTarget; 611 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "TodoList" */; 612 | buildPhases = ( 613 | 13B07F871A680F5B00A75B9A /* Sources */, 614 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 615 | 13B07F8E1A680F5B00A75B9A /* Resources */, 616 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 617 | ); 618 | buildRules = ( 619 | ); 620 | dependencies = ( 621 | ); 622 | name = TodoList; 623 | productName = "Hello World"; 624 | productReference = 13B07F961A680F5B00A75B9A /* TodoList.app */; 625 | productType = "com.apple.product-type.application"; 626 | }; 627 | 2D02E47A1E0B4A5D006451C7 /* TodoList-tvOS */ = { 628 | isa = PBXNativeTarget; 629 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TodoList-tvOS" */; 630 | buildPhases = ( 631 | 2D02E4771E0B4A5D006451C7 /* Sources */, 632 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 633 | 2D02E4791E0B4A5D006451C7 /* Resources */, 634 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 635 | ); 636 | buildRules = ( 637 | ); 638 | dependencies = ( 639 | ); 640 | name = "TodoList-tvOS"; 641 | productName = "TodoList-tvOS"; 642 | productReference = 2D02E47B1E0B4A5D006451C7 /* TodoList-tvOS.app */; 643 | productType = "com.apple.product-type.application"; 644 | }; 645 | 2D02E48F1E0B4A5D006451C7 /* TodoList-tvOSTests */ = { 646 | isa = PBXNativeTarget; 647 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TodoList-tvOSTests" */; 648 | buildPhases = ( 649 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 650 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 651 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 652 | ); 653 | buildRules = ( 654 | ); 655 | dependencies = ( 656 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 657 | ); 658 | name = "TodoList-tvOSTests"; 659 | productName = "TodoList-tvOSTests"; 660 | productReference = 2D02E4901E0B4A5D006451C7 /* TodoList-tvOSTests.xctest */; 661 | productType = "com.apple.product-type.bundle.unit-test"; 662 | }; 663 | /* End PBXNativeTarget section */ 664 | 665 | /* Begin PBXProject section */ 666 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 667 | isa = PBXProject; 668 | attributes = { 669 | LastUpgradeCheck = 610; 670 | ORGANIZATIONNAME = Facebook; 671 | TargetAttributes = { 672 | 00E356ED1AD99517003FC87E = { 673 | CreatedOnToolsVersion = 6.2; 674 | TestTargetID = 13B07F861A680F5B00A75B9A; 675 | }; 676 | 2D02E47A1E0B4A5D006451C7 = { 677 | CreatedOnToolsVersion = 8.2.1; 678 | ProvisioningStyle = Automatic; 679 | }; 680 | 2D02E48F1E0B4A5D006451C7 = { 681 | CreatedOnToolsVersion = 8.2.1; 682 | ProvisioningStyle = Automatic; 683 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 684 | }; 685 | }; 686 | }; 687 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "TodoList" */; 688 | compatibilityVersion = "Xcode 3.2"; 689 | developmentRegion = English; 690 | hasScannedForEncodings = 0; 691 | knownRegions = ( 692 | en, 693 | Base, 694 | ); 695 | mainGroup = 83CBB9F61A601CBA00E9B192; 696 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 697 | projectDirPath = ""; 698 | projectReferences = ( 699 | { 700 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 701 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 702 | }, 703 | { 704 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 705 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 706 | }, 707 | { 708 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 709 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 710 | }, 711 | { 712 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 713 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 714 | }, 715 | { 716 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 717 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 718 | }, 719 | { 720 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 721 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 722 | }, 723 | { 724 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 725 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 726 | }, 727 | { 728 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 729 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 730 | }, 731 | { 732 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 733 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 734 | }, 735 | { 736 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 737 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 738 | }, 739 | { 740 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 741 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 742 | }, 743 | { 744 | ProductGroup = 146834001AC3E56700842450 /* Products */; 745 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 746 | }, 747 | ); 748 | projectRoot = ""; 749 | targets = ( 750 | 13B07F861A680F5B00A75B9A /* TodoList */, 751 | 00E356ED1AD99517003FC87E /* TodoListTests */, 752 | 2D02E47A1E0B4A5D006451C7 /* TodoList-tvOS */, 753 | 2D02E48F1E0B4A5D006451C7 /* TodoList-tvOSTests */, 754 | ); 755 | }; 756 | /* End PBXProject section */ 757 | 758 | /* Begin PBXReferenceProxy section */ 759 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 760 | isa = PBXReferenceProxy; 761 | fileType = archive.ar; 762 | path = libRCTActionSheet.a; 763 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 764 | sourceTree = BUILT_PRODUCTS_DIR; 765 | }; 766 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 767 | isa = PBXReferenceProxy; 768 | fileType = archive.ar; 769 | path = libRCTGeolocation.a; 770 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 771 | sourceTree = BUILT_PRODUCTS_DIR; 772 | }; 773 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 774 | isa = PBXReferenceProxy; 775 | fileType = archive.ar; 776 | path = libRCTImage.a; 777 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 778 | sourceTree = BUILT_PRODUCTS_DIR; 779 | }; 780 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 781 | isa = PBXReferenceProxy; 782 | fileType = archive.ar; 783 | path = libRCTNetwork.a; 784 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 785 | sourceTree = BUILT_PRODUCTS_DIR; 786 | }; 787 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 788 | isa = PBXReferenceProxy; 789 | fileType = archive.ar; 790 | path = libRCTVibration.a; 791 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 792 | sourceTree = BUILT_PRODUCTS_DIR; 793 | }; 794 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 795 | isa = PBXReferenceProxy; 796 | fileType = archive.ar; 797 | path = libRCTSettings.a; 798 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 799 | sourceTree = BUILT_PRODUCTS_DIR; 800 | }; 801 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 802 | isa = PBXReferenceProxy; 803 | fileType = archive.ar; 804 | path = libRCTWebSocket.a; 805 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 806 | sourceTree = BUILT_PRODUCTS_DIR; 807 | }; 808 | 146834041AC3E56700842450 /* libReact.a */ = { 809 | isa = PBXReferenceProxy; 810 | fileType = archive.ar; 811 | path = libReact.a; 812 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 813 | sourceTree = BUILT_PRODUCTS_DIR; 814 | }; 815 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 816 | isa = PBXReferenceProxy; 817 | fileType = archive.ar; 818 | path = "libRCTBlob-tvOS.a"; 819 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 820 | sourceTree = BUILT_PRODUCTS_DIR; 821 | }; 822 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 823 | isa = PBXReferenceProxy; 824 | fileType = archive.ar; 825 | path = libfishhook.a; 826 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 827 | sourceTree = BUILT_PRODUCTS_DIR; 828 | }; 829 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 830 | isa = PBXReferenceProxy; 831 | fileType = archive.ar; 832 | path = "libfishhook-tvOS.a"; 833 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 834 | sourceTree = BUILT_PRODUCTS_DIR; 835 | }; 836 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 837 | isa = PBXReferenceProxy; 838 | fileType = archive.ar; 839 | path = "libRCTImage-tvOS.a"; 840 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 841 | sourceTree = BUILT_PRODUCTS_DIR; 842 | }; 843 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 844 | isa = PBXReferenceProxy; 845 | fileType = archive.ar; 846 | path = "libRCTLinking-tvOS.a"; 847 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 848 | sourceTree = BUILT_PRODUCTS_DIR; 849 | }; 850 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 851 | isa = PBXReferenceProxy; 852 | fileType = archive.ar; 853 | path = "libRCTNetwork-tvOS.a"; 854 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 855 | sourceTree = BUILT_PRODUCTS_DIR; 856 | }; 857 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 858 | isa = PBXReferenceProxy; 859 | fileType = archive.ar; 860 | path = "libRCTSettings-tvOS.a"; 861 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 862 | sourceTree = BUILT_PRODUCTS_DIR; 863 | }; 864 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 865 | isa = PBXReferenceProxy; 866 | fileType = archive.ar; 867 | path = "libRCTText-tvOS.a"; 868 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 869 | sourceTree = BUILT_PRODUCTS_DIR; 870 | }; 871 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 872 | isa = PBXReferenceProxy; 873 | fileType = archive.ar; 874 | path = "libRCTWebSocket-tvOS.a"; 875 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 876 | sourceTree = BUILT_PRODUCTS_DIR; 877 | }; 878 | 3DAD3EA31DF850E9000B6D8A /* libReact-tvOS.a */ = { 879 | isa = PBXReferenceProxy; 880 | fileType = archive.ar; 881 | path = "libReact-tvOS.a"; 882 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 883 | sourceTree = BUILT_PRODUCTS_DIR; 884 | }; 885 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 886 | isa = PBXReferenceProxy; 887 | fileType = archive.ar; 888 | path = libyoga.a; 889 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 890 | sourceTree = BUILT_PRODUCTS_DIR; 891 | }; 892 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 893 | isa = PBXReferenceProxy; 894 | fileType = archive.ar; 895 | path = libyoga.a; 896 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 897 | sourceTree = BUILT_PRODUCTS_DIR; 898 | }; 899 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 900 | isa = PBXReferenceProxy; 901 | fileType = archive.ar; 902 | path = libcxxreact.a; 903 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 904 | sourceTree = BUILT_PRODUCTS_DIR; 905 | }; 906 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 907 | isa = PBXReferenceProxy; 908 | fileType = archive.ar; 909 | path = libcxxreact.a; 910 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 911 | sourceTree = BUILT_PRODUCTS_DIR; 912 | }; 913 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 914 | isa = PBXReferenceProxy; 915 | fileType = archive.ar; 916 | path = libjschelpers.a; 917 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 918 | sourceTree = BUILT_PRODUCTS_DIR; 919 | }; 920 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 921 | isa = PBXReferenceProxy; 922 | fileType = archive.ar; 923 | path = libjschelpers.a; 924 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 925 | sourceTree = BUILT_PRODUCTS_DIR; 926 | }; 927 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 928 | isa = PBXReferenceProxy; 929 | fileType = archive.ar; 930 | path = libRCTAnimation.a; 931 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 932 | sourceTree = BUILT_PRODUCTS_DIR; 933 | }; 934 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 935 | isa = PBXReferenceProxy; 936 | fileType = archive.ar; 937 | path = libRCTAnimation.a; 938 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 939 | sourceTree = BUILT_PRODUCTS_DIR; 940 | }; 941 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 942 | isa = PBXReferenceProxy; 943 | fileType = archive.ar; 944 | path = libRCTLinking.a; 945 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 946 | sourceTree = BUILT_PRODUCTS_DIR; 947 | }; 948 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 949 | isa = PBXReferenceProxy; 950 | fileType = archive.ar; 951 | path = libRCTText.a; 952 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 953 | sourceTree = BUILT_PRODUCTS_DIR; 954 | }; 955 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 956 | isa = PBXReferenceProxy; 957 | fileType = archive.ar; 958 | path = libRCTBlob.a; 959 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 960 | sourceTree = BUILT_PRODUCTS_DIR; 961 | }; 962 | /* End PBXReferenceProxy section */ 963 | 964 | /* Begin PBXResourcesBuildPhase section */ 965 | 00E356EC1AD99517003FC87E /* Resources */ = { 966 | isa = PBXResourcesBuildPhase; 967 | buildActionMask = 2147483647; 968 | files = ( 969 | ); 970 | runOnlyForDeploymentPostprocessing = 0; 971 | }; 972 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 973 | isa = PBXResourcesBuildPhase; 974 | buildActionMask = 2147483647; 975 | files = ( 976 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 977 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 978 | 7FCD938EFADB45AABFF8FF03 /* Entypo.ttf in Resources */, 979 | 052D5F4BD4884F949650D4DC /* EvilIcons.ttf in Resources */, 980 | FFB6978769A24460AE1743D7 /* FontAwesome.ttf in Resources */, 981 | E6E47EE82D64427FAC61E41F /* Foundation.ttf in Resources */, 982 | D79003F86FCA4B48BCE70962 /* Ionicons.ttf in Resources */, 983 | 5697CCA81C164E1582D5A599 /* MaterialIcons.ttf in Resources */, 984 | 1F20A65066E0421689AAB45D /* Octicons.ttf in Resources */, 985 | FEF2B5B929BD415884B4F700 /* OFL.txt in Resources */, 986 | 33CA243F80CB49E3B09F1B89 /* Roboto_medium.ttf in Resources */, 987 | A526FB73846A4804A7ABE33E /* Roboto.ttf in Resources */, 988 | 1E3A43B159E14080A9D9A142 /* rubicon-icon-font.ttf in Resources */, 989 | B0A44DF9BB7C439BA19DBB1A /* SimpleLineIcons.ttf in Resources */, 990 | D7D3AA42C366480087D25EF2 /* Zocial.ttf in Resources */, 991 | ); 992 | runOnlyForDeploymentPostprocessing = 0; 993 | }; 994 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 995 | isa = PBXResourcesBuildPhase; 996 | buildActionMask = 2147483647; 997 | files = ( 998 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 999 | ); 1000 | runOnlyForDeploymentPostprocessing = 0; 1001 | }; 1002 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1003 | isa = PBXResourcesBuildPhase; 1004 | buildActionMask = 2147483647; 1005 | files = ( 1006 | ); 1007 | runOnlyForDeploymentPostprocessing = 0; 1008 | }; 1009 | /* End PBXResourcesBuildPhase section */ 1010 | 1011 | /* Begin PBXShellScriptBuildPhase section */ 1012 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1013 | isa = PBXShellScriptBuildPhase; 1014 | buildActionMask = 2147483647; 1015 | files = ( 1016 | ); 1017 | inputPaths = ( 1018 | ); 1019 | name = "Bundle React Native code and images"; 1020 | outputPaths = ( 1021 | ); 1022 | runOnlyForDeploymentPostprocessing = 0; 1023 | shellPath = /bin/sh; 1024 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1025 | }; 1026 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1027 | isa = PBXShellScriptBuildPhase; 1028 | buildActionMask = 2147483647; 1029 | files = ( 1030 | ); 1031 | inputPaths = ( 1032 | ); 1033 | name = "Bundle React Native Code And Images"; 1034 | outputPaths = ( 1035 | ); 1036 | runOnlyForDeploymentPostprocessing = 0; 1037 | shellPath = /bin/sh; 1038 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1039 | }; 1040 | /* End PBXShellScriptBuildPhase section */ 1041 | 1042 | /* Begin PBXSourcesBuildPhase section */ 1043 | 00E356EA1AD99517003FC87E /* Sources */ = { 1044 | isa = PBXSourcesBuildPhase; 1045 | buildActionMask = 2147483647; 1046 | files = ( 1047 | 00E356F31AD99517003FC87E /* TodoListTests.m in Sources */, 1048 | ); 1049 | runOnlyForDeploymentPostprocessing = 0; 1050 | }; 1051 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1052 | isa = PBXSourcesBuildPhase; 1053 | buildActionMask = 2147483647; 1054 | files = ( 1055 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1056 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1057 | ); 1058 | runOnlyForDeploymentPostprocessing = 0; 1059 | }; 1060 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1061 | isa = PBXSourcesBuildPhase; 1062 | buildActionMask = 2147483647; 1063 | files = ( 1064 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1065 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1066 | ); 1067 | runOnlyForDeploymentPostprocessing = 0; 1068 | }; 1069 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1070 | isa = PBXSourcesBuildPhase; 1071 | buildActionMask = 2147483647; 1072 | files = ( 1073 | 2DCD954D1E0B4F2C00145EB5 /* TodoListTests.m in Sources */, 1074 | ); 1075 | runOnlyForDeploymentPostprocessing = 0; 1076 | }; 1077 | /* End PBXSourcesBuildPhase section */ 1078 | 1079 | /* Begin PBXTargetDependency section */ 1080 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1081 | isa = PBXTargetDependency; 1082 | target = 13B07F861A680F5B00A75B9A /* TodoList */; 1083 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1084 | }; 1085 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1086 | isa = PBXTargetDependency; 1087 | target = 2D02E47A1E0B4A5D006451C7 /* TodoList-tvOS */; 1088 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1089 | }; 1090 | /* End PBXTargetDependency section */ 1091 | 1092 | /* Begin PBXVariantGroup section */ 1093 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1094 | isa = PBXVariantGroup; 1095 | children = ( 1096 | 13B07FB21A68108700A75B9A /* Base */, 1097 | ); 1098 | name = LaunchScreen.xib; 1099 | path = TodoList; 1100 | sourceTree = ""; 1101 | }; 1102 | /* End PBXVariantGroup section */ 1103 | 1104 | /* Begin XCBuildConfiguration section */ 1105 | 00E356F61AD99517003FC87E /* Debug */ = { 1106 | isa = XCBuildConfiguration; 1107 | buildSettings = { 1108 | BUNDLE_LOADER = "$(TEST_HOST)"; 1109 | GCC_PREPROCESSOR_DEFINITIONS = ( 1110 | "DEBUG=1", 1111 | "$(inherited)", 1112 | ); 1113 | INFOPLIST_FILE = TodoListTests/Info.plist; 1114 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1115 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1116 | OTHER_LDFLAGS = ( 1117 | "-ObjC", 1118 | "-lc++", 1119 | ); 1120 | PRODUCT_NAME = "$(TARGET_NAME)"; 1121 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TodoList.app/TodoList"; 1122 | }; 1123 | name = Debug; 1124 | }; 1125 | 00E356F71AD99517003FC87E /* Release */ = { 1126 | isa = XCBuildConfiguration; 1127 | buildSettings = { 1128 | BUNDLE_LOADER = "$(TEST_HOST)"; 1129 | COPY_PHASE_STRIP = NO; 1130 | INFOPLIST_FILE = TodoListTests/Info.plist; 1131 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1132 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1133 | OTHER_LDFLAGS = ( 1134 | "-ObjC", 1135 | "-lc++", 1136 | ); 1137 | PRODUCT_NAME = "$(TARGET_NAME)"; 1138 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TodoList.app/TodoList"; 1139 | }; 1140 | name = Release; 1141 | }; 1142 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1143 | isa = XCBuildConfiguration; 1144 | buildSettings = { 1145 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1146 | CURRENT_PROJECT_VERSION = 1; 1147 | DEAD_CODE_STRIPPING = NO; 1148 | INFOPLIST_FILE = TodoList/Info.plist; 1149 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1150 | OTHER_LDFLAGS = ( 1151 | "$(inherited)", 1152 | "-ObjC", 1153 | "-lc++", 1154 | ); 1155 | PRODUCT_NAME = TodoList; 1156 | VERSIONING_SYSTEM = "apple-generic"; 1157 | }; 1158 | name = Debug; 1159 | }; 1160 | 13B07F951A680F5B00A75B9A /* Release */ = { 1161 | isa = XCBuildConfiguration; 1162 | buildSettings = { 1163 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1164 | CURRENT_PROJECT_VERSION = 1; 1165 | INFOPLIST_FILE = TodoList/Info.plist; 1166 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1167 | OTHER_LDFLAGS = ( 1168 | "$(inherited)", 1169 | "-ObjC", 1170 | "-lc++", 1171 | ); 1172 | PRODUCT_NAME = TodoList; 1173 | VERSIONING_SYSTEM = "apple-generic"; 1174 | }; 1175 | name = Release; 1176 | }; 1177 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1178 | isa = XCBuildConfiguration; 1179 | buildSettings = { 1180 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1181 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1182 | CLANG_ANALYZER_NONNULL = YES; 1183 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1184 | CLANG_WARN_INFINITE_RECURSION = YES; 1185 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1186 | DEBUG_INFORMATION_FORMAT = dwarf; 1187 | ENABLE_TESTABILITY = YES; 1188 | GCC_NO_COMMON_BLOCKS = YES; 1189 | INFOPLIST_FILE = "TodoList-tvOS/Info.plist"; 1190 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1191 | OTHER_LDFLAGS = ( 1192 | "-ObjC", 1193 | "-lc++", 1194 | ); 1195 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.TodoList-tvOS"; 1196 | PRODUCT_NAME = "$(TARGET_NAME)"; 1197 | SDKROOT = appletvos; 1198 | TARGETED_DEVICE_FAMILY = 3; 1199 | TVOS_DEPLOYMENT_TARGET = 9.2; 1200 | }; 1201 | name = Debug; 1202 | }; 1203 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1204 | isa = XCBuildConfiguration; 1205 | buildSettings = { 1206 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1207 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1208 | CLANG_ANALYZER_NONNULL = YES; 1209 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1210 | CLANG_WARN_INFINITE_RECURSION = YES; 1211 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1212 | COPY_PHASE_STRIP = NO; 1213 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1214 | GCC_NO_COMMON_BLOCKS = YES; 1215 | INFOPLIST_FILE = "TodoList-tvOS/Info.plist"; 1216 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1217 | OTHER_LDFLAGS = ( 1218 | "-ObjC", 1219 | "-lc++", 1220 | ); 1221 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.TodoList-tvOS"; 1222 | PRODUCT_NAME = "$(TARGET_NAME)"; 1223 | SDKROOT = appletvos; 1224 | TARGETED_DEVICE_FAMILY = 3; 1225 | TVOS_DEPLOYMENT_TARGET = 9.2; 1226 | }; 1227 | name = Release; 1228 | }; 1229 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1230 | isa = XCBuildConfiguration; 1231 | buildSettings = { 1232 | BUNDLE_LOADER = "$(TEST_HOST)"; 1233 | CLANG_ANALYZER_NONNULL = YES; 1234 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1235 | CLANG_WARN_INFINITE_RECURSION = YES; 1236 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1237 | DEBUG_INFORMATION_FORMAT = dwarf; 1238 | ENABLE_TESTABILITY = YES; 1239 | GCC_NO_COMMON_BLOCKS = YES; 1240 | INFOPLIST_FILE = "TodoList-tvOSTests/Info.plist"; 1241 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1242 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.TodoList-tvOSTests"; 1243 | PRODUCT_NAME = "$(TARGET_NAME)"; 1244 | SDKROOT = appletvos; 1245 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TodoList-tvOS.app/TodoList-tvOS"; 1246 | TVOS_DEPLOYMENT_TARGET = 10.1; 1247 | }; 1248 | name = Debug; 1249 | }; 1250 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1251 | isa = XCBuildConfiguration; 1252 | buildSettings = { 1253 | BUNDLE_LOADER = "$(TEST_HOST)"; 1254 | CLANG_ANALYZER_NONNULL = YES; 1255 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1256 | CLANG_WARN_INFINITE_RECURSION = YES; 1257 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1258 | COPY_PHASE_STRIP = NO; 1259 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1260 | GCC_NO_COMMON_BLOCKS = YES; 1261 | INFOPLIST_FILE = "TodoList-tvOSTests/Info.plist"; 1262 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1263 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.TodoList-tvOSTests"; 1264 | PRODUCT_NAME = "$(TARGET_NAME)"; 1265 | SDKROOT = appletvos; 1266 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/TodoList-tvOS.app/TodoList-tvOS"; 1267 | TVOS_DEPLOYMENT_TARGET = 10.1; 1268 | }; 1269 | name = Release; 1270 | }; 1271 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1272 | isa = XCBuildConfiguration; 1273 | buildSettings = { 1274 | ALWAYS_SEARCH_USER_PATHS = NO; 1275 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1276 | CLANG_CXX_LIBRARY = "libc++"; 1277 | CLANG_ENABLE_MODULES = YES; 1278 | CLANG_ENABLE_OBJC_ARC = YES; 1279 | CLANG_WARN_BOOL_CONVERSION = YES; 1280 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1281 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1282 | CLANG_WARN_EMPTY_BODY = YES; 1283 | CLANG_WARN_ENUM_CONVERSION = YES; 1284 | CLANG_WARN_INT_CONVERSION = YES; 1285 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1286 | CLANG_WARN_UNREACHABLE_CODE = YES; 1287 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1288 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1289 | COPY_PHASE_STRIP = NO; 1290 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1291 | GCC_C_LANGUAGE_STANDARD = gnu99; 1292 | GCC_DYNAMIC_NO_PIC = NO; 1293 | GCC_OPTIMIZATION_LEVEL = 0; 1294 | GCC_PREPROCESSOR_DEFINITIONS = ( 1295 | "DEBUG=1", 1296 | "$(inherited)", 1297 | ); 1298 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1299 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1300 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1301 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1302 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1303 | GCC_WARN_UNUSED_FUNCTION = YES; 1304 | GCC_WARN_UNUSED_VARIABLE = YES; 1305 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1306 | MTL_ENABLE_DEBUG_INFO = YES; 1307 | ONLY_ACTIVE_ARCH = YES; 1308 | SDKROOT = iphoneos; 1309 | }; 1310 | name = Debug; 1311 | }; 1312 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1313 | isa = XCBuildConfiguration; 1314 | buildSettings = { 1315 | ALWAYS_SEARCH_USER_PATHS = NO; 1316 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1317 | CLANG_CXX_LIBRARY = "libc++"; 1318 | CLANG_ENABLE_MODULES = YES; 1319 | CLANG_ENABLE_OBJC_ARC = YES; 1320 | CLANG_WARN_BOOL_CONVERSION = YES; 1321 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1322 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1323 | CLANG_WARN_EMPTY_BODY = YES; 1324 | CLANG_WARN_ENUM_CONVERSION = YES; 1325 | CLANG_WARN_INT_CONVERSION = YES; 1326 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1327 | CLANG_WARN_UNREACHABLE_CODE = YES; 1328 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1329 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1330 | COPY_PHASE_STRIP = YES; 1331 | ENABLE_NS_ASSERTIONS = NO; 1332 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1333 | GCC_C_LANGUAGE_STANDARD = gnu99; 1334 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1335 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1336 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1337 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1338 | GCC_WARN_UNUSED_FUNCTION = YES; 1339 | GCC_WARN_UNUSED_VARIABLE = YES; 1340 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1341 | MTL_ENABLE_DEBUG_INFO = NO; 1342 | SDKROOT = iphoneos; 1343 | VALIDATE_PRODUCT = YES; 1344 | }; 1345 | name = Release; 1346 | }; 1347 | /* End XCBuildConfiguration section */ 1348 | 1349 | /* Begin XCConfigurationList section */ 1350 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "TodoListTests" */ = { 1351 | isa = XCConfigurationList; 1352 | buildConfigurations = ( 1353 | 00E356F61AD99517003FC87E /* Debug */, 1354 | 00E356F71AD99517003FC87E /* Release */, 1355 | ); 1356 | defaultConfigurationIsVisible = 0; 1357 | defaultConfigurationName = Release; 1358 | }; 1359 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "TodoList" */ = { 1360 | isa = XCConfigurationList; 1361 | buildConfigurations = ( 1362 | 13B07F941A680F5B00A75B9A /* Debug */, 1363 | 13B07F951A680F5B00A75B9A /* Release */, 1364 | ); 1365 | defaultConfigurationIsVisible = 0; 1366 | defaultConfigurationName = Release; 1367 | }; 1368 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TodoList-tvOS" */ = { 1369 | isa = XCConfigurationList; 1370 | buildConfigurations = ( 1371 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1372 | 2D02E4981E0B4A5E006451C7 /* Release */, 1373 | ); 1374 | defaultConfigurationIsVisible = 0; 1375 | defaultConfigurationName = Release; 1376 | }; 1377 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "TodoList-tvOSTests" */ = { 1378 | isa = XCConfigurationList; 1379 | buildConfigurations = ( 1380 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1381 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1382 | ); 1383 | defaultConfigurationIsVisible = 0; 1384 | defaultConfigurationName = Release; 1385 | }; 1386 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "TodoList" */ = { 1387 | isa = XCConfigurationList; 1388 | buildConfigurations = ( 1389 | 83CBBA201A601CBA00E9B192 /* Debug */, 1390 | 83CBBA211A601CBA00E9B192 /* Release */, 1391 | ); 1392 | defaultConfigurationIsVisible = 0; 1393 | defaultConfigurationName = Release; 1394 | }; 1395 | /* End XCConfigurationList section */ 1396 | }; 1397 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1398 | } 1399 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList-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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList.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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/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:@"TodoList" 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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/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 | } -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | TodoList 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 | FontAwesome.ttf 59 | Foundation.ttf 60 | Ionicons.ttf 61 | MaterialIcons.ttf 62 | Octicons.ttf 63 | Roboto_medium.ttf 64 | Roboto.ttf 65 | rubicon-icon-font.ttf 66 | SimpleLineIcons.ttf 67 | Zocial.ttf 68 | 69 | 70 | -------------------------------------------------------------------------------- /TodoList/ios/TodoList/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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoListTests/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 | -------------------------------------------------------------------------------- /TodoList/ios/TodoListTests/TodoListTests.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 TodoListTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation TodoListTests 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 | -------------------------------------------------------------------------------- /TodoList/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TodoList", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "native-base": "^2.3.9", 11 | "react": "^16.3.0-alpha.1", 12 | "react-native": "0.54.0", 13 | "react-navigation": "^1.3.2" 14 | }, 15 | "devDependencies": { 16 | "babel-jest": "22.4.1", 17 | "babel-preset-react-native": "4.0.0", 18 | "jest": "22.4.2", 19 | "react-test-renderer": "^16.3.0-alpha.1" 20 | }, 21 | "jest": { 22 | "preset": "react-native" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /TodoList/src/components/About.android.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | Text, 4 | View, 5 | Image, 6 | StyleSheet 7 | } from 'react-native'; 8 | 9 | import AboutImage from '../images/star.png' 10 | 11 | export default class About extends Component { 12 | 13 | static navigationOptions = { 14 | header: null, 15 | tabBarIcon: ({ tintColor }) => ( 16 | 20 | ), 21 | tabBarLabel: 'About' 22 | } 23 | render() { 24 | return ( 25 | 26 | 27 | 32 | About 33 | 34 | 35 | 40 | This screen was made for Android 41 | 42 | 43 | 44 | ) 45 | } 46 | 47 | } 48 | 49 | const styles = StyleSheet.create({ 50 | icon: { 51 | height: 24, 52 | resizeMode: 'contain' 53 | } 54 | }) 55 | -------------------------------------------------------------------------------- /TodoList/src/components/About.ios.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | Text, 4 | View, 5 | Image, 6 | StyleSheet 7 | } from 'react-native'; 8 | 9 | import AboutImage from '../images/star.png' 10 | 11 | export default class About extends Component { 12 | 13 | static navigationOptions = { 14 | header: null, 15 | tabBarIcon: ({ tintColor }) => ( 16 | 20 | ), 21 | tabBarLabel: 'About' 22 | } 23 | render() { 24 | return ( 25 | 26 | 27 | 32 | About 33 | 34 | 35 | 40 | This screen was made for iOS 41 | 42 | 43 | 44 | ) 45 | } 46 | 47 | } 48 | 49 | const styles = StyleSheet.create({ 50 | icon: { 51 | height: 24, 52 | resizeMode: 'contain' 53 | } 54 | }) 55 | -------------------------------------------------------------------------------- /TodoList/src/components/AddTodo.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | Text, 4 | View, 5 | StatusBar, 6 | StyleSheet, 7 | TouchableOpacity 8 | } from 'react-native'; 9 | 10 | import { Form, Item, Input, Button, Text as NBText } from 'native-base' 11 | 12 | export default class AddTodo extends Component { 13 | 14 | state = { 15 | text: '' 16 | } 17 | 18 | onAdd = () => { 19 | const nav = this.props.navigation 20 | nav.state.params.saveItem(this.state.task) 21 | nav.goBack() 22 | } 23 | 24 | render() { 25 | return ( 26 | 27 | 28 | 29 |
30 | 31 | this.setState({ task: e.nativeEvent.text }) } 34 | value={this.state.task} 35 | /> 36 | 37 |
38 | 39 | 42 | 43 |
44 | ) 45 | } 46 | 47 | } 48 | 49 | const styles = StyleSheet.create({ 50 | container: { 51 | flex: 1, 52 | backgroundColor: '#fff', 53 | padding: 20 54 | }, 55 | button: { 56 | alignSelf: 'flex-end', 57 | marginTop: 20 58 | } 59 | }) 60 | 61 | -------------------------------------------------------------------------------- /TodoList/src/components/TodoItem.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | Text, 5 | View, 6 | TouchableOpacity 7 | } from 'react-native'; 8 | 9 | import { Icon } from 'native-base' 10 | 11 | export default class TodoItem extends Component { 12 | 13 | toggleTodo = () => { 14 | this.props.updateTodo( 15 | this.props.item.id, 16 | !this.props.item.completed 17 | ) 18 | } 19 | 20 | deleteTodo = () => { 21 | this.props.deleteTodo(this.props.item.id) 22 | } 23 | 24 | render() { 25 | const item = this.props.item 26 | return ( 27 | 31 | 32 | 36 | {item.task} 37 | 38 | 39 | 40 | 41 | 42 | ) 43 | } 44 | 45 | } 46 | 47 | const styles = StyleSheet.create({ 48 | item: { 49 | padding: 20, 50 | flex: 1 51 | }, 52 | itemButton: { 53 | borderBottomWidth: 1, 54 | borderColor: '#ccc', 55 | flexDirection: 'row', 56 | alignItems: 'center', 57 | paddingLeft: 10 58 | } 59 | }); 60 | -------------------------------------------------------------------------------- /TodoList/src/components/TodoList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | Text, 5 | View, 6 | FlatList, 7 | StatusBar, 8 | ActivityIndicator, 9 | Image, 10 | Platform 11 | } from 'react-native'; 12 | 13 | import { Button, Text as NBText, Segment } from 'native-base' 14 | 15 | import TodoItem from './TodoItem' 16 | import CheckImage from '../images/check.png' 17 | import { items } from '../lib/api' 18 | 19 | export default class ToDoList extends Component { 20 | 21 | static navigationOptions = { 22 | header: null, 23 | tabBarIcon: ({ tintColor }) => ( 24 | 28 | ), 29 | tabBarLabel: 'List' 30 | } 31 | 32 | state = { 33 | items: null, 34 | filter: 'All' 35 | } 36 | 37 | componentDidMount() { 38 | items('GET') 39 | .then(items => { 40 | this.setState({ items }) 41 | }) 42 | } 43 | 44 | addItem = () => { 45 | this.props.navigation.navigate( 46 | 'AddTodo', 47 | { saveItem: this.saveItem } 48 | ) 49 | } 50 | 51 | saveItem = newTask => { 52 | items('POST', { task: newTask }) 53 | .then(json => { 54 | this.setState({ items: json }) 55 | }) 56 | } 57 | 58 | updateTodo = (id, completed) => { 59 | items('PUT', { id, completed }) 60 | .then(json => { 61 | this.setState({ items: json }) 62 | }) 63 | } 64 | 65 | deleteTodo = (id) => { 66 | items('DELETE', { id }) 67 | .then(json => { 68 | this.setState({ items: json }) 69 | }) 70 | } 71 | 72 | filteredItems = () => { 73 | if(this.state.filter === 'Todo') { 74 | return this.state.items.filter(i => { 75 | return !i.completed 76 | }) 77 | } 78 | if(this.state.filter === 'Complete') { 79 | return this.state.items.filter(i => { 80 | return i.completed 81 | }) 82 | } 83 | return this.state.items 84 | } 85 | 86 | render() { 87 | return ( 88 | 89 | 90 | 91 | 92 | Todo List 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 107 | 113 | 120 | 121 | 122 | 123 | { 124 | !this.state.items && 129 | } 130 | 131 | { 135 | return 140 | }} 141 | keyExtractor={item => item.id} 142 | /> 143 | 144 | 145 | 153 | 154 | 155 | 156 | 157 | 158 | ); 159 | } 160 | 161 | } 162 | 163 | const styles = StyleSheet.create({ 164 | container: { 165 | flex: 1, 166 | backgroundColor: '#fff' 167 | }, 168 | header: { 169 | padding: 10, 170 | paddingTop: 20, 171 | alignSelf: 'stretch', 172 | backgroundColor: '#2288ee', 173 | borderBottomWidth: 1, 174 | borderColor: '#0066cc' 175 | }, 176 | headerText: { 177 | fontSize: 20, 178 | textAlign: 'center', 179 | color: '#ffffff' 180 | }, 181 | item: { 182 | padding: 10 183 | }, 184 | content: { 185 | flex: 1, 186 | alignSelf: 'stretch' 187 | }, 188 | contentWrapper: { 189 | flex: 1 190 | }, 191 | contentHeader: { 192 | height: 50, 193 | borderBottomWidth: 1, 194 | borderColor: '#aaa', 195 | alignItems: 'center', 196 | justifyContent: 'center' 197 | }, 198 | contentFooter: { 199 | padding: 20, 200 | justifyContent: 'flex-end', 201 | flexDirection: 'row' 202 | }, 203 | icon: { 204 | height: 24, 205 | resizeMode: 'contain' 206 | } 207 | }); 208 | -------------------------------------------------------------------------------- /TodoList/src/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/check.png -------------------------------------------------------------------------------- /TodoList/src/images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/check@2x.png -------------------------------------------------------------------------------- /TodoList/src/images/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/check@3x.png -------------------------------------------------------------------------------- /TodoList/src/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/star.png -------------------------------------------------------------------------------- /TodoList/src/images/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/star@2x.png -------------------------------------------------------------------------------- /TodoList/src/images/star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/68a09df957713ed5d105e3852aaa39918e7d5f30/TodoList/src/images/star@3x.png -------------------------------------------------------------------------------- /TodoList/src/lib/api.js: -------------------------------------------------------------------------------- 1 | 2 | import { Platform } from 'react-native' 3 | 4 | export const items = (method, body) => { 5 | const ipAddr = Platform.OS === 'android' ? '192.168.86.46' : 'localhost' 6 | 7 | const headers = new Headers() 8 | headers.append('Accept', 'application/json') 9 | headers.append('Content-Type', 'application/json') 10 | 11 | return fetch("http://"+ipAddr+":3000/items.json", { 12 | method: method, 13 | headers, 14 | body: JSON.stringify(body) 15 | }) 16 | .then(response => response.json()) 17 | } 18 | -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const app = express() 3 | const bodyParser = require('body-parser') 4 | app.use( bodyParser.json() ); // to support JSON-encoded bodies 5 | app.use(bodyParser.urlencoded({ // to support URL-encoded bodies 6 | extended: true 7 | })); 8 | 9 | let items = [ 10 | {id: 1, task: "Go to the store", completed: false}, 11 | {id: 2, task: "Get the milk", completed: false}, 12 | {id: 3, task: "Bring it back", completed: false}, 13 | ] 14 | let nextId = 4 15 | 16 | app.get('/items.json', (req, res) => res.send(JSON.stringify(items))) 17 | 18 | app.post('/items.json', (req, res) => { 19 | items.push({ 20 | id: nextId, 21 | task: req.body.task, 22 | completed: false 23 | }) 24 | nextId = nextId + 1; 25 | res.send(JSON.stringify(items)) 26 | }) 27 | 28 | app.put('/items.json', (req, res) => { 29 | items.filter((item) => { 30 | return item.id == req.body.id 31 | }).forEach((item) => { 32 | item.completed = req.body.completed 33 | }); 34 | res.send(JSON.stringify(items)) 35 | }) 36 | 37 | app.delete('/items.json', (req, res) => { 38 | items = items.filter((item) => { 39 | return item.id != req.body.id 40 | }) 41 | res.send(JSON.stringify(items)) 42 | }) 43 | 44 | app.listen(3000, () => console.log('Todo app listening on port 3000!')) 45 | -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "accepts": { 8 | "version": "1.3.4", 9 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", 10 | "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", 11 | "requires": { 12 | "mime-types": "2.1.17", 13 | "negotiator": "0.6.1" 14 | } 15 | }, 16 | "array-flatten": { 17 | "version": "1.1.1", 18 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 19 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 20 | }, 21 | "body-parser": { 22 | "version": "1.18.2", 23 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", 24 | "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", 25 | "requires": { 26 | "bytes": "3.0.0", 27 | "content-type": "1.0.4", 28 | "debug": "2.6.9", 29 | "depd": "1.1.1", 30 | "http-errors": "1.6.2", 31 | "iconv-lite": "0.4.19", 32 | "on-finished": "2.3.0", 33 | "qs": "6.5.1", 34 | "raw-body": "2.3.2", 35 | "type-is": "1.6.15" 36 | } 37 | }, 38 | "bytes": { 39 | "version": "3.0.0", 40 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", 41 | "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" 42 | }, 43 | "content-disposition": { 44 | "version": "0.5.2", 45 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", 46 | "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" 47 | }, 48 | "content-type": { 49 | "version": "1.0.4", 50 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 51 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 52 | }, 53 | "cookie": { 54 | "version": "0.3.1", 55 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", 56 | "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" 57 | }, 58 | "cookie-signature": { 59 | "version": "1.0.6", 60 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 61 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 62 | }, 63 | "debug": { 64 | "version": "2.6.9", 65 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 66 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 67 | "requires": { 68 | "ms": "2.0.0" 69 | } 70 | }, 71 | "depd": { 72 | "version": "1.1.1", 73 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", 74 | "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" 75 | }, 76 | "destroy": { 77 | "version": "1.0.4", 78 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 79 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 80 | }, 81 | "ee-first": { 82 | "version": "1.1.1", 83 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 84 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 85 | }, 86 | "encodeurl": { 87 | "version": "1.0.1", 88 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", 89 | "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=" 90 | }, 91 | "escape-html": { 92 | "version": "1.0.3", 93 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 94 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 95 | }, 96 | "etag": { 97 | "version": "1.8.1", 98 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 99 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 100 | }, 101 | "express": { 102 | "version": "4.16.2", 103 | "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", 104 | "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", 105 | "requires": { 106 | "accepts": "1.3.4", 107 | "array-flatten": "1.1.1", 108 | "body-parser": "1.18.2", 109 | "content-disposition": "0.5.2", 110 | "content-type": "1.0.4", 111 | "cookie": "0.3.1", 112 | "cookie-signature": "1.0.6", 113 | "debug": "2.6.9", 114 | "depd": "1.1.1", 115 | "encodeurl": "1.0.1", 116 | "escape-html": "1.0.3", 117 | "etag": "1.8.1", 118 | "finalhandler": "1.1.0", 119 | "fresh": "0.5.2", 120 | "merge-descriptors": "1.0.1", 121 | "methods": "1.1.2", 122 | "on-finished": "2.3.0", 123 | "parseurl": "1.3.2", 124 | "path-to-regexp": "0.1.7", 125 | "proxy-addr": "2.0.2", 126 | "qs": "6.5.1", 127 | "range-parser": "1.2.0", 128 | "safe-buffer": "5.1.1", 129 | "send": "0.16.1", 130 | "serve-static": "1.13.1", 131 | "setprototypeof": "1.1.0", 132 | "statuses": "1.3.1", 133 | "type-is": "1.6.15", 134 | "utils-merge": "1.0.1", 135 | "vary": "1.1.2" 136 | } 137 | }, 138 | "finalhandler": { 139 | "version": "1.1.0", 140 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", 141 | "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", 142 | "requires": { 143 | "debug": "2.6.9", 144 | "encodeurl": "1.0.1", 145 | "escape-html": "1.0.3", 146 | "on-finished": "2.3.0", 147 | "parseurl": "1.3.2", 148 | "statuses": "1.3.1", 149 | "unpipe": "1.0.0" 150 | } 151 | }, 152 | "forwarded": { 153 | "version": "0.1.2", 154 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 155 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 156 | }, 157 | "fresh": { 158 | "version": "0.5.2", 159 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 160 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 161 | }, 162 | "http-errors": { 163 | "version": "1.6.2", 164 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", 165 | "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", 166 | "requires": { 167 | "depd": "1.1.1", 168 | "inherits": "2.0.3", 169 | "setprototypeof": "1.0.3", 170 | "statuses": "1.3.1" 171 | }, 172 | "dependencies": { 173 | "setprototypeof": { 174 | "version": "1.0.3", 175 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", 176 | "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" 177 | } 178 | } 179 | }, 180 | "iconv-lite": { 181 | "version": "0.4.19", 182 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", 183 | "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" 184 | }, 185 | "inherits": { 186 | "version": "2.0.3", 187 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 188 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 189 | }, 190 | "ipaddr.js": { 191 | "version": "1.5.2", 192 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", 193 | "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=" 194 | }, 195 | "media-typer": { 196 | "version": "0.3.0", 197 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 198 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 199 | }, 200 | "merge-descriptors": { 201 | "version": "1.0.1", 202 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 203 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 204 | }, 205 | "methods": { 206 | "version": "1.1.2", 207 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 208 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 209 | }, 210 | "mime": { 211 | "version": "1.4.1", 212 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", 213 | "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" 214 | }, 215 | "mime-db": { 216 | "version": "1.30.0", 217 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", 218 | "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" 219 | }, 220 | "mime-types": { 221 | "version": "2.1.17", 222 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", 223 | "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", 224 | "requires": { 225 | "mime-db": "1.30.0" 226 | } 227 | }, 228 | "ms": { 229 | "version": "2.0.0", 230 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 231 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 232 | }, 233 | "negotiator": { 234 | "version": "0.6.1", 235 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", 236 | "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" 237 | }, 238 | "on-finished": { 239 | "version": "2.3.0", 240 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 241 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 242 | "requires": { 243 | "ee-first": "1.1.1" 244 | } 245 | }, 246 | "parseurl": { 247 | "version": "1.3.2", 248 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", 249 | "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" 250 | }, 251 | "path-to-regexp": { 252 | "version": "0.1.7", 253 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 254 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 255 | }, 256 | "proxy-addr": { 257 | "version": "2.0.2", 258 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz", 259 | "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=", 260 | "requires": { 261 | "forwarded": "0.1.2", 262 | "ipaddr.js": "1.5.2" 263 | } 264 | }, 265 | "qs": { 266 | "version": "6.5.1", 267 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", 268 | "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" 269 | }, 270 | "range-parser": { 271 | "version": "1.2.0", 272 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", 273 | "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" 274 | }, 275 | "raw-body": { 276 | "version": "2.3.2", 277 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", 278 | "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", 279 | "requires": { 280 | "bytes": "3.0.0", 281 | "http-errors": "1.6.2", 282 | "iconv-lite": "0.4.19", 283 | "unpipe": "1.0.0" 284 | } 285 | }, 286 | "safe-buffer": { 287 | "version": "5.1.1", 288 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", 289 | "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" 290 | }, 291 | "send": { 292 | "version": "0.16.1", 293 | "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", 294 | "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", 295 | "requires": { 296 | "debug": "2.6.9", 297 | "depd": "1.1.1", 298 | "destroy": "1.0.4", 299 | "encodeurl": "1.0.1", 300 | "escape-html": "1.0.3", 301 | "etag": "1.8.1", 302 | "fresh": "0.5.2", 303 | "http-errors": "1.6.2", 304 | "mime": "1.4.1", 305 | "ms": "2.0.0", 306 | "on-finished": "2.3.0", 307 | "range-parser": "1.2.0", 308 | "statuses": "1.3.1" 309 | } 310 | }, 311 | "serve-static": { 312 | "version": "1.13.1", 313 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", 314 | "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", 315 | "requires": { 316 | "encodeurl": "1.0.1", 317 | "escape-html": "1.0.3", 318 | "parseurl": "1.3.2", 319 | "send": "0.16.1" 320 | } 321 | }, 322 | "setprototypeof": { 323 | "version": "1.1.0", 324 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", 325 | "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" 326 | }, 327 | "statuses": { 328 | "version": "1.3.1", 329 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", 330 | "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" 331 | }, 332 | "type-is": { 333 | "version": "1.6.15", 334 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", 335 | "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", 336 | "requires": { 337 | "media-typer": "0.3.0", 338 | "mime-types": "2.1.17" 339 | } 340 | }, 341 | "unpipe": { 342 | "version": "1.0.0", 343 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 344 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 345 | }, 346 | "utils-merge": { 347 | "version": "1.0.1", 348 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 349 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 350 | }, 351 | "vary": { 352 | "version": "1.1.2", 353 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 354 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 355 | } 356 | } 357 | } 358 | -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.18.2", 13 | "express": "^4.16.2" 14 | } 15 | } 16 | --------------------------------------------------------------------------------