나의 발자취

Bundle Identifier? Organization Identifier? 본문

앱 개발/iOS

Bundle Identifier? Organization Identifier?

달모드 2023. 6. 13. 23:59

 

 The bundle identifier uniquely identifies your app in Apple’s ecosystem, implying that no two apps can have the same bundle identifier.

 

Organization Identifier: A reverse DNS string that uniquely identifies your organization. For example, if the name of your organization is XYZ, then the reverse DNS notation would become com.xyz. However, since you’re building this app for yourself, you can use com.<your_name>. You may need to revisit this step before uploading your app to the App Store.

 

Life cycle: Select SwiftUI App. The other option is UIKit App Delegate. While SwiftUI apps can be built with UIKit App Delegate, SwiftUI App is the latest and simpler approach.

 

Use Core Data: Leave this option unchecked. We won’t be using this feature for our app. Core Data is used to build and manage the data layer in iOS apps.

 

You can show the Debug Area with Shift-Command-C, and hide it with Shift-Command-Y.

 

from: codecademy

Comments