Version: 2021.3
言語: 日本語
Delivering your macOS application
Notarizing your macOS application

Building your macOS application

For macOS applications, there are platform-specific requirements that change the build process. Also, some digital distribution services that can host macOS applications have different requirements. For example, the Mac App Store doesn’t require you to notarize your application because the upload process includes similar content validation to notarization. If you are targeting a specific digital distribution service with your build, check the documentation for that Digital distribution service first to check if the requirements differ.

ターゲットアーキテクチャ

macOS 用のアプリケーションをビルドするにあたっては、Apple デバイスの種類によってチップセットが異なることに注意してください。Apple デバイスには、インテルのチップセットを使用するものと Apple シリコンを使用するものがあります。Unity では、1 つのアーキテクチャ専用のビルドだけでなく、インテルと Apple シリコンの両方をターゲットにしたビルドも作成できます。利用可能なターゲットアーキテクチャは以下の通りです。

  • Intel 64-bit: Creates a macOS build for Apple devices that use Intel chipsets.
  • Apple silicon: Creates a macOS build for Apple devices that use Apple silicon architecture.
  • Intel 64-bit + Apple silicon: Creates a macOS build that works on both Intel chipsets and Apple silicon. Note: This results in a build that is larger than the individual architecture-specific builds. This impacts overall application size.
The Build Settings window showing the options in the Architecture drop-down.
The Build Settings window showing the options in the Architecture drop-down.

Building

Unity アプリケーションのビルドは、以下の手順で行えます。

  1. Build Settings ウィンドウ (メニュー: File > Build Settings) を開きます。
  2. Platforms リストから PC, Mac & Linux Standalone を選択します。
  3. Set Target Platform to macOS. If macOS isn’t an option, add the Mac Build Support module to your Unity Editor install. For information on how to install modules, see Add modules.
  4. Set Architecture to the architecture type you want Unity to build your application for. For more information about target architecture for macOS, see Target architecture.
  5. アプリケーション用に Xcode プロジェクト を作成したい場合は、Create Xcode Project を有効にしてください。
  6. Build をクリックします。

情報プロパティリストファイル

macOS applications require an information property list file called Info.plist that contains metadata and configuration information for the application. The file is organized as a list of key-value pairs. For more information about information property list files, see About Information Property List Files. For more information about the Info.plist in particular, see About Info.plist Keys and Values.

Unity は、アプリケーションをビルドする時に Info.plist ファイルを作成します。このファイルは ApplicationName.app > Contents > Info.plist に格納されます。Player 設定 ウインドウに、必要な Info.plist 設定プロパティが表示されます。これらのプロパティは Other Settings > Mac App Store Options セクションにあり、アプリケーションのビルド前に設定可能です。

There are additional keys that you can add to your Info.plist file. To add them, build the application and use a text editor to edit the file. For information about the available keys, see About Info.plist Keys and Values.

エンタイトルメント

macOS applications require entitlements to specify permissions and restrictions that allow or prevent your application from taking specific actions. At a minimum, your application must include entitlements that result in a Hardened Runtime. These entitlements protect your application from code injection, hijacking of dynamically linked libraries, and memory tampering.

To define entitlements, macOS applications use an xml file with the .entitlements file extension. macOS applications then use the code signing process to bind the entitlements to an application.

If your application uses plug-ins that perform macOS platform-specific actions, you might need to add entitlements to allow those actions. For more information on what actions require entitlements, see Apple Developer Entitlements.

Code signing

A code signature summarizes the content of an application at the time when the developer creates the code signature. Apple devices use an application’s code signature to detect changes made since the developer created the code signature. This guarantees the integrity of applications and safeguards against tampering. If an application doesn’t have a code signature, the device warns the end user before they open the application. The process of creating a code signature for an application is called code signing. For more information about the technical details of code signing, see macOS Code Signing in Depth.

Unity automatically code signs any application it builds for macOS, regardless of the platform you develop on. This guards against tampering and allows your application to run without warnings, but doesn’t identify you as the developer. This is sufficient to run the application, but to not to notarize it. Norarization requires you to sign the application with a developer or organization ID. When you sign an application with an ID, the digital signature includes a fingerprint of your application as well as a cryptographic signature that identifies you as the developer. Unity doesn’t sign the code it builds with cryptographic information. To do this, you need to sign the code either manually or using Xcode.

Depending on which method of notarization you use, the steps you perform to code sign an application changes. So, for information about how to code sign your application, see Notarizing your macOS application.

公証

A valid code signature guarantees the integrity of an application, but it doesn’t guarantee that the application itself isn’t malicious. Notarization is the process Apple uses to validate that Developer ID-signed applications don’t contain malicious content. If Apple doesn’t detect malicious content, it adds a digital tag to the application which indicates that the application is fit for distribution on Apple devices. The results of notarization are also available online for gatekeeping processes to access. Apple keeps an audit trail of applications distributed using your Developer ID. If your ID is exposed, you can use this trail to revoke the execution rights of unauthorized versions of your application. For more information about noratization, see Notarizing macOS Software Before Distribution.

Digital distribution services often require you to notarize your application before you can distribute the application on their platform. However, some digital distribution services, such as the Mac App Store include similar content validation to notarization. This means that you don’t need to notarize your application to distribute it on certain platforms. For more information about digital distribution-specific information, see Digital distribution services for macOS applications.

To notarize your application to run on macOS 10.15 or later, you must first code sign your application with a Developer ID. If you don’t notarize your application, the device warns the end user before they open the application. You don’t need to notarize an application for distribution through the Mac App Store because the submission process includes similar content validation.

Depending on which platform you develop on, the available notarization methods differ. For information about how to notarize your application, see Notarizing your macOS application.

Delivering your macOS application
Notarizing your macOS application