icantcodeswiftforshit / Parkify

0 stars 0 forks source link

bugs bugs bugs #1

Open icantcodeswiftforshit opened 10 months ago

icantcodeswiftforshit commented 10 months ago

holy shit someone please help 1: Build input file cannot be found: '/Users/admin/Desktop/Parkify/Parkify/Parkify-Bridging-Header.h'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? 2:/Users/admin/Desktop/Parkify/Parkify.xcodeproj One of the paths in DEVELOPMENT_ASSET_PATHS does not exist: /Users/admin/Desktop/Parkify/Parkify/Preview Content 3: /Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.abi.json /Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.abi.json: No such file or directory 4:/Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftdoc /Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftdoc: No such file or directory 5:/Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftmodule /Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftmodule: No such file or directory 6:/Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftsourceinfo /Users/admin/Library/Developer/Xcode/DerivedData/Parkify-hiqtywhbawldjqajuhzeyyxxvjcp/Build/Intermediates.noindex/Parkify.build/Debug-iphonesimulator/Parkify.build/Objects-normal/x86_64/Parkify.swiftsourceinfo: No such file or directory

ElReyUno commented 10 months ago

Do you have this code in a repo?

Your errors are saying that the code is unable to find those particular files and directories.

Have you followed the paths to confirm that the files/directories exist in the specified location(s)?

I would recommend the following:

  1. Build Input File Cannot Be Found ('Parkify-Bridging-Header.h'):

    • This error suggests that Xcode is unable to locate the bridging header file. Make sure that the file Parkify-Bridging-Header.h exists at the specified location (/Users/admin/Desktop/Parkify/Parkify/).
    • Verify that the bridging header file is correctly included in your Xcode project. You can do this by opening your Xcode project, navigating to the target settings, and checking the "Objective-C Bridging Header" setting under the "Build Settings" tab. Ensure that the path to the bridging header file is correct.
  2. Path in DEVELOPMENT_ASSET_PATHS Does Not Exist:

    • This error suggests that Xcode is looking for a path that doesn't exist (/Users/admin/Desktop/Parkify/Parkify/Preview Content).
    • Check your project settings and build phases for any references to this path and ensure that it is valid and exists in your project directory.
  3. No Such File or Directory (Parkify.abi.json, Parkify.swiftdoc, Parkify.swiftmodule, Parkify.swiftsourceinfo):

    • These errors indicate that certain build artifacts are missing or cannot be found.
    • Try cleaning your Xcode project by going to "Product" > "Clean Build Folder" to remove the derived data and build artifacts. Then, rebuild your project.
  4. DerivedData Folder Cleanup:

    • If cleaning and rebuilding your project doesn't resolve the issues, you can try manually deleting the DerivedData folder for your project. The DerivedData folder is located at /Users/admin/Library/Developer/Xcode/DerivedData/. Deleting this folder can help resolve build-related issues caused by cached data.
  5. Reimport the Project:

    • If the above steps do not resolve the issues, you may want to try reimporting the project into Xcode. Create a new Xcode project and add your source files and assets back into the new project.
  6. Check for Missing Files:

    • Verify that no essential project files have been accidentally deleted or moved. Make sure that all necessary files are included in your Xcode project.
  7. Check Project References:

    • Ensure that your project references are correct. Open your Xcode project file and inspect the file and folder references to ensure they match your project's directory structure.
  8. Check Xcode Version:

    • Ensure you are using a compatible version of Xcode for your project and its dependencies.

If this does not help you successfully build your project feel free to follow-up with more details sniff the bug out.

Good Luck!