Giter Site home page Giter Site logo

food-finder-react-native-app's Introduction

Hi, I'm Pradip Debnath 👋

  • 🔭 I’m currently developing a mobile app
  • 🌱 I’m currently learning advanced concepts of Flutter & React Native
  • 👯 I’m looking to collaborate with other content creators on YouTube
  • 🥅 2020 Goals: get 15k subscribers on YouTube
  • ⚡ Fun fact: I love to listen songs. AR & Space exploration excites me

Connect with me:

www.PradipDebnath.com Pradip Debnath | YouTube itzpradip | Twitter Pradip Debnath | LinkedIn Pradip Debnath | Facebook



Languages and Tools:

HTML5 CSS3 JavaScript React Flutter WordPress




📺 Latest YouTube Videos


📕 Latest Blog Posts


itzpradip's Github Stats

food-finder-react-native-app's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

food-finder-react-native-app's Issues

issue with axios in project

i cant use axios in your project. When i post with form data to api, it's not return value. Return from sv: echo json_encode($_POST);.
I use post man test and use code of it. It's successful but when i put on project then it not return my value sent.
image

my code
image

and sv
image

It returned: []
when i create new project and use my code, it run normal
i think maybe your some lib but i dont know exactly

TypeError: null is not an object

image
import React, { useState, useEffect } from 'react'
import { StyleSheet, Text, Image, Button, View, ScrollView, TouchableOpacity, ImageBackground, TextInput } from 'react-native'
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import FontAwesome from 'react-native-vector-icons/FontAwesome';
import Feather from 'react-native-vector-icons/Feather';
import BottomSheet from 'reanimated-bottom-sheet';
import Animated from 'react-native-reanimated';
import ImagePicker from 'react-native-image-crop-picker';

class FormActivity3 extends React.Component {
static navigationOptions = {
title: "事故快报 HSE Flash Report",
headerStyle: {
backgroundColor: "#73C6B6"
}
};

constructor(props) {
    super(props)
    this.navigate = this.props.navigation.navigate;
    this.state = {
        image: 'https://api.adorable.io/avatars/80/[email protected]'
    }
};

renderInner = () => (
    <View style={styles.panel}>
        <View style={{ alignItems: 'center' }}>
            <Text style={styles.panelTitle}>Upload Photo</Text>
            <Text style={styles.panelSubtitle}>Choose Your Profile Picture</Text>
        </View>
        <TouchableOpacity style={styles.panelButton} onPress={this.takePhotoFromCamera}>
            <Text style={styles.panelButtonTitle}>Take Photo</Text>
        </TouchableOpacity>
        <TouchableOpacity style={styles.panelButton} onPress={this.choosePhotoFromLibrary}>
            <Text style={styles.panelButtonTitle}>Choose From Library</Text>
        </TouchableOpacity>
        <TouchableOpacity
            style={styles.panelButton}
            onPress={() => this.bs.current.snapTo(1)}>
            <Text style={styles.panelButtonTitle}>Cancel</Text>
        </TouchableOpacity>
    </View>
);

renderHeader = () => (
    <View style={styles.header}>
        <View style={styles.panelHeader}>
            <View style={styles.panelHandle} />
        </View>
    </View>
);

takePhotoFromCamera = () => {
    ImagePicker.openCamera({
        compressImageMaxWidth: 300,
        compressImageMaxHeight: 300,
        cropping: true,
        compressImageQuality: 0.7
    }).then(image => {
        console.log(image);
        setImage(image.path);
        this.bs.current.snapTo(1);
    });
}

choosePhotoFromLibrary = () => {
    ImagePicker.openPicker({
        width: 300,
        height: 300,
        cropping: true,
        compressImageQuality: 0.7
    }).then(image => {
        console.log(image);
        setImage(image.path);
        this.bs.current.snapTo(1);
    });
}

bs = React.createRef();
fall = new Animated.Value(1);

render() {
   
    return (
        <ScrollView style={styles.container}>
            {/* PART 3*/}
            <View style={styles.view}>
                <Text style={styles.title}>事故状况略图(贴照片,或画示意图)</Text>
                <Text style={styles.title}>Sketch or picture of Incident/Accident</Text>
            </View>

            <View style={styles.view}>
                <BottomSheet
                    ref={this.bs}
                    snapPoints={[330, 0]}
                    renderContent={this.renderInner}
                    renderHeader={this.renderHeader}
                    initialSnap={1}
                    callbackNode={this.fall}
                    enabledGestureInteraction={true} />
                <Animated.View style={{ margin: 20, opacity: Animated.add(0.1, Animated.multiply(this.fall, 1.0)), }}>
                    <TouchableOpacity onPress={() => this.bs.current.snapTo(0)}>
                        <View
                            style={{
                                height: 100,
                                width: 100,
                                borderRadius: 15,
                                justifyContent: 'center',
                                alignItems: 'center',
                            }}>
                            <ImageBackground
                                source={{
                                    uri: this.state.image
                                }}
                                style={{ height: 100, width: 100 }}
                                imageStyle={{ borderRadius: 15 }}>
                                <View
                                    style={{
                                        flex: 1,
                                        justifyContent: 'center',
                                        alignItems: 'center',
                                    }}>
                                    <Icon
                                        name="camera"
                                        size={35}
                                        color="#fff"
                                        style={{
                                            opacity: 0.7,
                                            alignItems: 'center',
                                            justifyContent: 'center',
                                            borderWidth: 1,
                                            borderColor: '#fff',
                                            borderRadius: 10,
                                        }}
                                    />
                                </View>
                            </ImageBackground>
                        </View>
                    </TouchableOpacity>
                </Animated.View>
            </View>

            <View style={styles.viewB}>
                <Button style={styles.button} color="#73C6B6" title="Next" onPress={() => this.navigate("Form3", this.state)} />
            </View>
        </ScrollView >
    )
}

}

export default FormActivity3

const styles = StyleSheet.create({
container: {
margin: 5,
},
row: {
flexDirection: 'row',
alignItems: 'center',
alignSelf: 'center'
},
row1: {
flexDirection: 'row',
alignItems: 'center',
},
input: {
borderBottomColor: 'black',
borderBottomWidth: 0.2,
height: 37,
width: 200,
padding: 2,
margin: 5,
alignItems: 'flex-end'
},
input1: {
borderBottomColor: 'black',
borderBottomWidth: 0.2,
height: 37,
width: '100%',
padding: 2,
margin: 5,
alignItems: 'flex-end'
},
title: {
fontWeight: "bold",
textAlign: 'center',
fontSize: 20,
},
view: {
alignItems: 'center',
marginTop: 20
},
viewB: {
alignItems: 'center',
marginTop: 20,
marginBottom: 20
},
view2: {
marginTop: 20
},
view3: {
marginTop: 10
},
text: {
margin: 5,
fontWeight: "bold",
},
text2: {
margin: 5,
},
input2: {
borderColor: 'black',
borderWidth: 0.2,
height: 37,
padding: 2,
margin: 5,
alignItems: 'flex-end'
}, commandButton: {
padding: 15,
borderRadius: 10,
backgroundColor: '#FF6347',
alignItems: 'center',
marginTop: 10,
},
panel: {
padding: 20,
backgroundColor: '#FFFFFF',
paddingTop: 20,
// borderTopLeftRadius: 20,
// borderTopRightRadius: 20,
// shadowColor: '#000000',
// shadowOffset: {width: 0, height: 0},
// shadowRadius: 5,
// shadowOpacity: 0.4,
},
header: {
backgroundColor: '#FFFFFF',
shadowColor: '#333333',
shadowOffset: { width: -1, height: -3 },
shadowRadius: 2,
shadowOpacity: 0.4,
// elevation: 5,
paddingTop: 20,
borderTopLeftRadius: 20,
borderTopRightRadius: 20,
},
panelHeader: {
alignItems: 'center',
},
panelHandle: {
width: 40,
height: 8,
borderRadius: 4,
backgroundColor: '#00000040',
marginBottom: 10,
},
panelTitle: {
fontSize: 27,
height: 35,
},
panelSubtitle: {
fontSize: 14,
color: 'gray',
height: 30,
marginBottom: 10,
},
panelButton: {
padding: 13,
borderRadius: 10,
backgroundColor: '#FF6347',
alignItems: 'center',
marginVertical: 7,
},
panelButtonTitle: {
fontSize: 17,
fontWeight: 'bold',
color: 'white',
},
action: {
flexDirection: 'row',
marginTop: 10,
marginBottom: 10,
borderBottomWidth: 1,
borderBottomColor: '#f2f2f2',
paddingBottom: 5,
},
actionError: {
flexDirection: 'row',
marginTop: 10,
borderBottomWidth: 1,
borderBottomColor: '#FF0000',
paddingBottom: 5,
},
textInput: {
flex: 1,
paddingLeft: 10,
color: '#05375a',
},
})

Pod Install Returns Error

Command

/usr/local/bin/pod install

Report

  • What did you do?
    cd ios
    pod install

  • What did you expect to happen?
    A Successful Pod Install

  • What happened instead?
    Detected React Native module pods for BVLinearGradient, RNCAsyncStorage, RNCMaskedView, RNGestureHandler, RNImageCropPicker, RNReanimated, RNScreens, RNShare, RNVectorIcons, and react-native-safe-area-context
    Analyzing dependencies
    Fetching podspec for DoubleConversion from ../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec

Stack

   CocoaPods : 1.10.1
        Ruby : ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.x86_64-darwin20]
    RubyGems : 3.0.3
        Host : macOS 11.2.1 (20D74)
       Xcode : 12.3 (12C33)
         Git : git version 2.28.0
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib
Repositories : trunk - CDN - https://cdn.cocoapods.org/

Plugins

cocoapods-deintegrate : 1.0.4
cocoapods-plugins     : 1.0.0
cocoapods-search      : 1.0.0
cocoapods-trunk       : 1.5.0
cocoapods-try         : 1.2.0

Podfile

platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

def add_flipper_pods!(versions = {})
  versions['Flipper'] ||= '~> 0.33.1'
  versions['DoubleConversion'] ||= '1.1.7'
  versions['Flipper-Folly'] ||= '~> 2.1'
  versions['Flipper-Glog'] ||= '0.3.6'
  versions['Flipper-PeerTalk'] ||= '~> 0.0.4'
  versions['Flipper-RSocket'] ||= '~> 1.0'

  pod 'FlipperKit', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitLayoutPlugin', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/SKIOSNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitUserDefaultsPlugin', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitReactPlugin', versions['Flipper'], :configuration => 'Debug'

  # List all transitive dependencies for FlipperKit pods
  # to avoid them being linked in Release builds
  pod 'Flipper', versions['Flipper'], :configuration => 'Debug'
  pod 'Flipper-DoubleConversion', versions['DoubleConversion'], :configuration => 'Debug'
  pod 'Flipper-Folly', versions['Flipper-Folly'], :configuration => 'Debug'
  pod 'Flipper-Glog', versions['Flipper-Glog'], :configuration => 'Debug'
  pod 'Flipper-PeerTalk', versions['Flipper-PeerTalk'], :configuration => 'Debug'
  pod 'Flipper-RSocket', versions['Flipper-RSocket'], :configuration => 'Debug'
  pod 'FlipperKit/Core', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/CppBridge', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FBCxxFollyDynamicConvert', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FBDefines', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FKPortForwarding', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitHighlightOverlay', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug'
  pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
end

# Post Install processing for Flipper
def flipper_post_install(installer)
  installer.pods_project.targets.each do |target|
    if target.name == 'YogaKit'
      target.build_configurations.each do |config|
        config.build_settings['SWIFT_VERSION'] = '4.1'
      end
    end
  end
end

target 'FoodFinder' do
  # Pods for FoodFinder
  pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
  pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
  pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
  pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
  pod 'React', :path => '../node_modules/react-native/'
  pod 'React-Core', :path => '../node_modules/react-native/'
  pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
  pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'

  pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
  pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
  pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true

  pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'

  target 'FoodFinderTests' do
    inherit! :complete
    # Pods for testing
  end

   # React Native Maps dependencies
   rn_maps_path = '../node_modules/react-native-maps'
   pod 'react-native-google-maps', :path => rn_maps_path
   pod 'GoogleMaps'
   pod 'Google-Maps-iOS-Utils'

  use_native_modules!

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  add_flipper_pods!
  post_install do |installer|
    flipper_post_install(installer)
  end
end

target 'FoodFinder-tvOS' do
  # Pods for FoodFinder-tvOS

  target 'FoodFinder-tvOSTests' do
    inherit! :search_paths
    # Pods for testing
  end
end

Error

Errno::ENOENT - No such file or directory @ rb_sysopen - /Users/rsibishan/Projects/Food-Finder-React-Native-App/node_modules/react-native/third-party-podspecs/DoubleConversion.podspec
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/open-uri.rb:37:in `initialize'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/open-uri.rb:37:in `open'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/open-uri.rb:37:in `open'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/external_sources/podspec_source.rb:19:in `block in fetch'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:86:in `titled_section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/external_sources/podspec_source.rb:11:in `fetch'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:989:in `fetch_external_source'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:968:in `block (2 levels) in fetch_external_sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:967:in `each'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:967:in `block in fetch_external_sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:966:in `fetch_external_sources'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer/analyzer.rb:117:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:414:in `analyze'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:239:in `block in resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:238:in `resolve_dependencies'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/installer.rb:160:in `install!'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command/install.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/claide-1.0.3/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.10.1/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:23:in `load'
/usr/local/bin/pod:23:in `<main>'

TriggeringView Issue ...

ERROR Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.

Missing files

Hi and thank you for your videos!

I had just cloned your repo, made npm ci and tried to start the ios simulator, but I got a long build error. I'm a bit overwhelmed by the output, but I think it says that some assets are missing, right?

react-native run-ios
info Found Xcode workspace "FoodFinder.xcworkspace"
info Building (using "xcodebuild -workspace FoodFinder.xcworkspace -configuration Debug -scheme FoodFinder -destination id=897322F9-3F51-4C9B-864C-D40811383726")
............................
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening FoodFinder.xcworkspace. Run CLI with --verbose flag for more details.
Command line invocation:
    /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace FoodFinder.xcworkspace -configuration Debug -scheme FoodFinder -destination id=897322F9-3F51-4C9B-864C-D40811383726

note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
error: /Users/andre.lademann/Test/Food-Finder-React-Native-App/ios/Pods/Target Support Files/Pods-FoodFinder/Pods-FoodFinder.debug.xcconfig: unable to open file (in target "FoodFinder" in project "FoodFinder") (in target 'FoodFinder' from project 'FoodFinder')
error: /Users/andre.lademann/Test/Food-Finder-React-Native-App/ios/Pods/Target Support Files/Pods-FoodFinder/Pods-FoodFinder.debug.xcconfig: unable to open file (in target "FoodFinder" in project "FoodFinder") (in target 'FoodFinder' from project 'FoodFinder')
error: /Users/andre.lademann/Test/Food-Finder-React-Native-App/ios/Pods/Target Support Files/Pods-FoodFinder/Pods-FoodFinder.debug.xcconfig: unable to open file (in target "FoodFinder" in project "FoodFinder") (in target 'FoodFinder' from project 'FoodFinder')
error: /Users/andre.lademann/Test/Food-Finder-React-Native-App/ios/Pods/Target Support Files/Pods-FoodFinder/Pods-FoodFinder.debug.xcconfig: unable to open file (in target "FoodFinder" in project "FoodFinder") (in target 'FoodFinder' from project 'FoodFinder')
warning: Capabilities for Signing & Capabilities may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the FoodFinder editor. (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/AntDesign.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Entypo.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/EvilIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Feather.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/FontAwesome.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/FontAwesome5_Brands.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/FontAwesome5_Regular.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/FontAwesome5_Solid.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Fontisto.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Foundation.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Ionicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/MaterialCommunityIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/MaterialIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Octicons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/SimpleLineIcons.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')
warning: duplicate output file '/Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Products/Debug-iphonesimulator/FoodFinder.app/Zocial.ttf' on task: PhaseScriptExecution [CP] Copy Pods Resources /Users/andre.lademann/Library/Developer/Xcode/DerivedData/FoodFinder-hjnyzpziaulephfcfrwvoxyqtilh/Build/Intermediates.noindex/FoodFinder.build/Debug-iphonesimulator/FoodFinder.build/Script-1F71E3F33D56FD8EF7ADB2B1.sh (in target 'FoodFinder' from project 'FoodFinder')


** BUILD FAILED **

I am not shure if it is a bug or just my fault.
Maybe you know?

kind regards,
André

Username and Password for login

How do I find the set Username and password for the login screen? The app works fine but I want to implement php MySql. I also followed all of your youtube tutorials but the source code is a bit different

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.