Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpuse of PkgInfo in iOS

Tags:

ios

PkgInfo store the type code and creator code and is something inherited from Mac OS Classic.

Does this file has any purpose en iOS?

like image 224
Freeman Avatar asked Jul 13 '11 10:07

Freeman


People also ask

What is Pkginfo?

The pkginfo file is an ASCII file that describes the characteristics of the package along with information that helps control the flow of installation. It is created by the software package developer. Each entry in the pkginfo file is a line that establishes the value of a parameter in the following form: PARAM="value"

Do you need Xcode for iOS development?

Alternative IDEs for iOS development require Xcode. You don't need to run it, but you should have it installed. Signing and uploading apps to the App Store (or Test Flight) can be done from the command line (see below), but you need to have Xcode installed.

Can I develop iOS app without macbook?

You cannot develop iOS apps without a Mac computer, but you can set up CI/CD to handle building and publishing!


1 Answers

The contents of the PkgInfo file are the 4-byte package type followed by the 4-byte signature of your application.

It comes from OS X, iOS does not require this file and you don't need to do anything with it.

See the following: Book: Programming IOS 6 By Matt Neuburg

Apple Docs: https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/ConfigApplications.html

like image 87
Bryan Cimo Avatar answered Oct 07 '22 16:10

Bryan Cimo