├── .watchmanconfig ├── .gitattributes ├── .babelrc ├── app.json ├── app ├── assets │ ├── chef.png │ ├── logoNavbar.png │ ├── overlayBarcode.png │ └── mobile_iphone_scan.png ├── reducers │ └── index.js ├── components │ ├── common │ │ ├── index.js │ │ ├── LowerContainer.js │ │ ├── ViewContainer.js │ │ ├── UpperContainer.js │ │ ├── Input.js │ │ ├── NoRecipes.js │ │ ├── SubmitButton.js │ │ └── StartScreen.js │ ├── RecipeWebView.js │ ├── PushController.js │ ├── Schema.js │ ├── Recipe.js │ ├── ListView.js │ ├── Item.js │ ├── BarcodeScanner.js │ └── RecipeList.js ├── screens │ ├── RecipeGeneratorScreen.js │ ├── BarcodeScannerScreen.js │ ├── MyItemsScreen.js │ └── AddItemScreen.js ├── navigations │ └── Router.js └── app.js ├── realm-object-server └── io.realm.object-server-utility │ └── metadata │ ├── sync_metadata.realm.management │ ├── access_control.balance.mx │ ├── access_control.control.mx │ └── access_control.write.mx │ ├── sync_metadata.realm │ └── sync_metadata.realm.lock ├── android ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── MaterialCommunityIcons.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── eatme │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ ├── BUCK │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── build.gradle ├── gradle.properties ├── settings.gradle ├── gradlew.bat └── gradlew ├── ios ├── EatMe │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@1x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-76x76@3x.png │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── Info.plist │ ├── AppDelegate.m │ └── Base.lproj │ │ └── LaunchScreen.xib ├── EatMeTests │ ├── Info.plist │ └── EatMeTests.m ├── EatMe-tvOSTests │ └── Info.plist ├── EatMe-tvOS │ └── Info.plist └── EatMe.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── EatMe.xcscheme │ │ └── EatMe-tvOS.xcscheme │ └── project.pbxproj ├── .buckconfig ├── index.ios.js ├── __tests__ ├── index.android.js ├── CommonComponents-test.js └── __snapshots__ │ └── CommonComponents-test.js.snap ├── .gitignore ├── package.json ├── index.android.js ├── .flowconfig └── README.md /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EatMe", 3 | "displayName": "EatMe" 4 | } -------------------------------------------------------------------------------- /app/assets/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/app/assets/chef.png -------------------------------------------------------------------------------- /app/assets/logoNavbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/app/assets/logoNavbar.png -------------------------------------------------------------------------------- /app/assets/overlayBarcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/app/assets/overlayBarcode.png -------------------------------------------------------------------------------- /app/assets/mobile_iphone_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/app/assets/mobile_iphone_scan.png -------------------------------------------------------------------------------- /realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm.management/access_control.balance.mx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm.management/access_control.control.mx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm.management/access_control.write.mx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | EatMe 3 | 4 | -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | 3 | export default combineReducers({ 4 | libraries: () => [] 5 | }); 6 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import App from './app/app'; 3 | 4 | AppRegistry.registerComponent('EatMe', () => App); 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/ios/EatMe/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simba14/EatMe/HEAD/realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm -------------------------------------------------------------------------------- /app/components/common/index.js: -------------------------------------------------------------------------------- 1 | export * from './Input'; 2 | export * from './LowerContainer'; 3 | export * from './SubmitButton'; 4 | export * from './UpperContainer'; 5 | export * from './ViewContainer'; 6 | export * from './StartScreen'; 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 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 | -------------------------------------------------------------------------------- /app/components/RecipeWebView.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { WebView } from 'react-native'; 3 | 4 | class RecipeWebView extends Component { 5 | constructor(props) { 6 | super(props); 7 | this.state = { 8 | url: this.props.url 9 | } 10 | } 11 | render() { 12 | return ( 13 | 14 | ); 15 | }; 16 | } 17 | 18 | export default RecipeWebView; 19 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/eatme/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.eatme; 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 "EatMe"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/components/PushController.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import PushNotification from 'react-native-push-notification'; 3 | 4 | export default class PushController extends Component { 5 | componentDidMount() { 6 | PushNotification.configure({ 7 | onNotification: function(notification) { 8 | console.log('NOTIFICATION:', notification); 9 | } 10 | }); 11 | } 12 | 13 | render() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/screens/RecipeGeneratorScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text } from 'react-native'; 3 | import { ViewContainer, UpperContainer, LowerContainer } from '../components/common'; 4 | import RecipeList from '../components/RecipeList'; 5 | 6 | class RecipeGeneratorScreen extends Component { 7 | 8 | render() { 9 | return ( 10 | 11 | 12 | 13 | ); 14 | }; 15 | } 16 | 17 | export default RecipeGeneratorScreen; 18 | -------------------------------------------------------------------------------- /ios/EatMe/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 | -------------------------------------------------------------------------------- /app/screens/BarcodeScannerScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import BarcodeScanner from '../components/BarcodeScanner'; 5 | import { ViewContainer, UpperContainer, LowerContainer } from '../components/common'; 6 | 7 | class BarcodeScannerScreen extends Component { 8 | render() { 9 | return ( 10 | 11 | 12 | 13 | ); 14 | } 15 | } 16 | 17 | export default BarcodeScannerScreen; 18 | -------------------------------------------------------------------------------- /ios/EatMe/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 | -------------------------------------------------------------------------------- /app/components/common/LowerContainer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, StyleSheet } from 'react-native'; 3 | 4 | class LowerContainer extends Component { 5 | render() { 6 | return ( 7 | 8 | {this.props.children} 9 | 10 | ); 11 | } 12 | } 13 | 14 | const styles = StyleSheet.create({ 15 | lowerContainer: { 16 | flex: 1, 17 | flexDirection: "column", 18 | justifyContent: "flex-start", 19 | alignItems: "stretch", 20 | marginBottom: 30 21 | } 22 | }); 23 | 24 | export { LowerContainer }; 25 | -------------------------------------------------------------------------------- /app/components/common/ViewContainer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, StyleSheet } from 'react-native'; 3 | 4 | class ViewContainer extends Component { 5 | render() { 6 | return ( 7 | 8 | {this.props.children} 9 | 10 | ); 11 | } 12 | } 13 | 14 | const styles = StyleSheet.create({ 15 | viewContainer: { 16 | flex: 1, 17 | flexDirection: "column", 18 | justifyContent: "flex-start", 19 | alignItems: "stretch", 20 | marginTop: 90, 21 | marginBottom: 5 22 | } 23 | }); 24 | 25 | export { ViewContainer }; 26 | -------------------------------------------------------------------------------- /app/components/common/UpperContainer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, StyleSheet } from 'react-native'; 3 | 4 | class UpperContainer extends Component { 5 | render() { 6 | return ( 7 | 8 | {this.props.children} 9 | 10 | ); 11 | } 12 | } 13 | 14 | const styles = StyleSheet.create({ 15 | upperContainer: { 16 | flex: 9, 17 | flexDirection: "column", 18 | justifyContent: "flex-start", 19 | alignItems: "stretch", 20 | marginTop: -10, 21 | marginBottom: 15 22 | } 23 | }); 24 | 25 | export { UpperContainer }; 26 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/components/Schema.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import Realm from 'realm'; 3 | 4 | class itemDatabase {} 5 | itemDatabase.schema = { 6 | name: 'ItemDB', 7 | primaryKey: 'id', 8 | properties: { 9 | id: {type: 'string'}, 10 | itemName: {type: 'string'}, 11 | expirationDate: {type: 'date'}, 12 | createdTimestamp: {type: 'date'} 13 | } 14 | }; 15 | 16 | class usageDatabase {} 17 | usageDatabase.schema = { 18 | name: 'UsageDB', 19 | primaryKey: 'id', 20 | properties: { 21 | id: { type: 'string' }, 22 | itemName: { type: 'string' }, 23 | binned: { type: 'int', default: 0 }, 24 | eaten: { type: 'int', default: 0 }, 25 | createdTimestamp: { type: 'date', default: new Date } 26 | } 27 | } 28 | 29 | export const realm = new Realm({schema: [itemDatabase, usageDatabase]}); 30 | -------------------------------------------------------------------------------- /app/components/common/Input.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { TextInput, StyleSheet } from 'react-native'; 3 | 4 | const Input = ({value, onChangeText, placeholder}) => { 5 | return ( 6 | 12 | ) 13 | }; 14 | 15 | const styles = StyleSheet.create({ 16 | textInput: { 17 | alignSelf: 'stretch', 18 | justifyContent: 'center', 19 | borderRadius: 5, 20 | borderWidth: 1, 21 | borderColor: 'grey', 22 | backgroundColor: 'white', 23 | marginLeft: 20, 24 | marginRight: 20, 25 | marginBottom: 10, 26 | marginTop: 5, 27 | padding: 5, 28 | paddingLeft: 10, 29 | height: 40, 30 | fontSize: 16 31 | } 32 | }); 33 | 34 | export { Input }; 35 | -------------------------------------------------------------------------------- /ios/EatMeTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/EatMe-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /app/components/common/NoRecipes.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, Text } from 'react-native'; 3 | import { UpperContainer } from './UpperContainer'; 4 | 5 | const NoRecipes = () => { 6 | return ( 7 | 8 | 9 | No recipes found 10 | Add some items to your list before generating recipes 11 | 12 | 13 | ) 14 | } 15 | 16 | const styles = { 17 | viewStyle: { 18 | flex: 1, 19 | justifyContent: 'center', 20 | alignItems: 'center' 21 | 22 | }, 23 | title: { 24 | marginTop: 90, 25 | textAlign: 'center', 26 | fontSize: 32, 27 | fontFamily: 'System', 28 | color: '#323232' 29 | }, 30 | body: { 31 | marginTop: 50, 32 | marginLeft: 30, 33 | marginRight: 30, 34 | textAlign: 'center', 35 | fontSize: 20, 36 | fontFamily: 'System', 37 | color: '#323232' 38 | } 39 | } 40 | 41 | export default NoRecipes; 42 | -------------------------------------------------------------------------------- /app/components/common/SubmitButton.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Text, TouchableOpacity, StyleSheet, View } from 'react-native'; 3 | import LinearGradient from 'react-native-linear-gradient'; 4 | 5 | const SubmitButton = ({onPress, children}) => { 6 | return ( 7 | 8 | 9 | {children} 10 | 11 | 12 | ); 13 | }; 14 | 15 | const styles = StyleSheet.create({ 16 | button: { 17 | flex: 1, 18 | }, 19 | linearGradient: { 20 | flex: 1, 21 | justifyContent: 'center', 22 | borderRadius: 50, 23 | marginLeft: 20, 24 | marginRight: 20 25 | }, 26 | buttonText: { 27 | fontSize: 18, 28 | fontWeight: '500', 29 | letterSpacing: 1, 30 | textAlign: 'center', 31 | color: '#ffffff', 32 | backgroundColor: 'transparent' 33 | } 34 | }); 35 | 36 | export { SubmitButton }; 37 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'EatMe' 2 | include ':react-native-svg' 3 | project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android') 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | include ':react-native-linear-gradient' 7 | project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android') 8 | include ':react-native-camera' 9 | project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') 10 | include ':react-native-push-notification' 11 | project(':react-native-push-notification').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-push-notification/android') 12 | include ':realm' 13 | project(':realm').projectDir = new File(rootProject.projectDir, '../node_modules/realm/android') 14 | 15 | include ':app' 16 | -------------------------------------------------------------------------------- /app/components/common/StartScreen.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, Text, Image } from 'react-native'; 3 | import Icon from 'react-native-vector-icons/FontAwesome'; 4 | import * as Animatable from 'react-native-animatable'; 5 | 6 | const StartScreen = () => { 7 | return ( 8 | 9 | Get Started 10 | Add your first item and start tracking your food 11 | 12 | 13 | 14 | 15 | ); 16 | }; 17 | 18 | const styles = { 19 | viewStyle: { 20 | flex: 1, 21 | height: 275, 22 | marginTop: 120, 23 | justifyContent: 'space-between', 24 | alignItems: 'center' 25 | }, 26 | title: { 27 | fontSize: 32, 28 | color: '#323232' 29 | }, 30 | body: { 31 | marginLeft: 30, 32 | marginRight: 30, 33 | textAlign: 'center', 34 | fontSize: 20, 35 | color: '#323232' 36 | } 37 | } 38 | 39 | export { StartScreen }; 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EatMe", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "react-native run-ios", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "axios": "^0.16.1", 11 | "css-loader": "^0.28.2", 12 | "lodash": "^4.17.4", 13 | "moment": "^2.18.1", 14 | "pluralize": "^5.0.0", 15 | "react": "16.0.0-alpha.6", 16 | "react-native": "0.44.0", 17 | "react-native-animatable": "^1.2.0", 18 | "react-native-camera": "^0.9.0", 19 | "react-native-linear-gradient": "^2.0.0", 20 | "react-native-push-notification": "^3.0.0", 21 | "react-native-router-flux": "^3.38.0", 22 | "react-native-swipeout": "^2.1.1", 23 | "react-native-vector-icons": "^4.2.0", 24 | "react-redux": "^5.0.5", 25 | "realm": "^1.3.1", 26 | "redux": "^3.6.0", 27 | "style-loader": "^0.18.1", 28 | "uuid": "^3.0.1" 29 | }, 30 | "devDependencies": { 31 | "babel-jest": "20.0.3", 32 | "babel-preset-react-native": "1.9.2", 33 | "jest": "20.0.3", 34 | "react-test-renderer": "16.0.0-alpha.6" 35 | }, 36 | "jest": { 37 | "preset": "react-native" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | AppRegistry, 4 | StyleSheet, 5 | Text, 6 | View 7 | } from 'react-native'; 8 | 9 | export default class EatMe extends Component { 10 | render() { 11 | return ( 12 | 13 | 14 | Welcome to React Native! 15 | 16 | 17 | To get started, edit index.android.js 18 | 19 | 20 | Double tap R on your keyboard to reload,{'\n'} 21 | Shake or press menu button for dev menu 22 | 23 | 24 | ); 25 | } 26 | } 27 | 28 | const styles = StyleSheet.create({ 29 | container: { 30 | flex: 1, 31 | justifyContent: 'center', 32 | alignItems: 'center', 33 | backgroundColor: '#F5FCFF', 34 | }, 35 | welcome: { 36 | fontSize: 20, 37 | textAlign: 'center', 38 | margin: 10, 39 | }, 40 | instructions: { 41 | textAlign: 'center', 42 | color: '#333333', 43 | marginBottom: 5, 44 | }, 45 | }); 46 | 47 | AppRegistry.registerComponent('EatMe', () => EatMe); 48 | -------------------------------------------------------------------------------- /realm-object-server/io.realm.object-server-utility/metadata/sync_metadata.realm.lock: -------------------------------------------------------------------------------- 1 |  2 |    3 |     -------------------------------------------------------------------------------- /app/screens/MyItemsScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { TouchableHighlight, Text } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import { SubmitButton, ViewContainer, UpperContainer, LowerContainer } from '../components/common'; 5 | import ListView from '../components/ListView'; 6 | import PushController from '../components/PushController'; 7 | 8 | class MyItemsScreen extends Component { 9 | constructor(props) { 10 | super(props); 11 | } 12 | 13 | render() { 14 | return ( 15 | 16 | 17 | 18 | 19 | 20 | Actions.add() }> 21 | ADD ITEM 22 | 23 | 24 | 25 | 26 | ); 27 | } 28 | } 29 | 30 | const styles = { 31 | recipeButtonStyle: { 32 | marginBottom: 20, 33 | marginTop: 20, 34 | marginLeft: 20 35 | }, 36 | addItemStyle: { 37 | marginLeft: 20, 38 | marginRight: 20 39 | } 40 | } 41 | 42 | export default MyItemsScreen; 43 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /__tests__/CommonComponents-test.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import { Input, LowerContainer, SubmitButton, UpperContainer, ViewContainer, StartScreen } from '../app/components/common'; 4 | 5 | import renderer from 'react-test-renderer'; 6 | 7 | test('renders the Input component correctly', () => { 8 | const tree = renderer.create( 9 | 10 | ).toJSON(); 11 | expect(tree).toMatchSnapshot(); 12 | }); 13 | 14 | test('renders the LowerContainer component correctly', () => { 15 | const tree = renderer.create( 16 | 17 | ).toJSON(); 18 | expect(tree).toMatchSnapshot(); 19 | }); 20 | 21 | test('renders the SubmitButton component correctly', () => { 22 | const tree = renderer.create( 23 | 24 | ).toJSON(); 25 | expect(tree).toMatchSnapshot(); 26 | }); 27 | 28 | test('renders the UpperContainer component correctly', () => { 29 | const tree = renderer.create( 30 | 31 | ).toJSON(); 32 | expect(tree).toMatchSnapshot(); 33 | }); 34 | 35 | test('renders the ViewContainer component correctly', () => { 36 | const tree = renderer.create( 37 | 38 | ).toJSON(); 39 | expect(tree).toMatchSnapshot(); 40 | }); 41 | 42 | test('renders the StartScreen component correctly', () => { 43 | const tree = renderer.create( 44 | 45 | ).toJSON(); 46 | expect(tree).toMatchSnapshot(); 47 | }); 48 | -------------------------------------------------------------------------------- /.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 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | 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' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 43 | 44 | unsafe.enable_getters_and_setters=true 45 | 46 | [version] 47 | ^0.42.0 48 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/eatme/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.eatme; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.horcrux.svg.SvgPackage; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.BV.LinearGradient.LinearGradientPackage; 9 | import com.lwansbrough.RCTCamera.RCTCameraPackage; 10 | import com.dieam.reactnativepushnotification.ReactNativePushNotificationPackage; 11 | import io.realm.react.RealmReactPackage; 12 | import com.facebook.react.ReactNativeHost; 13 | import com.facebook.react.ReactPackage; 14 | import com.facebook.react.shell.MainReactPackage; 15 | import com.facebook.soloader.SoLoader; 16 | 17 | import java.util.Arrays; 18 | import java.util.List; 19 | 20 | public class MainApplication extends Application implements ReactApplication { 21 | 22 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 23 | @Override 24 | public boolean getUseDeveloperSupport() { 25 | return BuildConfig.DEBUG; 26 | } 27 | 28 | @Override 29 | protected List getPackages() { 30 | return Arrays.asList( 31 | new MainReactPackage(), 32 | new SvgPackage(), 33 | new VectorIconsPackage(), 34 | new LinearGradientPackage(), 35 | new RCTCameraPackage(), 36 | new ReactNativePushNotificationPackage(), 37 | new RealmReactPackage() 38 | ); 39 | } 40 | }; 41 | 42 | @Override 43 | public ReactNativeHost getReactNativeHost() { 44 | return mReactNativeHost; 45 | } 46 | 47 | @Override 48 | public void onCreate() { 49 | super.onCreate(); 50 | SoLoader.init(this, /* native exopackage */ false); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /ios/EatMe-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 | -------------------------------------------------------------------------------- /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.eatme", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.eatme", 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 | -------------------------------------------------------------------------------- /app/components/Recipe.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Text, View, Image,TouchableOpacity, WebView, Linking } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | 6 | class Recipe extends Component { 7 | 8 | constructor() { 9 | super(); 10 | this.state = { 11 | url: "" 12 | } 13 | } 14 | 15 | render() { 16 | return( 17 | this.openWebView(this.props.recipe.source_url) }> 18 | 19 | 20 | 21 | 22 | 23 | {this.props.recipe.title} 24 | Publisher: {this.props.recipe.publisher} 25 | 26 | 27 | 28 | ); 29 | }; 30 | 31 | openWebView(url) { 32 | Actions.webview({url: url}) 33 | } 34 | 35 | } 36 | 37 | const styles = { 38 | recipeViewStyle: { 39 | borderWidth: 0.5, 40 | borderColor: '#DEDEDE', 41 | height: 170, 42 | borderRadius: 2, 43 | shadowColor: '#000', 44 | shadowOffset: { width: 0, height: 2 }, 45 | shadowOpacity: 0.1, 46 | marginLeft: 20, 47 | marginRight: 20, 48 | marginTop: 20 49 | }, 50 | imageViewStyle: { 51 | height: 100, 52 | }, 53 | imageStyle: { 54 | opacity: 0.9, 55 | height: 60, 56 | width: 30, 57 | flex: 1, 58 | width: null 59 | }, 60 | titleViewStyle: { 61 | height: 70, 62 | }, 63 | titleStyle: { 64 | marginLeft: 10, 65 | marginTop: 10 66 | }, 67 | publisherStyle: { 68 | marginLeft: 10, 69 | marginTop: 10, 70 | // fontStyle: 'italic' 71 | }, 72 | } 73 | 74 | export default Recipe; 75 | -------------------------------------------------------------------------------- /ios/EatMe/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | EatMe 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 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 | NSAppTransportSecurity 28 | 29 | NSAllowsArbitraryLoads 30 | 31 | 32 | NSCameraUsageDescription 33 | EatMe requires access to your camera 34 | NSLocationWhenInUseUsageDescription 35 | 36 | NSPhotoLibraryUsageDescription 37 | EatMe requires access to your photos 38 | UIAppFonts 39 | 40 | Entypo.ttf 41 | EvilIcons.ttf 42 | FontAwesome.ttf 43 | Foundation.ttf 44 | Ionicons.ttf 45 | MaterialCommunityIcons.ttf 46 | MaterialIcons.ttf 47 | Octicons.ttf 48 | SimpleLineIcons.ttf 49 | Zocial.ttf 50 | 51 | UILaunchStoryboardName 52 | LaunchScreen 53 | UIRequiredDeviceCapabilities 54 | 55 | armv7 56 | 57 | UISupportedInterfaceOrientations 58 | 59 | UIInterfaceOrientationPortrait 60 | 61 | UIViewControllerBasedStatusBarAppearance 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /app/components/ListView.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { ScrollView } from 'react-native'; 3 | import { StartScreen } from './common'; 4 | import Realm from 'realm'; 5 | import { itemDatabase, realm } from './Schema'; 6 | import Item from './Item'; 7 | import uuid from 'uuid'; 8 | 9 | class ListView extends Component { 10 | constructor(props) { 11 | super(props); 12 | this.state = { items: [] }; 13 | this.deleteItem = this.deleteItem.bind(this); 14 | } 15 | 16 | deleteItem(id, choice) { 17 | const itemToDelete = realm.objectForPrimaryKey('ItemDB', id); 18 | let itemName = itemToDelete.itemName; 19 | realm.write(() => { 20 | realm.delete(itemToDelete); 21 | }); 22 | this.updateArray(); 23 | this.updateUsage(choice, itemName); 24 | } 25 | 26 | updateUsage(choice, itemName) { 27 | usageArray = this.queryDatabase('UsageDB','id'); 28 | let binnedCount = 0; 29 | let eatenCount = 0; 30 | if(usageArray[0] !== undefined){ 31 | binnedCount = usageArray[0].binned; 32 | eatenCount = usageArray[0].eaten; 33 | } 34 | 35 | realm.write(() => { 36 | if(choice === "binned"){ 37 | realm.create('UsageDB', { id: uuid.v1(), itemName: itemName, binned: 1 }); 38 | } else { 39 | realm.create('UsageDB', { id: uuid.v1(), itemName: itemName, eaten: 1 }); 40 | } 41 | }); 42 | } 43 | 44 | queryDatabase(databaseName, sortMethod) { 45 | let results = [ realm.objects(databaseName).sorted(sortMethod)]; 46 | resultsObject = results.map(x => Object.assign({}, x)); 47 | return resultsArray = Object.values(resultsObject[0]); 48 | } 49 | 50 | updateArray() { 51 | itemArray = this.queryDatabase('ItemDB','expirationDate'); 52 | this.setState({items: itemArray}); 53 | } 54 | 55 | componentWillMount() { 56 | this.updateArray(); 57 | } 58 | 59 | renderItems() { 60 | if (this.state.items.length > 0) { 61 | return this.state.items.map(item => ); 62 | } else { 63 | return ( ); 64 | } 65 | } 66 | 67 | render() { 68 | return ( 69 | 70 | {this.renderItems()} 71 | 72 | ); 73 | } 74 | }; 75 | 76 | export default ListView; 77 | -------------------------------------------------------------------------------- /ios/EatMeTests/EatMeTests.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 EatMeTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation EatMeTests 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 | -------------------------------------------------------------------------------- /app/screens/AddItemScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, TextInput, StyleSheet, Text, AsyncStorage, DatePickerIOS, Alert } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import { SubmitButton, ViewContainer, UpperContainer, LowerContainer, Input } from '../components/common'; 5 | import { itemDatabase, realm } from '../components/Schema'; 6 | import uuid from 'uuid'; 7 | 8 | class AddItemScreen extends Component { 9 | 10 | constructor(props) { 11 | super(props); 12 | this.state = { 13 | date: new Date(), 14 | itemName: this.props.scannedItem 15 | } 16 | } 17 | 18 | adaptDate(date) { 19 | date.setDate(date.getDate() + 1); 20 | date.setHours(0,0,0,0); 21 | this.setState({date: date}); 22 | } 23 | 24 | render() { 25 | 26 | const saveItem = () => { 27 | if(this.state.itemName === undefined) { 28 | Alert.alert( 29 | 'Please enter a food item', 30 | ) 31 | } else { 32 | Actions.main(); 33 | this.adaptDate(this.state.date); 34 | createItem(); 35 | } 36 | } 37 | 38 | const createItem = () => { 39 | realm.write(() => { 40 | let newItem = realm.create('ItemDB', { 41 | id: uuid.v1(), 42 | itemName: this.state.itemName, 43 | expirationDate: this.state.date, 44 | createdTimestamp: new Date() 45 | }); 46 | }); 47 | } 48 | 49 | return ( 50 | 51 | 52 | Enter a name and its expiry date 53 | this.setState({ itemName })} 57 | /> 58 | 59 | this.setState({date})} 63 | minimumDate={new Date()} 64 | /> 65 | 66 | 67 | 68 | 69 | SAVE TO MY LIST 70 | 71 | 72 | 73 | ); 74 | }; 75 | } 76 | 77 | const styles = StyleSheet.create({ 78 | subHeadingText: { 79 | alignSelf: 'center', 80 | color: '#323232', 81 | fontSize: 18, 82 | paddingTop: 10, 83 | paddingBottom: 10, 84 | marginTop: 10 85 | }, 86 | dateViewStyle: { 87 | marginTop: 1 88 | } 89 | }); 90 | 91 | export default AddItemScreen; 92 | -------------------------------------------------------------------------------- /app/navigations/Router.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Scene, Router, Image } from 'react-native-router-flux'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import AddItemScreen from '../screens/AddItemScreen'; 5 | import MyItemsScreen from '../screens/MyItemsScreen'; 6 | import BarcodeScannerScreen from '../screens/BarcodeScannerScreen'; 7 | import RecipeGeneratorScreen from '../screens/RecipeGeneratorScreen'; 8 | import RecipeWebView from '../components/RecipeWebView'; 9 | import Icon from 'react-native-vector-icons/FontAwesome'; 10 | 11 | const RouterComponent = () => { 12 | return ( 13 | 14 | 15 | Actions.main() } 22 | onRight={() => Actions.recipes() } 23 | rightButtonImage={require('../assets/chef.png')} 24 | /> 25 | 26 | 27 | 28 | Actions.main() } 31 | onRight={() => Actions.barcode() } 32 | title= "ADD ITEM" 33 | leftTitle= 'Back' 34 | rightTitle= {} 35 | component={ AddItemScreen } 36 | /> 37 | 38 | 39 | 40 | Actions.add() } 45 | leftTitle="Back" 46 | /> 47 | 48 | 49 | Actions.main()} 54 | leftTitle="Back" 55 | /> 56 | 57 | 58 | Actions.recipes()} 63 | leftTitle="Back" 64 | /> 65 | 66 | 67 | ) 68 | 69 | } 70 | 71 | const styles = { 72 | nav: { 73 | backgroundColor: '#FFFFFF', 74 | height: '10%' 75 | }, 76 | sceneNav: { 77 | marginLeft: '-5%', 78 | marginRight: '-5%' 79 | } 80 | } 81 | 82 | export default RouterComponent; 83 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /app/components/Item.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet } from 'react-native'; 3 | import moment from 'moment'; 4 | import Realm from 'realm'; 5 | import Swipeout from 'react-native-swipeout'; 6 | import { Actions } from 'react-native-router-flux'; 7 | import Icon from 'react-native-vector-icons/FontAwesome' 8 | 9 | class Item extends Component { 10 | constructor(props) { 11 | super(props); 12 | } 13 | render () { 14 | let swipeoutBtns = [{ 15 | text: , 16 | backgroundColor: '#e74c3c', 17 | underlayColor: 'grey', 18 | onPress: () => { this.props.deleteItem(this.props.item.id, 'binned') } 19 | }, 20 | { 21 | text: , 22 | fontSize: 30, 23 | backgroundColor: '#27ae60', 24 | underlayColor: 'grey', 25 | onPress: () => { this.props.deleteItem(this.props.item.id, 'eaten') } 26 | }]; 27 | 28 | let expirationDate = this.props.item.expirationDate; 29 | let style; 30 | if(this.daysToExpire(expirationDate) < 0) { 31 | style = styles.expired; 32 | } else if(this.daysToExpire(expirationDate) < 3) { 33 | style = styles.shortToExpire; 34 | } else if(this.daysToExpire(expirationDate) < 7) { 35 | style = styles.mediumToExpire; 36 | } 37 | 38 | return( 39 | 40 | 41 | { this.props.item.itemName } 42 | { this.getExpirationText(expirationDate) } 43 | 44 | 45 | ); 46 | } 47 | 48 | daysToExpire(expirationDate) { 49 | var today = moment(); 50 | var expirationDate = moment(expirationDate); 51 | return expirationDate.diff(today, 'days') 52 | } 53 | 54 | getExpirationText(expirationDate) { 55 | if(this.daysToExpire(expirationDate) < 0) { 56 | return 'Expired: ' + moment(expirationDate).fromNow(); 57 | } else { 58 | return 'Expires: ' + moment(expirationDate).fromNow(); 59 | } 60 | } 61 | }; 62 | 63 | const styles = StyleSheet.create( { 64 | swipeStyle: { 65 | backgroundColor: 'white', 66 | alignSelf: 'center', 67 | width: 360, 68 | marginBottom: 5 69 | }, 70 | textContainer: { 71 | height: 70, 72 | backgroundColor: '#9EE2CC', 73 | flexDirection: 'column', 74 | justifyContent: 'space-around', 75 | padding: 8 76 | }, 77 | mediumToExpire: { 78 | backgroundColor: '#F5CC99' 79 | }, 80 | shortToExpire: { 81 | backgroundColor: '#F1BABA' 82 | }, 83 | expired: { 84 | backgroundColor: '#9E9E9E' 85 | }, 86 | textStyleName: { 87 | fontSize: 15, 88 | color: '#4A4A4A' 89 | }, 90 | textStyleDate: { 91 | fontSize: 15, 92 | color: '#4A4A4A' 93 | } 94 | }); 95 | 96 | export default Item; 97 | -------------------------------------------------------------------------------- /ios/EatMe/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 | #import "RCTPushNotificationManager.h" 15 | 16 | @implementation AppDelegate 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 19 | { 20 | NSURL *jsCodeLocation; 21 | 22 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 23 | 24 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 25 | moduleName:@"EatMe" 26 | initialProperties:nil 27 | launchOptions:launchOptions]; 28 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 29 | 30 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 31 | UIViewController *rootViewController = [UIViewController new]; 32 | rootViewController.view = rootView; 33 | self.window.rootViewController = rootViewController; 34 | [self.window makeKeyAndVisible]; 35 | return YES; 36 | } 37 | 38 | // Required to register for notifications 39 | - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings 40 | { 41 | [RCTPushNotificationManager didRegisterUserNotificationSettings:notificationSettings]; 42 | } 43 | // Required for the register event. 44 | - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken 45 | { 46 | [RCTPushNotificationManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; 47 | } 48 | // Required for the notification event. You must call the completion handler after handling the remote notification. 49 | - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo 50 | fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler 51 | { 52 | [RCTPushNotificationManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; 53 | } 54 | // Required for the registrationError event. 55 | - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error 56 | { 57 | [RCTPushNotificationManager didFailToRegisterForRemoteNotificationsWithError:error]; 58 | } 59 | // Required for the localNotification event. 60 | - (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification 61 | { 62 | [RCTPushNotificationManager didReceiveLocalNotification:notification]; 63 | } 64 | 65 | @end 66 | -------------------------------------------------------------------------------- /app/components/BarcodeScanner.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, StyleSheet, TouchableHighlight, Text, Alert, Image } from 'react-native'; 3 | import Camera from 'react-native-camera'; 4 | import axios from 'axios'; 5 | import _ from 'lodash'; 6 | import { Actions } from 'react-native-router-flux'; 7 | import Icon from 'react-native-vector-icons/FontAwesome'; 8 | import * as Animatable from 'react-native-animatable'; 9 | 10 | class BarcodeScanner extends Component { 11 | constructor() { 12 | super(); 13 | this.state = { 14 | showCamera: true, 15 | scannedItem: "" 16 | } 17 | } 18 | 19 | render() { 20 | if (this.state.showCamera) { 21 | return ( 22 | 23 | 24 | { 26 | this.camera = cam; 27 | }} 28 | style={styles.cameraPreview} 29 | aspect={Camera.constants.Aspect.fill} 30 | onBarCodeRead={(data) => this.requestItemInformation(data)} 31 | > 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | ); 40 | } else { 41 | return ( 42 | 43 | 44 | 45 | 46 | {this.checkResponse(this.state.scannedItem)} 47 | 48 | ); 49 | } 50 | } 51 | 52 | checkResponse(scannedItem) { 53 | if(scannedItem !== ""){ 54 | Actions.add({scannedItem: scannedItem}) 55 | } 56 | } 57 | 58 | requestItemInformation(data) { 59 | this.setState({showCamera: false}); 60 | var barcodeNumber = data.data; 61 | axios.get('https://api.upcdatabase.org/json/128009a43963c119609bd223c9f249cf/' + barcodeNumber) 62 | .then(response => this.setState({ scannedItem: response.data.description })); 63 | } 64 | } 65 | 66 | const styles = StyleSheet.create({ 67 | container: { 68 | flex: 1, 69 | alignItems: 'stretch' 70 | }, 71 | cameraContainer: { 72 | flex: 1 73 | }, 74 | tutorialImageContainer: { 75 | flex: 1, 76 | alignItems: 'center' 77 | }, 78 | tutorialImage: { 79 | flex: 1, 80 | width: 200, 81 | height: 200, 82 | opacity: 0.6, 83 | marginTop: 40 84 | }, 85 | cameraPreview: { 86 | flex: 1 87 | }, 88 | overlayStyle: { 89 | alignSelf: 'center', 90 | marginTop: 65 91 | }, 92 | loadingContainer: { 93 | flex: 1, 94 | alignItems: 'center' 95 | }, 96 | loading: { 97 | justifyContent: 'center', 98 | alignItems: 'center', 99 | marginTop: 40 100 | } 101 | }); 102 | 103 | export default BarcodeScanner; 104 | -------------------------------------------------------------------------------- /app/components/RecipeList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Image, Text, Alert, ScrollView, TouchableHighlight, WebView } from 'react-native'; 3 | import Realm from 'realm'; 4 | import { realm } from './Schema'; 5 | import { ItemDB } from './Schema'; 6 | import axios from 'axios'; 7 | import Recipe from './Recipe'; 8 | import NoRecipes from './common/NoRecipes'; 9 | import Icon from 'react-native-vector-icons/FontAwesome'; 10 | import * as Animatable from 'react-native-animatable'; 11 | 12 | class RecipeList extends Component { 13 | constructor(props) { 14 | super(props); 15 | this.state = { 16 | items: [], 17 | recipes: [], 18 | loading: true 19 | }; 20 | } 21 | 22 | componentDidMount() { 23 | if (this.state.items.length > 4) { 24 | var items = this.generateQuery(4); 25 | } else { 26 | var items = this.generateQuery(this.state.items.length); 27 | } 28 | axios.get('http://food2fork.com/api/search?key=b2eb251598eb1b9ffa9244ceab691efa&q=' + items) 29 | .then(response => this.setState({ recipes: response.data.recipes, 30 | loading: false 31 | })); 32 | } 33 | 34 | generateQuery(numberOfItems) { 35 | queryArray = []; 36 | for (var i = 0; i < numberOfItems; i++) { 37 | queryArray.push(this.state.items[i].itemName); 38 | }; 39 | return queryArray.join(','); 40 | } 41 | 42 | 43 | loading() { 44 | if (this.state.loading === true) { 45 | return ( 46 | 47 | 48 | 49 | 50 | 51 | ); 52 | }; 53 | } 54 | 55 | componentWillMount() { 56 | let results = [ realm.objects('ItemDB').sorted('expirationDate')]; 57 | itemObject = results.map(x => Object.assign({}, x)); 58 | itemArray = Object.values(itemObject[0]); 59 | this.setState({ items: itemArray }) 60 | } 61 | 62 | renderRecipes() { 63 | if (this.state.items.length > 0) { 64 | return this.state.recipes.map(recipe => 65 | 66 | ); 67 | } else { 68 | return 69 | } 70 | } 71 | 72 | render() { 73 | if (this.state.items.length > 0) { 74 | return ( 75 | 76 | {this.loading()} 77 | {this.renderRecipes()} 78 | 79 | ); 80 | } else { 81 | return ( 82 | 83 | {this.renderRecipes()} 84 | 85 | ); 86 | } 87 | } 88 | 89 | _threeOrMoreItems() { 90 | return this.state.items.length >= 3; 91 | } 92 | _twoItems() { 93 | return this.state.items.length === 2; 94 | } 95 | _oneItem() { 96 | return this.state.items.length === 1; 97 | } 98 | }; 99 | 100 | const styles = { 101 | loadingContainer: { 102 | flex: 1, 103 | alignItems: 'center' 104 | }, 105 | loading: { 106 | justifyContent: 'center', 107 | alignItems: 'center', 108 | marginTop: 40 109 | } 110 | } 111 | 112 | export default RecipeList; 113 | -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { AppState, Platform } from 'react-native'; 3 | import Router from './navigations/Router.js' 4 | import PushNotification from 'react-native-push-notification' 5 | import Realm from 'realm'; 6 | import { realm, ItemDB, UsageDB } from './components/Schema'; 7 | import moment from 'moment'; 8 | import pluralize from 'pluralize'; 9 | 10 | export default class App extends Component { 11 | constructor(props) { 12 | super(props); 13 | this.handleAppStateChange = this.handleAppStateChange.bind(this); 14 | let expiringItemsCount = this.getExpiringItemsCount(); 15 | let binnedItems = this.getBinnedItems(); 16 | this.state = { 17 | expiringItemsCount, 18 | binnedItems 19 | } 20 | } 21 | 22 | componentDidMount() { 23 | AppState.addEventListener('change', this.handleAppStateChange); 24 | this.timer = setInterval(() => { 25 | this.setState({ expiringItemsCount: this.getExpiringItemsCount() }); 26 | this.setState({ binnedItems: this.getBinnedItems() }) 27 | }, 4000); 28 | } 29 | 30 | componentWillMount() { 31 | AppState.removeEventListener('change', this.handleAppStateChange); 32 | clearInterval(this.timer) 33 | } 34 | 35 | handleAppStateChange(appState) { 36 | if (appState === 'background' && this.state.expiringItemsCount > 0) { 37 | let date = new Date(Date.now() + (2 * 1000))//moment({hour: 9, minute: 0, seconds: 0}); 38 | let message = this.getNotificationMessage(); 39 | 40 | PushNotification.localNotificationSchedule({ 41 | message: message, 42 | date: date, 43 | repeatType: 'day' 44 | }); 45 | } 46 | 47 | if (appState === 'background') { 48 | let date = new Date(Date.now() + (4 * 1000)) //moment({ hour: 21, minute: 31, seconds: 0 }) 49 | let message = this.getWeeklyUsageMessage(); 50 | 51 | PushNotification.localNotificationSchedule({ 52 | message: message, 53 | date: date, 54 | repeatType: 'week' 55 | }); 56 | } 57 | } 58 | 59 | getExpiringItemsCount() { 60 | specificDay = new Date; 61 | nextDay = new Date(new Date().getTime() + 24 * 60 * 60 * 1000); 62 | itemsExpiringToday = this.queryDatabase('ItemDB', 'expirationDate >= $0 && expirationDate < $1', specificDay, nextDay); 63 | return itemsExpiringToday.length; 64 | } 65 | 66 | getBinnedItems() { 67 | startOfWeek = new Date(new Date().getTime() - 168 * 60 * 60 * 1000); 68 | endOfWeek = new Date; 69 | binnedItems = this.queryDatabase('UsageDB', 'createdTimestamp >= $0 && createdTimestamp < $1 && binned = 1', startOfWeek, endOfWeek); 70 | return binnedItems; 71 | } 72 | 73 | getNotificationMessage() { 74 | return 'You have ' + this.state.expiringItemsCount.toString() + " " + pluralize('item',this.state.expiringItemsCount) + ' that will expire today'; 75 | } 76 | 77 | getWeeklyUsageMessage() { 78 | if (this.state.binnedItems.length < 5) { 79 | return 'You threw away ' + this.state.binnedItems.length.toString() + " " + pluralize('item',this.state.binnedItems.length) + ' this week 👍'; 80 | } else { 81 | return 'You threw away ' + this.state.binnedItems.length.toString() + " " + pluralize('item',this.state.binnedItems.length) + ' this week 😩'; 82 | } 83 | } 84 | 85 | queryDatabase(databaseName, filteredBy, startDate, endDate) { 86 | let results = [ realm.objects(databaseName).filtered(filteredBy, startDate, endDate)]; 87 | resultsObject = results.map(x => Object.assign({}, x)); 88 | resultsArray = Object.values(resultsObject[0]); 89 | return resultsArray; 90 | } 91 | 92 | render() { 93 | return ( 94 | 95 | ); 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /ios/EatMe/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /ios/EatMe/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "57x57", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-57x57@1x.png", 49 | "scale" : "1x" 50 | }, 51 | { 52 | "size" : "57x57", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-57x57@2x.png", 55 | "scale" : "2x" 56 | }, 57 | { 58 | "size" : "60x60", 59 | "idiom" : "iphone", 60 | "filename" : "Icon-App-60x60@2x.png", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "size" : "60x60", 65 | "idiom" : "iphone", 66 | "filename" : "Icon-App-60x60@3x.png", 67 | "scale" : "3x" 68 | }, 69 | { 70 | "size" : "20x20", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-20x20@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "20x20", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-20x20@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "29x29", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-29x29@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "29x29", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-29x29@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "40x40", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-40x40@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "40x40", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-40x40@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "50x50", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-Small-50x50@1x.png", 109 | "scale" : "1x" 110 | }, 111 | { 112 | "size" : "50x50", 113 | "idiom" : "ipad", 114 | "filename" : "Icon-Small-50x50@2x.png", 115 | "scale" : "2x" 116 | }, 117 | { 118 | "size" : "72x72", 119 | "idiom" : "ipad", 120 | "filename" : "Icon-App-72x72@1x.png", 121 | "scale" : "1x" 122 | }, 123 | { 124 | "size" : "72x72", 125 | "idiom" : "ipad", 126 | "filename" : "Icon-App-72x72@2x.png", 127 | "scale" : "2x" 128 | }, 129 | { 130 | "size" : "76x76", 131 | "idiom" : "ipad", 132 | "filename" : "Icon-App-76x76@1x.png", 133 | "scale" : "1x" 134 | }, 135 | { 136 | "size" : "76x76", 137 | "idiom" : "ipad", 138 | "filename" : "Icon-App-76x76@2x.png", 139 | "scale" : "2x" 140 | }, 141 | { 142 | "size" : "83.5x83.5", 143 | "idiom" : "ipad", 144 | "filename" : "Icon-App-83.5x83.5@2x.png", 145 | "scale" : "2x" 146 | }, 147 | { 148 | "size" : "40x40", 149 | "idiom" : "iphone", 150 | "filename" : "Icon-App-40x40@1x.png", 151 | "scale" : "1x" 152 | }, 153 | { 154 | "size" : "60x60", 155 | "idiom" : "iphone", 156 | "filename" : "Icon-App-60x60@1x.png", 157 | "scale" : "1x" 158 | }, 159 | { 160 | "size" : "76x76", 161 | "idiom" : "iphone", 162 | "filename" : "Icon-App-76x76@1x.png", 163 | "scale" : "1x" 164 | }, 165 | { 166 | "size" : "76x76", 167 | "idiom" : "ipad", 168 | "filename" : "Icon-App-76x76@3x.png", 169 | "scale" : "3x" 170 | } 171 | ], 172 | "info" : { 173 | "version" : 1, 174 | "author" : "xcode" 175 | } 176 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Eat Me 2 | 3 | Eat Me is a native iOS app that helps users keep track of their foods expiration dates to reduce food waste. 4 | The app lets users add their food items, either manually or by scanning the barcode, and specify an expiration date. It then keeps track of when the food goes off and sends a notification in the morning if one or more items is soon to expire. 5 | 6 | When deleting an item, the user has an option to either mark it as "eaten" or "binned". This way the app can send a weekly notification with the amount of items wasted that week. 7 | 8 | Eat Me also lets users look up recipes specifically based on the items that are soon to expire. 9 | 10 | *The app was built in 8 days using React Native.* 11 | 12 | ![alt text](http://i.imgur.com/6WTJeRP.jpg) 13 | 14 | ### Contributors 15 | 16 | [Sean Blundell](https://github.com/Simba14) | 17 | [Pete Wilkins](https://github.com/petewilkins) | 18 | [Jessica Rodriguez](https://github.com/j-rods) | 19 | [Magnus Holm](https://github.com/mghlm) 20 | 21 | 22 | 23 | 24 | ### How to demo the app 25 | 26 | **1. Install node (if you haven't already)** 27 | ``` 28 | $ brew install node 29 | ``` 30 | **2. Clone and update repo** 31 | ``` 32 | $ git clone git@github.com:Simba14/EatMe.git 33 | $ cd EatMe 34 | $ npm install 35 | ``` 36 | If you encounter any errors, update note and try again 37 | ``` 38 | $ npm update 39 | ``` 40 | 41 | **3. Download xcode** 42 | 43 | - [Download Xcode here along with other useful tools](http://www.preparetocode.io/pick-your-os/) 44 | 45 | **4. Set up simulator** 46 | 47 | - Make sure you're in the EatMe directory 48 | 49 | ``` 50 | $ react-native run-ios 51 | ``` 52 | 53 | **5. Have fun!** 54 | 55 | 56 | 57 | 58 | 66 | 67 | 68 | ### Technologies used 69 | 70 | - [React Native](https://facebook.github.io/react-native/) 71 | (Main language used to built the app.) 72 | 73 | - [Jest](https://facebook.github.io/jest/) 74 | (Testing framework) 75 | 76 | - [Realm](https://realm.io/) 77 | (Used to set up local databases to store information about food items) 78 | 79 | - [FlexBox](https://facebook.github.io/react-native/docs/flexbox.html) 80 | (Used to style the app) 81 | 82 | - [UPC Database API](https://www.upcdatabase.com/) 83 | (API used for looking up food items based on Barcode information) 84 | 85 | - [Food2Fork API](http://food2fork.com/about/api) 86 | (API used for looking up recipes based on user's current food items) 87 | 88 | ### Acknowledgements 89 | 90 | [Stephen Grider](https://www.udemy.com/user/sgslo/) from Udmey. 91 | 92 | ### Future Additions 93 | 94 | - Android version 95 | 96 | ### Screenshots 97 | 98 | ![alt text](http://i.imgur.com/zWJ4DDu.jpg) 99 | 100 | 103 | 104 | ### User stories for MVP: 105 | 106 | ``` 107 | As a user 108 | So that I can keep track of my food items 109 | I want to be able to add an item to a new list 110 | ``` 111 | ``` 112 | As a user 113 | So I know when my food expire 114 | I want to be able to specify a date when adding an item 115 | ``` 116 | ``` 117 | As a user 118 | So that I can check which food items I currently have 119 | I want to be able to view a list of items 120 | ``` 121 | ``` 122 | As a user 123 | So that I can see what items expire first 124 | I want to be able to view them sorted after date 125 | ``` 126 | ``` 127 | As a user 128 | So that I don’t accidentally eat expired food 129 | I want items that has reached the expiration date to be highlighted 130 | ``` 131 | ``` 132 | As a user 133 | So that I can keep my list updated 134 | I want to be able to delete an item 135 | ``` 136 | 137 | ### User stories for more features 138 | ``` 139 | As a user 140 | So that I can add my items quicker 141 | I want to be able to scan their barcode 142 | ``` 143 | ``` 144 | As a user 145 | So that I can easily get my soon-to-be expired items used 146 | I want to be able to look up recipes based on those items 147 | ``` 148 | ``` 149 | As a user 150 | So that I can get reminded of what items goes bad 151 | I want to receive a notification in the morning 152 | ``` 153 | ``` 154 | As a user 155 | So that I can keep track of how much of my food goes to waste 156 | I want to be able to specify whether an item was binned or eaten when deleted 157 | ``` 158 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/CommonComponents-test.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`renders the Input component correctly 1`] = ` 4 | 27 | `; 28 | 29 | exports[`renders the LowerContainer component correctly 1`] = ` 30 | 44 | `; 45 | 46 | exports[`renders the StartScreen component correctly 1`] = ` 47 | 58 | 69 | Get Started 70 | 71 | 85 | Add your first item and start tracking your food 86 | 87 | 90 | 91 | `; 92 | 93 | exports[`renders the SubmitButton component correctly 1`] = ` 94 | 117 | 137 | 152 | 153 | 154 | `; 155 | 156 | exports[`renders the UpperContainer component correctly 1`] = ` 157 | 172 | `; 173 | 174 | exports[`renders the ViewContainer component correctly 1`] = ` 175 | 190 | `; 191 | -------------------------------------------------------------------------------- /ios/EatMe.xcodeproj/xcshareddata/xcschemes/EatMe.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/EatMe.xcodeproj/xcshareddata/xcschemes/EatMe-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /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 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"], 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.eatme" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':react-native-svg') 130 | compile project(':react-native-vector-icons') 131 | compile project(':react-native-linear-gradient') 132 | compile project(':react-native-camera') 133 | compile project(':react-native-push-notification') 134 | compile project(':realm') 135 | compile fileTree(dir: "libs", include: ["*.jar"]) 136 | compile "com.android.support:appcompat-v7:23.0.1" 137 | compile "com.facebook.react:react-native:+" // From node_modules 138 | } 139 | 140 | // Run this once to be able to run the application with BUCK 141 | // puts all compile dependencies into folder libs for BUCK to use 142 | task copyDownloadableDepsToLibs(type: Copy) { 143 | from configurations.compile 144 | into 'libs' 145 | } 146 | -------------------------------------------------------------------------------- /ios/EatMe.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* EatMeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EatMeTests.m */; }; 16 | 07BD58BE9294476B9D8A54EF /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2A458C92CF9248F7A4D808D7 /* Ionicons.ttf */; }; 17 | 07F62FE51DB1422084D4C363 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2AF3D7B31E1A4415981FFE7D /* Entypo.ttf */; }; 18 | 0A6757EBFFF5403E805601B7 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B060B067FBDD4784AA7CA963 /* EvilIcons.ttf */; }; 19 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 20 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 21 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 22 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 23 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 24 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 25 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 26 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 27 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 28 | 22F26F03A2C649BDB18D881C /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 469B9199FFB24064BCA8DD21 /* libz.tbd */; }; 29 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 30 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 31 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 32 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 33 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 34 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 35 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 36 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 37 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 38 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 39 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 40 | 2DCD954D1E0B4F2C00145EB5 /* EatMeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EatMeTests.m */; }; 41 | 383E555DAC2240008762EE0C /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5479320A4F004403B0FAF20B /* Foundation.ttf */; }; 42 | 3EB44B7EADD34C37A9093EC6 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0411E6C48C0648E98000C036 /* MaterialCommunityIcons.ttf */; }; 43 | 55F64C831ED9B443002FA05D /* libRCTPushNotification.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 55F64C701ED9B321002FA05D /* libRCTPushNotification.a */; }; 44 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 45 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 46 | 8B64114B1EDA4B589127BED3 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 37250DB011644F87B6FA6BCB /* FontAwesome.ttf */; }; 47 | 9156D12DEBF94D74B77FF18F /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 376FB46961A943D8B5F24F93 /* libRCTCamera.a */; }; 48 | B07479EF81B44F539611CD8A /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CC0DAC6CA5024E43A5B84AE8 /* Zocial.ttf */; }; 49 | C2AD27A2139A48E282C1E94C /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 33F4235686F84214B15034F9 /* libRNVectorIcons.a */; }; 50 | C302BF401ED98E010096C500 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C302BF281ED98DDC0096C500 /* libRCTCamera.a */; }; 51 | C339B1DD1EDCBDE500814FEE /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C339B1BF1EDCBDC100814FEE /* libBVLinearGradient.a */; }; 52 | C86B1E0FFA524989A3FABD4E /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AA2BED57F108476381565140 /* MaterialIcons.ttf */; }; 53 | DE18676B1B64483F9C9869DF /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75E0C8A3A61243918A24DE13 /* libc++.tbd */; }; 54 | F0F0F98B02104FC189388F2F /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CA8C11DC4B7747AB9770D81F /* Octicons.ttf */; }; 55 | F199F6FC143B4B53A74CA8E9 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 44A3217D828A4404B19D300A /* SimpleLineIcons.ttf */; }; 56 | F221942E00454561A900CF10 /* libRealmReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DA9AEC57430A45D2BB5F7B5D /* libRealmReact.a */; }; 57 | /* End PBXBuildFile section */ 58 | 59 | /* Begin PBXContainerItemProxy section */ 60 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTActionSheet; 66 | }; 67 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 72 | remoteInfo = RCTGeolocation; 73 | }; 74 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 79 | remoteInfo = RCTImage; 80 | }; 81 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 86 | remoteInfo = RCTNetwork; 87 | }; 88 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 91 | proxyType = 2; 92 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 93 | remoteInfo = RCTVibration; 94 | }; 95 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 98 | proxyType = 1; 99 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 100 | remoteInfo = EatMe; 101 | }; 102 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 107 | remoteInfo = RCTSettings; 108 | }; 109 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 114 | remoteInfo = RCTWebSocket; 115 | }; 116 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 119 | proxyType = 2; 120 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 121 | remoteInfo = React; 122 | }; 123 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 126 | proxyType = 1; 127 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 128 | remoteInfo = "EatMe-tvOS"; 129 | }; 130 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 135 | remoteInfo = "RCTImage-tvOS"; 136 | }; 137 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 142 | remoteInfo = "RCTLinking-tvOS"; 143 | }; 144 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 149 | remoteInfo = "RCTNetwork-tvOS"; 150 | }; 151 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 156 | remoteInfo = "RCTSettings-tvOS"; 157 | }; 158 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 163 | remoteInfo = "RCTText-tvOS"; 164 | }; 165 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 170 | remoteInfo = "RCTWebSocket-tvOS"; 171 | }; 172 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 177 | remoteInfo = "React-tvOS"; 178 | }; 179 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 184 | remoteInfo = yoga; 185 | }; 186 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 191 | remoteInfo = "yoga-tvOS"; 192 | }; 193 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 198 | remoteInfo = cxxreact; 199 | }; 200 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 205 | remoteInfo = "cxxreact-tvOS"; 206 | }; 207 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 212 | remoteInfo = jschelpers; 213 | }; 214 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 219 | remoteInfo = "jschelpers-tvOS"; 220 | }; 221 | 550A003E1EDEB4C2005DA3CD /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 08EAF5F9B0D94798B63E9915 /* RNSVG.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 0CF68AC11AF0540F00FF9E5C; 226 | remoteInfo = RNSVG; 227 | }; 228 | 557D4EB01ED776AD00AD4CA4 /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = FA127C8024A040D7AFC11BA0 /* RealmReact.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = F60690131CA2766F0003FB26; 233 | remoteInfo = RealmReact; 234 | }; 235 | 55F64C6F1ED9B321002FA05D /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 55F64C601ED9B321002FA05D /* RCTPushNotification.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 240 | remoteInfo = RCTPushNotification; 241 | }; 242 | 55F64C711ED9B321002FA05D /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = 55F64C601ED9B321002FA05D /* RCTPushNotification.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 3D05745F1DE6004600184BB4; 247 | remoteInfo = "RCTPushNotification-tvOS"; 248 | }; 249 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 250 | isa = PBXContainerItemProxy; 251 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 252 | proxyType = 2; 253 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 254 | remoteInfo = RCTAnimation; 255 | }; 256 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 257 | isa = PBXContainerItemProxy; 258 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 259 | proxyType = 2; 260 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 261 | remoteInfo = "RCTAnimation-tvOS"; 262 | }; 263 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 264 | isa = PBXContainerItemProxy; 265 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 266 | proxyType = 2; 267 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 268 | remoteInfo = RCTLinking; 269 | }; 270 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 271 | isa = PBXContainerItemProxy; 272 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 273 | proxyType = 2; 274 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 275 | remoteInfo = RCTText; 276 | }; 277 | C302BF271ED98DDC0096C500 /* PBXContainerItemProxy */ = { 278 | isa = PBXContainerItemProxy; 279 | containerPortal = C302BF201ED98DDC0096C500 /* RCTCamera.xcodeproj */; 280 | proxyType = 2; 281 | remoteGlobalIDString = 4107012F1ACB723B00C6AA39; 282 | remoteInfo = RCTCamera; 283 | }; 284 | C339B1BE1EDCBDC100814FEE /* PBXContainerItemProxy */ = { 285 | isa = PBXContainerItemProxy; 286 | containerPortal = C339B1BA1EDCBDC000814FEE /* BVLinearGradient.xcodeproj */; 287 | proxyType = 2; 288 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 289 | remoteInfo = BVLinearGradient; 290 | }; 291 | C339B2251EDDD99900814FEE /* PBXContainerItemProxy */ = { 292 | isa = PBXContainerItemProxy; 293 | containerPortal = 9BD98506070B4286953F3691 /* RCTCamera.xcodeproj */; 294 | proxyType = 2; 295 | remoteGlobalIDString = 4107012F1ACB723B00C6AA39; 296 | remoteInfo = RCTCamera; 297 | }; 298 | C339B2431EDDD9B200814FEE /* PBXContainerItemProxy */ = { 299 | isa = PBXContainerItemProxy; 300 | containerPortal = 15F9E91AA38A4EA3A9BD9027 /* RNVectorIcons.xcodeproj */; 301 | proxyType = 2; 302 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 303 | remoteInfo = RNVectorIcons; 304 | }; 305 | /* End PBXContainerItemProxy section */ 306 | 307 | /* Begin PBXFileReference section */ 308 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 309 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 310 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 311 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 312 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 313 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 314 | 00E356EE1AD99517003FC87E /* EatMeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EatMeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 315 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 316 | 00E356F21AD99517003FC87E /* EatMeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EatMeTests.m; sourceTree = ""; }; 317 | 0411E6C48C0648E98000C036 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 318 | 08EAF5F9B0D94798B63E9915 /* RNSVG.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNSVG.xcodeproj; path = "../node_modules/react-native-svg/ios/RNSVG.xcodeproj"; sourceTree = ""; }; 319 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 320 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 321 | 13B07F961A680F5B00A75B9A /* EatMe.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EatMe.app; sourceTree = BUILT_PRODUCTS_DIR; }; 322 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = EatMe/AppDelegate.h; sourceTree = ""; }; 323 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = EatMe/AppDelegate.m; sourceTree = ""; }; 324 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 325 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = EatMe/Images.xcassets; sourceTree = ""; }; 326 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = EatMe/Info.plist; sourceTree = ""; }; 327 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = EatMe/main.m; sourceTree = ""; }; 328 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 329 | 15F9E91AA38A4EA3A9BD9027 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 330 | 2A458C92CF9248F7A4D808D7 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 331 | 2AF3D7B31E1A4415981FFE7D /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 332 | 2D02E47B1E0B4A5D006451C7 /* EatMe-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "EatMe-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 333 | 2D02E4901E0B4A5D006451C7 /* EatMe-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "EatMe-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 334 | 33F4235686F84214B15034F9 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 335 | 37250DB011644F87B6FA6BCB /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 336 | 376FB46961A943D8B5F24F93 /* libRCTCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTCamera.a; sourceTree = ""; }; 337 | 44A3217D828A4404B19D300A /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 338 | 469B9199FFB24064BCA8DD21 /* libz.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 339 | 5479320A4F004403B0FAF20B /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 340 | 55F64C601ED9B321002FA05D /* RCTPushNotification.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTPushNotification.xcodeproj; path = "../node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj"; sourceTree = ""; }; 341 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 342 | 75E0C8A3A61243918A24DE13 /* libc++.tbd */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; 343 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 344 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 345 | 9BD98506070B4286953F3691 /* RCTCamera.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RCTCamera.xcodeproj"; sourceTree = ""; }; 346 | AA2BED57F108476381565140 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 347 | B060B067FBDD4784AA7CA963 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 348 | C302BF201ED98DDC0096C500 /* RCTCamera.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RCTCamera.xcodeproj"; sourceTree = ""; }; 349 | C339B1BA1EDCBDC000814FEE /* BVLinearGradient.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = BVLinearGradient.xcodeproj; path = "../node_modules/react-native-linear-gradient/BVLinearGradient.xcodeproj"; sourceTree = ""; }; 350 | CA8C11DC4B7747AB9770D81F /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 351 | CC0DAC6CA5024E43A5B84AE8 /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 352 | DA9AEC57430A45D2BB5F7B5D /* libRealmReact.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRealmReact.a; sourceTree = ""; }; 353 | FA127C8024A040D7AFC11BA0 /* RealmReact.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RealmReact.xcodeproj; path = "../node_modules/realm/react-native/ios/RealmReact.xcodeproj"; sourceTree = ""; }; 354 | /* End PBXFileReference section */ 355 | 356 | /* Begin PBXFrameworksBuildPhase section */ 357 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 358 | isa = PBXFrameworksBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 366 | isa = PBXFrameworksBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | C339B1DD1EDCBDE500814FEE /* libBVLinearGradient.a in Frameworks */, 370 | C302BF401ED98E010096C500 /* libRCTCamera.a in Frameworks */, 371 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 372 | 55F64C831ED9B443002FA05D /* libRCTPushNotification.a in Frameworks */, 373 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 374 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 375 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 376 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 377 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 378 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 379 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 380 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 381 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 382 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 383 | F221942E00454561A900CF10 /* libRealmReact.a in Frameworks */, 384 | DE18676B1B64483F9C9869DF /* libc++.tbd in Frameworks */, 385 | 22F26F03A2C649BDB18D881C /* libz.tbd in Frameworks */, 386 | 9156D12DEBF94D74B77FF18F /* libRCTCamera.a in Frameworks */, 387 | C2AD27A2139A48E282C1E94C /* libRNVectorIcons.a in Frameworks */, 388 | ); 389 | runOnlyForDeploymentPostprocessing = 0; 390 | }; 391 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 392 | isa = PBXFrameworksBuildPhase; 393 | buildActionMask = 2147483647; 394 | files = ( 395 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 396 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 397 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 398 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 399 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 400 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 401 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 402 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 403 | ); 404 | runOnlyForDeploymentPostprocessing = 0; 405 | }; 406 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 407 | isa = PBXFrameworksBuildPhase; 408 | buildActionMask = 2147483647; 409 | files = ( 410 | ); 411 | runOnlyForDeploymentPostprocessing = 0; 412 | }; 413 | /* End PBXFrameworksBuildPhase section */ 414 | 415 | /* Begin PBXGroup section */ 416 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 417 | isa = PBXGroup; 418 | children = ( 419 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 420 | ); 421 | name = Products; 422 | sourceTree = ""; 423 | }; 424 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 425 | isa = PBXGroup; 426 | children = ( 427 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 428 | ); 429 | name = Products; 430 | sourceTree = ""; 431 | }; 432 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 433 | isa = PBXGroup; 434 | children = ( 435 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 436 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 437 | ); 438 | name = Products; 439 | sourceTree = ""; 440 | }; 441 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 445 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 454 | ); 455 | name = Products; 456 | sourceTree = ""; 457 | }; 458 | 00E356EF1AD99517003FC87E /* EatMeTests */ = { 459 | isa = PBXGroup; 460 | children = ( 461 | 00E356F21AD99517003FC87E /* EatMeTests.m */, 462 | 00E356F01AD99517003FC87E /* Supporting Files */, 463 | ); 464 | path = EatMeTests; 465 | sourceTree = ""; 466 | }; 467 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 468 | isa = PBXGroup; 469 | children = ( 470 | 00E356F11AD99517003FC87E /* Info.plist */, 471 | ); 472 | name = "Supporting Files"; 473 | sourceTree = ""; 474 | }; 475 | 139105B71AF99BAD00B5F7CC /* Products */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 479 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 480 | ); 481 | name = Products; 482 | sourceTree = ""; 483 | }; 484 | 139FDEE71B06529A00C62182 /* Products */ = { 485 | isa = PBXGroup; 486 | children = ( 487 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 488 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 489 | ); 490 | name = Products; 491 | sourceTree = ""; 492 | }; 493 | 13B07FAE1A68108700A75B9A /* EatMe */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 497 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 498 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 499 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 500 | 13B07FB61A68108700A75B9A /* Info.plist */, 501 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 502 | 13B07FB71A68108700A75B9A /* main.m */, 503 | ); 504 | name = EatMe; 505 | sourceTree = ""; 506 | }; 507 | 146834001AC3E56700842450 /* Products */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 146834041AC3E56700842450 /* libReact.a */, 511 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 512 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 513 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 514 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 515 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 516 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 517 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 518 | ); 519 | name = Products; 520 | sourceTree = ""; 521 | }; 522 | 550A001C1EDEB4C2005DA3CD /* Products */ = { 523 | isa = PBXGroup; 524 | children = ( 525 | 550A003F1EDEB4C2005DA3CD /* libRNSVG.a */, 526 | ); 527 | name = Products; 528 | sourceTree = ""; 529 | }; 530 | 557D4E941ED776AC00AD4CA4 /* Products */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | 557D4EB11ED776AD00AD4CA4 /* libRealmReact.a */, 534 | ); 535 | name = Products; 536 | sourceTree = ""; 537 | }; 538 | 55F64C611ED9B321002FA05D /* Products */ = { 539 | isa = PBXGroup; 540 | children = ( 541 | 55F64C701ED9B321002FA05D /* libRCTPushNotification.a */, 542 | 55F64C721ED9B321002FA05D /* libRCTPushNotification-tvOS.a */, 543 | ); 544 | name = Products; 545 | sourceTree = ""; 546 | }; 547 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 548 | isa = PBXGroup; 549 | children = ( 550 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 551 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 552 | ); 553 | name = Products; 554 | sourceTree = ""; 555 | }; 556 | 78C398B11ACF4ADC00677621 /* Products */ = { 557 | isa = PBXGroup; 558 | children = ( 559 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 560 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 561 | ); 562 | name = Products; 563 | sourceTree = ""; 564 | }; 565 | 7C985E32BDCC499D82F97653 /* Resources */ = { 566 | isa = PBXGroup; 567 | children = ( 568 | 2AF3D7B31E1A4415981FFE7D /* Entypo.ttf */, 569 | B060B067FBDD4784AA7CA963 /* EvilIcons.ttf */, 570 | 37250DB011644F87B6FA6BCB /* FontAwesome.ttf */, 571 | 5479320A4F004403B0FAF20B /* Foundation.ttf */, 572 | 2A458C92CF9248F7A4D808D7 /* Ionicons.ttf */, 573 | 0411E6C48C0648E98000C036 /* MaterialCommunityIcons.ttf */, 574 | AA2BED57F108476381565140 /* MaterialIcons.ttf */, 575 | CA8C11DC4B7747AB9770D81F /* Octicons.ttf */, 576 | 44A3217D828A4404B19D300A /* SimpleLineIcons.ttf */, 577 | CC0DAC6CA5024E43A5B84AE8 /* Zocial.ttf */, 578 | ); 579 | name = Resources; 580 | sourceTree = ""; 581 | }; 582 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 583 | isa = PBXGroup; 584 | children = ( 585 | C339B1BA1EDCBDC000814FEE /* BVLinearGradient.xcodeproj */, 586 | 55F64C601ED9B321002FA05D /* RCTPushNotification.xcodeproj */, 587 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 588 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 589 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 590 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 591 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 592 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 593 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 594 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 595 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 596 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 597 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 598 | FA127C8024A040D7AFC11BA0 /* RealmReact.xcodeproj */, 599 | 9BD98506070B4286953F3691 /* RCTCamera.xcodeproj */, 600 | 15F9E91AA38A4EA3A9BD9027 /* RNVectorIcons.xcodeproj */, 601 | 08EAF5F9B0D94798B63E9915 /* RNSVG.xcodeproj */, 602 | ); 603 | name = Libraries; 604 | sourceTree = ""; 605 | }; 606 | 832341B11AAA6A8300B99B32 /* Products */ = { 607 | isa = PBXGroup; 608 | children = ( 609 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 610 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 611 | ); 612 | name = Products; 613 | sourceTree = ""; 614 | }; 615 | 83CBB9F61A601CBA00E9B192 = { 616 | isa = PBXGroup; 617 | children = ( 618 | C302BF201ED98DDC0096C500 /* RCTCamera.xcodeproj */, 619 | 13B07FAE1A68108700A75B9A /* EatMe */, 620 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 621 | 00E356EF1AD99517003FC87E /* EatMeTests */, 622 | 83CBBA001A601CBA00E9B192 /* Products */, 623 | DCA73878DDD84CB387342B79 /* Frameworks */, 624 | 7C985E32BDCC499D82F97653 /* Resources */, 625 | ); 626 | indentWidth = 2; 627 | sourceTree = ""; 628 | tabWidth = 2; 629 | }; 630 | 83CBBA001A601CBA00E9B192 /* Products */ = { 631 | isa = PBXGroup; 632 | children = ( 633 | 13B07F961A680F5B00A75B9A /* EatMe.app */, 634 | 00E356EE1AD99517003FC87E /* EatMeTests.xctest */, 635 | 2D02E47B1E0B4A5D006451C7 /* EatMe-tvOS.app */, 636 | 2D02E4901E0B4A5D006451C7 /* EatMe-tvOSTests.xctest */, 637 | ); 638 | name = Products; 639 | sourceTree = ""; 640 | }; 641 | C302BF211ED98DDC0096C500 /* Products */ = { 642 | isa = PBXGroup; 643 | children = ( 644 | C302BF281ED98DDC0096C500 /* libRCTCamera.a */, 645 | ); 646 | name = Products; 647 | sourceTree = ""; 648 | }; 649 | C339B1BB1EDCBDC000814FEE /* Products */ = { 650 | isa = PBXGroup; 651 | children = ( 652 | C339B1BF1EDCBDC100814FEE /* libBVLinearGradient.a */, 653 | ); 654 | name = Products; 655 | sourceTree = ""; 656 | }; 657 | C339B21D1EDDD99900814FEE /* Products */ = { 658 | isa = PBXGroup; 659 | children = ( 660 | C339B2261EDDD99900814FEE /* libRCTCamera.a */, 661 | ); 662 | name = Products; 663 | sourceTree = ""; 664 | }; 665 | C339B2401EDDD9B200814FEE /* Products */ = { 666 | isa = PBXGroup; 667 | children = ( 668 | C339B2441EDDD9B200814FEE /* libRNVectorIcons.a */, 669 | ); 670 | name = Products; 671 | sourceTree = ""; 672 | }; 673 | DCA73878DDD84CB387342B79 /* Frameworks */ = { 674 | isa = PBXGroup; 675 | children = ( 676 | 75E0C8A3A61243918A24DE13 /* libc++.tbd */, 677 | 469B9199FFB24064BCA8DD21 /* libz.tbd */, 678 | ); 679 | name = Frameworks; 680 | sourceTree = ""; 681 | }; 682 | /* End PBXGroup section */ 683 | 684 | /* Begin PBXNativeTarget section */ 685 | 00E356ED1AD99517003FC87E /* EatMeTests */ = { 686 | isa = PBXNativeTarget; 687 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EatMeTests" */; 688 | buildPhases = ( 689 | 00E356EA1AD99517003FC87E /* Sources */, 690 | 00E356EB1AD99517003FC87E /* Frameworks */, 691 | 00E356EC1AD99517003FC87E /* Resources */, 692 | ); 693 | buildRules = ( 694 | ); 695 | dependencies = ( 696 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 697 | ); 698 | name = EatMeTests; 699 | productName = EatMeTests; 700 | productReference = 00E356EE1AD99517003FC87E /* EatMeTests.xctest */; 701 | productType = "com.apple.product-type.bundle.unit-test"; 702 | }; 703 | 13B07F861A680F5B00A75B9A /* EatMe */ = { 704 | isa = PBXNativeTarget; 705 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EatMe" */; 706 | buildPhases = ( 707 | 13B07F871A680F5B00A75B9A /* Sources */, 708 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 709 | 13B07F8E1A680F5B00A75B9A /* Resources */, 710 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 711 | ); 712 | buildRules = ( 713 | ); 714 | dependencies = ( 715 | ); 716 | name = EatMe; 717 | productName = "Hello World"; 718 | productReference = 13B07F961A680F5B00A75B9A /* EatMe.app */; 719 | productType = "com.apple.product-type.application"; 720 | }; 721 | 2D02E47A1E0B4A5D006451C7 /* EatMe-tvOS */ = { 722 | isa = PBXNativeTarget; 723 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EatMe-tvOS" */; 724 | buildPhases = ( 725 | 2D02E4771E0B4A5D006451C7 /* Sources */, 726 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 727 | 2D02E4791E0B4A5D006451C7 /* Resources */, 728 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 729 | ); 730 | buildRules = ( 731 | ); 732 | dependencies = ( 733 | ); 734 | name = "EatMe-tvOS"; 735 | productName = "EatMe-tvOS"; 736 | productReference = 2D02E47B1E0B4A5D006451C7 /* EatMe-tvOS.app */; 737 | productType = "com.apple.product-type.application"; 738 | }; 739 | 2D02E48F1E0B4A5D006451C7 /* EatMe-tvOSTests */ = { 740 | isa = PBXNativeTarget; 741 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EatMe-tvOSTests" */; 742 | buildPhases = ( 743 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 744 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 745 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 746 | ); 747 | buildRules = ( 748 | ); 749 | dependencies = ( 750 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 751 | ); 752 | name = "EatMe-tvOSTests"; 753 | productName = "EatMe-tvOSTests"; 754 | productReference = 2D02E4901E0B4A5D006451C7 /* EatMe-tvOSTests.xctest */; 755 | productType = "com.apple.product-type.bundle.unit-test"; 756 | }; 757 | /* End PBXNativeTarget section */ 758 | 759 | /* Begin PBXProject section */ 760 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 761 | isa = PBXProject; 762 | attributes = { 763 | LastUpgradeCheck = 830; 764 | ORGANIZATIONNAME = Facebook; 765 | TargetAttributes = { 766 | 00E356ED1AD99517003FC87E = { 767 | CreatedOnToolsVersion = 6.2; 768 | 769 | DevelopmentTeam = 2RUCCNZA6Q; 770 | TestTargetID = 13B07F861A680F5B00A75B9A; 771 | }; 772 | 13B07F861A680F5B00A75B9A = { 773 | DevelopmentTeam = 2RUCCNZA6Q; 774 | 775 | }; 776 | 2D02E47A1E0B4A5D006451C7 = { 777 | CreatedOnToolsVersion = 8.2.1; 778 | ProvisioningStyle = Automatic; 779 | }; 780 | 2D02E48F1E0B4A5D006451C7 = { 781 | CreatedOnToolsVersion = 8.2.1; 782 | ProvisioningStyle = Automatic; 783 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 784 | }; 785 | }; 786 | }; 787 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EatMe" */; 788 | compatibilityVersion = "Xcode 3.2"; 789 | developmentRegion = English; 790 | hasScannedForEncodings = 0; 791 | knownRegions = ( 792 | en, 793 | Base, 794 | ); 795 | mainGroup = 83CBB9F61A601CBA00E9B192; 796 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 797 | projectDirPath = ""; 798 | projectReferences = ( 799 | { 800 | ProductGroup = C339B1BB1EDCBDC000814FEE /* Products */; 801 | ProjectRef = C339B1BA1EDCBDC000814FEE /* BVLinearGradient.xcodeproj */; 802 | }, 803 | { 804 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 805 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 806 | }, 807 | { 808 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 809 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 810 | }, 811 | { 812 | ProductGroup = C302BF211ED98DDC0096C500 /* Products */; 813 | ProjectRef = C302BF201ED98DDC0096C500 /* RCTCamera.xcodeproj */; 814 | }, 815 | { 816 | ProductGroup = C339B21D1EDDD99900814FEE /* Products */; 817 | ProjectRef = 9BD98506070B4286953F3691 /* RCTCamera.xcodeproj */; 818 | }, 819 | { 820 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 821 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 822 | }, 823 | { 824 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 825 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 826 | }, 827 | { 828 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 829 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 830 | }, 831 | { 832 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 833 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 834 | }, 835 | { 836 | ProductGroup = 55F64C611ED9B321002FA05D /* Products */; 837 | ProjectRef = 55F64C601ED9B321002FA05D /* RCTPushNotification.xcodeproj */; 838 | }, 839 | { 840 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 841 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 842 | }, 843 | { 844 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 845 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 846 | }, 847 | { 848 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 849 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 850 | }, 851 | { 852 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 853 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 854 | }, 855 | { 856 | ProductGroup = 146834001AC3E56700842450 /* Products */; 857 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 858 | }, 859 | { 860 | ProductGroup = 557D4E941ED776AC00AD4CA4 /* Products */; 861 | ProjectRef = FA127C8024A040D7AFC11BA0 /* RealmReact.xcodeproj */; 862 | }, 863 | { 864 | ProductGroup = 550A001C1EDEB4C2005DA3CD /* Products */; 865 | ProjectRef = 08EAF5F9B0D94798B63E9915 /* RNSVG.xcodeproj */; 866 | }, 867 | { 868 | ProductGroup = C339B2401EDDD9B200814FEE /* Products */; 869 | ProjectRef = 15F9E91AA38A4EA3A9BD9027 /* RNVectorIcons.xcodeproj */; 870 | }, 871 | ); 872 | projectRoot = ""; 873 | targets = ( 874 | 13B07F861A680F5B00A75B9A /* EatMe */, 875 | 00E356ED1AD99517003FC87E /* EatMeTests */, 876 | 2D02E47A1E0B4A5D006451C7 /* EatMe-tvOS */, 877 | 2D02E48F1E0B4A5D006451C7 /* EatMe-tvOSTests */, 878 | ); 879 | }; 880 | /* End PBXProject section */ 881 | 882 | /* Begin PBXReferenceProxy section */ 883 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 884 | isa = PBXReferenceProxy; 885 | fileType = archive.ar; 886 | path = libRCTActionSheet.a; 887 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 888 | sourceTree = BUILT_PRODUCTS_DIR; 889 | }; 890 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 891 | isa = PBXReferenceProxy; 892 | fileType = archive.ar; 893 | path = libRCTGeolocation.a; 894 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 895 | sourceTree = BUILT_PRODUCTS_DIR; 896 | }; 897 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 898 | isa = PBXReferenceProxy; 899 | fileType = archive.ar; 900 | path = libRCTImage.a; 901 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 902 | sourceTree = BUILT_PRODUCTS_DIR; 903 | }; 904 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 905 | isa = PBXReferenceProxy; 906 | fileType = archive.ar; 907 | path = libRCTNetwork.a; 908 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 909 | sourceTree = BUILT_PRODUCTS_DIR; 910 | }; 911 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 912 | isa = PBXReferenceProxy; 913 | fileType = archive.ar; 914 | path = libRCTVibration.a; 915 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 916 | sourceTree = BUILT_PRODUCTS_DIR; 917 | }; 918 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 919 | isa = PBXReferenceProxy; 920 | fileType = archive.ar; 921 | path = libRCTSettings.a; 922 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 923 | sourceTree = BUILT_PRODUCTS_DIR; 924 | }; 925 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 926 | isa = PBXReferenceProxy; 927 | fileType = archive.ar; 928 | path = libRCTWebSocket.a; 929 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 930 | sourceTree = BUILT_PRODUCTS_DIR; 931 | }; 932 | 146834041AC3E56700842450 /* libReact.a */ = { 933 | isa = PBXReferenceProxy; 934 | fileType = archive.ar; 935 | path = libReact.a; 936 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 937 | sourceTree = BUILT_PRODUCTS_DIR; 938 | }; 939 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 940 | isa = PBXReferenceProxy; 941 | fileType = archive.ar; 942 | path = "libRCTImage-tvOS.a"; 943 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 944 | sourceTree = BUILT_PRODUCTS_DIR; 945 | }; 946 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 947 | isa = PBXReferenceProxy; 948 | fileType = archive.ar; 949 | path = "libRCTLinking-tvOS.a"; 950 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 951 | sourceTree = BUILT_PRODUCTS_DIR; 952 | }; 953 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 954 | isa = PBXReferenceProxy; 955 | fileType = archive.ar; 956 | path = "libRCTNetwork-tvOS.a"; 957 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 958 | sourceTree = BUILT_PRODUCTS_DIR; 959 | }; 960 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 961 | isa = PBXReferenceProxy; 962 | fileType = archive.ar; 963 | path = "libRCTSettings-tvOS.a"; 964 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 965 | sourceTree = BUILT_PRODUCTS_DIR; 966 | }; 967 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 968 | isa = PBXReferenceProxy; 969 | fileType = archive.ar; 970 | path = "libRCTText-tvOS.a"; 971 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 972 | sourceTree = BUILT_PRODUCTS_DIR; 973 | }; 974 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 975 | isa = PBXReferenceProxy; 976 | fileType = archive.ar; 977 | path = "libRCTWebSocket-tvOS.a"; 978 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 979 | sourceTree = BUILT_PRODUCTS_DIR; 980 | }; 981 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 982 | isa = PBXReferenceProxy; 983 | fileType = archive.ar; 984 | path = libReact.a; 985 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 986 | sourceTree = BUILT_PRODUCTS_DIR; 987 | }; 988 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 989 | isa = PBXReferenceProxy; 990 | fileType = archive.ar; 991 | path = libyoga.a; 992 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 993 | sourceTree = BUILT_PRODUCTS_DIR; 994 | }; 995 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 996 | isa = PBXReferenceProxy; 997 | fileType = archive.ar; 998 | path = libyoga.a; 999 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 1000 | sourceTree = BUILT_PRODUCTS_DIR; 1001 | }; 1002 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 1003 | isa = PBXReferenceProxy; 1004 | fileType = archive.ar; 1005 | path = libcxxreact.a; 1006 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 1007 | sourceTree = BUILT_PRODUCTS_DIR; 1008 | }; 1009 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 1010 | isa = PBXReferenceProxy; 1011 | fileType = archive.ar; 1012 | path = libcxxreact.a; 1013 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1014 | sourceTree = BUILT_PRODUCTS_DIR; 1015 | }; 1016 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1017 | isa = PBXReferenceProxy; 1018 | fileType = archive.ar; 1019 | path = libjschelpers.a; 1020 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1021 | sourceTree = BUILT_PRODUCTS_DIR; 1022 | }; 1023 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1024 | isa = PBXReferenceProxy; 1025 | fileType = archive.ar; 1026 | path = libjschelpers.a; 1027 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1028 | sourceTree = BUILT_PRODUCTS_DIR; 1029 | }; 1030 | 550A003F1EDEB4C2005DA3CD /* libRNSVG.a */ = { 1031 | isa = PBXReferenceProxy; 1032 | fileType = archive.ar; 1033 | path = libRNSVG.a; 1034 | remoteRef = 550A003E1EDEB4C2005DA3CD /* PBXContainerItemProxy */; 1035 | sourceTree = BUILT_PRODUCTS_DIR; 1036 | }; 1037 | 557D4EB11ED776AD00AD4CA4 /* libRealmReact.a */ = { 1038 | isa = PBXReferenceProxy; 1039 | fileType = archive.ar; 1040 | path = libRealmReact.a; 1041 | remoteRef = 557D4EB01ED776AD00AD4CA4 /* PBXContainerItemProxy */; 1042 | sourceTree = BUILT_PRODUCTS_DIR; 1043 | }; 1044 | 55F64C701ED9B321002FA05D /* libRCTPushNotification.a */ = { 1045 | isa = PBXReferenceProxy; 1046 | fileType = archive.ar; 1047 | path = libRCTPushNotification.a; 1048 | remoteRef = 55F64C6F1ED9B321002FA05D /* PBXContainerItemProxy */; 1049 | sourceTree = BUILT_PRODUCTS_DIR; 1050 | }; 1051 | 55F64C721ED9B321002FA05D /* libRCTPushNotification-tvOS.a */ = { 1052 | isa = PBXReferenceProxy; 1053 | fileType = archive.ar; 1054 | path = "libRCTPushNotification-tvOS.a"; 1055 | remoteRef = 55F64C711ED9B321002FA05D /* PBXContainerItemProxy */; 1056 | sourceTree = BUILT_PRODUCTS_DIR; 1057 | }; 1058 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1059 | isa = PBXReferenceProxy; 1060 | fileType = archive.ar; 1061 | path = libRCTAnimation.a; 1062 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1063 | sourceTree = BUILT_PRODUCTS_DIR; 1064 | }; 1065 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1066 | isa = PBXReferenceProxy; 1067 | fileType = archive.ar; 1068 | path = libRCTAnimation.a; 1069 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1070 | sourceTree = BUILT_PRODUCTS_DIR; 1071 | }; 1072 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1073 | isa = PBXReferenceProxy; 1074 | fileType = archive.ar; 1075 | path = libRCTLinking.a; 1076 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1077 | sourceTree = BUILT_PRODUCTS_DIR; 1078 | }; 1079 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1080 | isa = PBXReferenceProxy; 1081 | fileType = archive.ar; 1082 | path = libRCTText.a; 1083 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1084 | sourceTree = BUILT_PRODUCTS_DIR; 1085 | }; 1086 | C302BF281ED98DDC0096C500 /* libRCTCamera.a */ = { 1087 | isa = PBXReferenceProxy; 1088 | fileType = archive.ar; 1089 | path = libRCTCamera.a; 1090 | remoteRef = C302BF271ED98DDC0096C500 /* PBXContainerItemProxy */; 1091 | sourceTree = BUILT_PRODUCTS_DIR; 1092 | }; 1093 | C339B1BF1EDCBDC100814FEE /* libBVLinearGradient.a */ = { 1094 | isa = PBXReferenceProxy; 1095 | fileType = archive.ar; 1096 | path = libBVLinearGradient.a; 1097 | remoteRef = C339B1BE1EDCBDC100814FEE /* PBXContainerItemProxy */; 1098 | sourceTree = BUILT_PRODUCTS_DIR; 1099 | }; 1100 | C339B2261EDDD99900814FEE /* libRCTCamera.a */ = { 1101 | isa = PBXReferenceProxy; 1102 | fileType = archive.ar; 1103 | path = libRCTCamera.a; 1104 | remoteRef = C339B2251EDDD99900814FEE /* PBXContainerItemProxy */; 1105 | sourceTree = BUILT_PRODUCTS_DIR; 1106 | }; 1107 | C339B2441EDDD9B200814FEE /* libRNVectorIcons.a */ = { 1108 | isa = PBXReferenceProxy; 1109 | fileType = archive.ar; 1110 | path = libRNVectorIcons.a; 1111 | remoteRef = C339B2431EDDD9B200814FEE /* PBXContainerItemProxy */; 1112 | sourceTree = BUILT_PRODUCTS_DIR; 1113 | }; 1114 | /* End PBXReferenceProxy section */ 1115 | 1116 | /* Begin PBXResourcesBuildPhase section */ 1117 | 00E356EC1AD99517003FC87E /* Resources */ = { 1118 | isa = PBXResourcesBuildPhase; 1119 | buildActionMask = 2147483647; 1120 | files = ( 1121 | ); 1122 | runOnlyForDeploymentPostprocessing = 0; 1123 | }; 1124 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1125 | isa = PBXResourcesBuildPhase; 1126 | buildActionMask = 2147483647; 1127 | files = ( 1128 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1129 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1130 | 07F62FE51DB1422084D4C363 /* Entypo.ttf in Resources */, 1131 | 0A6757EBFFF5403E805601B7 /* EvilIcons.ttf in Resources */, 1132 | 8B64114B1EDA4B589127BED3 /* FontAwesome.ttf in Resources */, 1133 | 383E555DAC2240008762EE0C /* Foundation.ttf in Resources */, 1134 | 07BD58BE9294476B9D8A54EF /* Ionicons.ttf in Resources */, 1135 | 3EB44B7EADD34C37A9093EC6 /* MaterialCommunityIcons.ttf in Resources */, 1136 | C86B1E0FFA524989A3FABD4E /* MaterialIcons.ttf in Resources */, 1137 | F0F0F98B02104FC189388F2F /* Octicons.ttf in Resources */, 1138 | F199F6FC143B4B53A74CA8E9 /* SimpleLineIcons.ttf in Resources */, 1139 | B07479EF81B44F539611CD8A /* Zocial.ttf in Resources */, 1140 | ); 1141 | runOnlyForDeploymentPostprocessing = 0; 1142 | }; 1143 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1144 | isa = PBXResourcesBuildPhase; 1145 | buildActionMask = 2147483647; 1146 | files = ( 1147 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1148 | ); 1149 | runOnlyForDeploymentPostprocessing = 0; 1150 | }; 1151 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1152 | isa = PBXResourcesBuildPhase; 1153 | buildActionMask = 2147483647; 1154 | files = ( 1155 | ); 1156 | runOnlyForDeploymentPostprocessing = 0; 1157 | }; 1158 | /* End PBXResourcesBuildPhase section */ 1159 | 1160 | /* Begin PBXShellScriptBuildPhase section */ 1161 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1162 | isa = PBXShellScriptBuildPhase; 1163 | buildActionMask = 2147483647; 1164 | files = ( 1165 | ); 1166 | inputPaths = ( 1167 | ); 1168 | name = "Bundle React Native code and images"; 1169 | outputPaths = ( 1170 | ); 1171 | runOnlyForDeploymentPostprocessing = 0; 1172 | shellPath = /bin/sh; 1173 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 1174 | }; 1175 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1176 | isa = PBXShellScriptBuildPhase; 1177 | buildActionMask = 2147483647; 1178 | files = ( 1179 | ); 1180 | inputPaths = ( 1181 | ); 1182 | name = "Bundle React Native Code And Images"; 1183 | outputPaths = ( 1184 | ); 1185 | runOnlyForDeploymentPostprocessing = 0; 1186 | shellPath = /bin/sh; 1187 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 1188 | }; 1189 | /* End PBXShellScriptBuildPhase section */ 1190 | 1191 | /* Begin PBXSourcesBuildPhase section */ 1192 | 00E356EA1AD99517003FC87E /* Sources */ = { 1193 | isa = PBXSourcesBuildPhase; 1194 | buildActionMask = 2147483647; 1195 | files = ( 1196 | 00E356F31AD99517003FC87E /* EatMeTests.m in Sources */, 1197 | ); 1198 | runOnlyForDeploymentPostprocessing = 0; 1199 | }; 1200 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1201 | isa = PBXSourcesBuildPhase; 1202 | buildActionMask = 2147483647; 1203 | files = ( 1204 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1205 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1206 | ); 1207 | runOnlyForDeploymentPostprocessing = 0; 1208 | }; 1209 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1210 | isa = PBXSourcesBuildPhase; 1211 | buildActionMask = 2147483647; 1212 | files = ( 1213 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1214 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1215 | ); 1216 | runOnlyForDeploymentPostprocessing = 0; 1217 | }; 1218 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1219 | isa = PBXSourcesBuildPhase; 1220 | buildActionMask = 2147483647; 1221 | files = ( 1222 | 2DCD954D1E0B4F2C00145EB5 /* EatMeTests.m in Sources */, 1223 | ); 1224 | runOnlyForDeploymentPostprocessing = 0; 1225 | }; 1226 | /* End PBXSourcesBuildPhase section */ 1227 | 1228 | /* Begin PBXTargetDependency section */ 1229 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1230 | isa = PBXTargetDependency; 1231 | target = 13B07F861A680F5B00A75B9A /* EatMe */; 1232 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1233 | }; 1234 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1235 | isa = PBXTargetDependency; 1236 | target = 2D02E47A1E0B4A5D006451C7 /* EatMe-tvOS */; 1237 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1238 | }; 1239 | /* End PBXTargetDependency section */ 1240 | 1241 | /* Begin PBXVariantGroup section */ 1242 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1243 | isa = PBXVariantGroup; 1244 | children = ( 1245 | 13B07FB21A68108700A75B9A /* Base */, 1246 | ); 1247 | name = LaunchScreen.xib; 1248 | path = EatMe; 1249 | sourceTree = ""; 1250 | }; 1251 | /* End PBXVariantGroup section */ 1252 | 1253 | /* Begin XCBuildConfiguration section */ 1254 | 00E356F61AD99517003FC87E /* Debug */ = { 1255 | isa = XCBuildConfiguration; 1256 | buildSettings = { 1257 | BUNDLE_LOADER = "$(TEST_HOST)"; 1258 | 1259 | DEVELOPMENT_TEAM = 2RUCCNZA6Q; 1260 | 1261 | GCC_PREPROCESSOR_DEFINITIONS = ( 1262 | "DEBUG=1", 1263 | "$(inherited)", 1264 | ); 1265 | HEADER_SEARCH_PATHS = ( 1266 | "$(inherited)", 1267 | "$(SRCROOT)/../node_modules/realm/src/**", 1268 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1269 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1270 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1271 | ); 1272 | INFOPLIST_FILE = EatMeTests/Info.plist; 1273 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1274 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1275 | LIBRARY_SEARCH_PATHS = ( 1276 | "$(inherited)", 1277 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1278 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1279 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1280 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1281 | ); 1282 | OTHER_LDFLAGS = ( 1283 | "-ObjC", 1284 | "-lc++", 1285 | ); 1286 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.EatMe; 1287 | PRODUCT_NAME = "$(TARGET_NAME)"; 1288 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EatMe.app/EatMe"; 1289 | }; 1290 | name = Debug; 1291 | }; 1292 | 00E356F71AD99517003FC87E /* Release */ = { 1293 | isa = XCBuildConfiguration; 1294 | buildSettings = { 1295 | BUNDLE_LOADER = "$(TEST_HOST)"; 1296 | COPY_PHASE_STRIP = NO; 1297 | 1298 | DEVELOPMENT_TEAM = 2RUCCNZA6Q; 1299 | 1300 | HEADER_SEARCH_PATHS = ( 1301 | "$(inherited)", 1302 | "$(SRCROOT)/../node_modules/realm/src/**", 1303 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1304 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1305 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1306 | ); 1307 | INFOPLIST_FILE = EatMeTests/Info.plist; 1308 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1309 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1310 | LIBRARY_SEARCH_PATHS = ( 1311 | "$(inherited)", 1312 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1313 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1314 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1315 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1316 | ); 1317 | OTHER_LDFLAGS = ( 1318 | "-ObjC", 1319 | "-lc++", 1320 | ); 1321 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.EatMe; 1322 | PRODUCT_NAME = "$(TARGET_NAME)"; 1323 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EatMe.app/EatMe"; 1324 | }; 1325 | name = Release; 1326 | }; 1327 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1328 | isa = XCBuildConfiguration; 1329 | buildSettings = { 1330 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1331 | CURRENT_PROJECT_VERSION = 1; 1332 | DEAD_CODE_STRIPPING = NO; 1333 | 1334 | DEVELOPMENT_TEAM = 2RUCCNZA6Q; 1335 | 1336 | HEADER_SEARCH_PATHS = ( 1337 | "$(inherited)", 1338 | "$(SRCROOT)/../node_modules/realm/src/**", 1339 | "$(SRCROOT)/../node_modules/react-native/Libraries/PushNotificationIOS/**", 1340 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1341 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1342 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1343 | ); 1344 | INFOPLIST_FILE = EatMe/Info.plist; 1345 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1346 | OTHER_LDFLAGS = ( 1347 | "$(inherited)", 1348 | "-ObjC", 1349 | "-lc++", 1350 | ); 1351 | 1352 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.EatMe3; 1353 | 1354 | PRODUCT_NAME = EatMe; 1355 | VERSIONING_SYSTEM = "apple-generic"; 1356 | }; 1357 | name = Debug; 1358 | }; 1359 | 13B07F951A680F5B00A75B9A /* Release */ = { 1360 | isa = XCBuildConfiguration; 1361 | buildSettings = { 1362 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1363 | CURRENT_PROJECT_VERSION = 1; 1364 | 1365 | DEVELOPMENT_TEAM = 2RUCCNZA6Q; 1366 | 1367 | HEADER_SEARCH_PATHS = ( 1368 | "$(inherited)", 1369 | "$(SRCROOT)/../node_modules/realm/src/**", 1370 | "$(SRCROOT)/../node_modules/react-native/Libraries/PushNotificationIOS/**", 1371 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1372 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1373 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1374 | ); 1375 | INFOPLIST_FILE = EatMe/Info.plist; 1376 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1377 | OTHER_LDFLAGS = ( 1378 | "$(inherited)", 1379 | "-ObjC", 1380 | "-lc++", 1381 | ); 1382 | 1383 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.EatMe3; 1384 | 1385 | PRODUCT_NAME = EatMe; 1386 | VERSIONING_SYSTEM = "apple-generic"; 1387 | }; 1388 | name = Release; 1389 | }; 1390 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1391 | isa = XCBuildConfiguration; 1392 | buildSettings = { 1393 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1394 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1395 | CLANG_ANALYZER_NONNULL = YES; 1396 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1397 | CLANG_WARN_INFINITE_RECURSION = YES; 1398 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1399 | DEBUG_INFORMATION_FORMAT = dwarf; 1400 | ENABLE_TESTABILITY = YES; 1401 | GCC_NO_COMMON_BLOCKS = YES; 1402 | HEADER_SEARCH_PATHS = ( 1403 | "$(inherited)", 1404 | "$(SRCROOT)/../node_modules/realm/src/**", 1405 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1406 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1407 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1408 | ); 1409 | INFOPLIST_FILE = "EatMe-tvOS/Info.plist"; 1410 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1411 | LIBRARY_SEARCH_PATHS = ( 1412 | "$(inherited)", 1413 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1414 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1415 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1416 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1417 | ); 1418 | OTHER_LDFLAGS = ( 1419 | "-ObjC", 1420 | "-lc++", 1421 | ); 1422 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EatMe-tvOS"; 1423 | PRODUCT_NAME = "$(TARGET_NAME)"; 1424 | SDKROOT = appletvos; 1425 | TARGETED_DEVICE_FAMILY = 3; 1426 | TVOS_DEPLOYMENT_TARGET = 9.2; 1427 | }; 1428 | name = Debug; 1429 | }; 1430 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1431 | isa = XCBuildConfiguration; 1432 | buildSettings = { 1433 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1434 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1435 | CLANG_ANALYZER_NONNULL = YES; 1436 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1437 | CLANG_WARN_INFINITE_RECURSION = YES; 1438 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1439 | COPY_PHASE_STRIP = NO; 1440 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1441 | GCC_NO_COMMON_BLOCKS = YES; 1442 | HEADER_SEARCH_PATHS = ( 1443 | "$(inherited)", 1444 | "$(SRCROOT)/../node_modules/realm/src/**", 1445 | "$(SRCROOT)/../node_modules/react-native-camera/ios", 1446 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1447 | "$(SRCROOT)/../node_modules/react-native-svg/ios/**", 1448 | ); 1449 | INFOPLIST_FILE = "EatMe-tvOS/Info.plist"; 1450 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1451 | LIBRARY_SEARCH_PATHS = ( 1452 | "$(inherited)", 1453 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1454 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1455 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1456 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1457 | ); 1458 | OTHER_LDFLAGS = ( 1459 | "-ObjC", 1460 | "-lc++", 1461 | ); 1462 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EatMe-tvOS"; 1463 | PRODUCT_NAME = "$(TARGET_NAME)"; 1464 | SDKROOT = appletvos; 1465 | TARGETED_DEVICE_FAMILY = 3; 1466 | TVOS_DEPLOYMENT_TARGET = 9.2; 1467 | }; 1468 | name = Release; 1469 | }; 1470 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1471 | isa = XCBuildConfiguration; 1472 | buildSettings = { 1473 | BUNDLE_LOADER = "$(TEST_HOST)"; 1474 | CLANG_ANALYZER_NONNULL = YES; 1475 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1476 | CLANG_WARN_INFINITE_RECURSION = YES; 1477 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1478 | DEBUG_INFORMATION_FORMAT = dwarf; 1479 | ENABLE_TESTABILITY = YES; 1480 | GCC_NO_COMMON_BLOCKS = YES; 1481 | INFOPLIST_FILE = "EatMe-tvOSTests/Info.plist"; 1482 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1483 | LIBRARY_SEARCH_PATHS = ( 1484 | "$(inherited)", 1485 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1486 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1487 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1488 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1489 | ); 1490 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EatMe-tvOSTests"; 1491 | PRODUCT_NAME = "$(TARGET_NAME)"; 1492 | SDKROOT = appletvos; 1493 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EatMe-tvOS.app/EatMe-tvOS"; 1494 | TVOS_DEPLOYMENT_TARGET = 10.1; 1495 | }; 1496 | name = Debug; 1497 | }; 1498 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1499 | isa = XCBuildConfiguration; 1500 | buildSettings = { 1501 | BUNDLE_LOADER = "$(TEST_HOST)"; 1502 | CLANG_ANALYZER_NONNULL = YES; 1503 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1504 | CLANG_WARN_INFINITE_RECURSION = YES; 1505 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1506 | COPY_PHASE_STRIP = NO; 1507 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1508 | GCC_NO_COMMON_BLOCKS = YES; 1509 | INFOPLIST_FILE = "EatMe-tvOSTests/Info.plist"; 1510 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1511 | LIBRARY_SEARCH_PATHS = ( 1512 | "$(inherited)", 1513 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1514 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1515 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1516 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1517 | ); 1518 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EatMe-tvOSTests"; 1519 | PRODUCT_NAME = "$(TARGET_NAME)"; 1520 | SDKROOT = appletvos; 1521 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EatMe-tvOS.app/EatMe-tvOS"; 1522 | TVOS_DEPLOYMENT_TARGET = 10.1; 1523 | }; 1524 | name = Release; 1525 | }; 1526 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1527 | isa = XCBuildConfiguration; 1528 | buildSettings = { 1529 | ALWAYS_SEARCH_USER_PATHS = NO; 1530 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1531 | CLANG_CXX_LIBRARY = "libc++"; 1532 | CLANG_ENABLE_MODULES = YES; 1533 | CLANG_ENABLE_OBJC_ARC = YES; 1534 | CLANG_WARN_BOOL_CONVERSION = YES; 1535 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1536 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1537 | CLANG_WARN_EMPTY_BODY = YES; 1538 | CLANG_WARN_ENUM_CONVERSION = YES; 1539 | CLANG_WARN_INFINITE_RECURSION = YES; 1540 | CLANG_WARN_INT_CONVERSION = YES; 1541 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1542 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1543 | CLANG_WARN_UNREACHABLE_CODE = YES; 1544 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1545 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1546 | COPY_PHASE_STRIP = NO; 1547 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1548 | ENABLE_TESTABILITY = YES; 1549 | GCC_C_LANGUAGE_STANDARD = gnu99; 1550 | GCC_DYNAMIC_NO_PIC = NO; 1551 | GCC_NO_COMMON_BLOCKS = YES; 1552 | GCC_OPTIMIZATION_LEVEL = 0; 1553 | GCC_PREPROCESSOR_DEFINITIONS = ( 1554 | "DEBUG=1", 1555 | "$(inherited)", 1556 | ); 1557 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1558 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1559 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1560 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1561 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1562 | GCC_WARN_UNUSED_FUNCTION = YES; 1563 | GCC_WARN_UNUSED_VARIABLE = YES; 1564 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1565 | MTL_ENABLE_DEBUG_INFO = YES; 1566 | ONLY_ACTIVE_ARCH = YES; 1567 | SDKROOT = iphoneos; 1568 | }; 1569 | name = Debug; 1570 | }; 1571 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1572 | isa = XCBuildConfiguration; 1573 | buildSettings = { 1574 | ALWAYS_SEARCH_USER_PATHS = NO; 1575 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1576 | CLANG_CXX_LIBRARY = "libc++"; 1577 | CLANG_ENABLE_MODULES = YES; 1578 | CLANG_ENABLE_OBJC_ARC = YES; 1579 | CLANG_WARN_BOOL_CONVERSION = YES; 1580 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1581 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1582 | CLANG_WARN_EMPTY_BODY = YES; 1583 | CLANG_WARN_ENUM_CONVERSION = YES; 1584 | CLANG_WARN_INFINITE_RECURSION = YES; 1585 | CLANG_WARN_INT_CONVERSION = YES; 1586 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1587 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1588 | CLANG_WARN_UNREACHABLE_CODE = YES; 1589 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1590 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1591 | COPY_PHASE_STRIP = YES; 1592 | ENABLE_NS_ASSERTIONS = NO; 1593 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1594 | GCC_C_LANGUAGE_STANDARD = gnu99; 1595 | GCC_NO_COMMON_BLOCKS = YES; 1596 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1597 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1598 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1599 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1600 | GCC_WARN_UNUSED_FUNCTION = YES; 1601 | GCC_WARN_UNUSED_VARIABLE = YES; 1602 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1603 | MTL_ENABLE_DEBUG_INFO = NO; 1604 | SDKROOT = iphoneos; 1605 | VALIDATE_PRODUCT = YES; 1606 | }; 1607 | name = Release; 1608 | }; 1609 | /* End XCBuildConfiguration section */ 1610 | 1611 | /* Begin XCConfigurationList section */ 1612 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EatMeTests" */ = { 1613 | isa = XCConfigurationList; 1614 | buildConfigurations = ( 1615 | 00E356F61AD99517003FC87E /* Debug */, 1616 | 00E356F71AD99517003FC87E /* Release */, 1617 | ); 1618 | defaultConfigurationIsVisible = 0; 1619 | defaultConfigurationName = Release; 1620 | }; 1621 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EatMe" */ = { 1622 | isa = XCConfigurationList; 1623 | buildConfigurations = ( 1624 | 13B07F941A680F5B00A75B9A /* Debug */, 1625 | 13B07F951A680F5B00A75B9A /* Release */, 1626 | ); 1627 | defaultConfigurationIsVisible = 0; 1628 | defaultConfigurationName = Release; 1629 | }; 1630 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EatMe-tvOS" */ = { 1631 | isa = XCConfigurationList; 1632 | buildConfigurations = ( 1633 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1634 | 2D02E4981E0B4A5E006451C7 /* Release */, 1635 | ); 1636 | defaultConfigurationIsVisible = 0; 1637 | defaultConfigurationName = Release; 1638 | }; 1639 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EatMe-tvOSTests" */ = { 1640 | isa = XCConfigurationList; 1641 | buildConfigurations = ( 1642 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1643 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1644 | ); 1645 | defaultConfigurationIsVisible = 0; 1646 | defaultConfigurationName = Release; 1647 | }; 1648 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EatMe" */ = { 1649 | isa = XCConfigurationList; 1650 | buildConfigurations = ( 1651 | 83CBBA201A601CBA00E9B192 /* Debug */, 1652 | 83CBBA211A601CBA00E9B192 /* Release */, 1653 | ); 1654 | defaultConfigurationIsVisible = 0; 1655 | defaultConfigurationName = Release; 1656 | }; 1657 | /* End XCConfigurationList section */ 1658 | }; 1659 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1660 | } 1661 | --------------------------------------------------------------------------------