After I submitted my application, apple sent an email that is below. I could not where the problem is ? Can anyone help me in this issue ?
enter code here
* This bundle is invalid - The Info.plist file for
/****.app/CoreData.framework is missing or could not be read.
* Invalid Bundle - The bundle at '****.app/CoreData.framework' does not contain a bundle executable.
* Invalid Bundle Structure - The framework at '****.app/CoreData.framework' is not permitted. Do not include platform frameworks in your app.
Are you sure that you check
Core Datawhen you create the project ?Add Core Data to an existing project
First, add this code in the
AppDelagate.swiftIf you run just with that, you should get this error:
To resolve that, you should import
CoreDataNext, we’ll need to change the container name to match our main project.
Next, we have to create the actual data file. So, let’s create a new file,
⌘N, scroll down to theCore Datasection and selectData Model, then continue through and name the file after your project.Sources