Version: 2023.2
言語: 日本語
Modify the Gradle project files for a Unity application
Modify Gradle project files with the Android Project Configuration Manager

Modify Gradle project files with Gradle template files

To have some control over the format and contents of Gradle project files, you can override Unity’s default templates with your own custom template. To do this:

  1. Edit > Project Settings の順に選択して Project Settings ウィンドウを開きます。
  2. Player タブを選択し、Android の Player 設定 を開きます。
  3. Publishing Settings セクションで、カスタムテンプレートを作成したい Gradle プロジェクトファイルタイプに対応するチェックボックスを有効にします。これにより、Gradle プロジェクトのテンプレートファイルが作成され、ファイルへのパスが表示されます。
  4. Modify the template file to control the final format and contents of the final Gradle project file.

To verify that your template modifications give the result that you expect, export your project and view the final Gradle project files in the resulting project.

Template variables

以下の変数をカスタム Gradle テンプレートファイルで使用できます。

変数 説明 
DEPS プロジェクト依存関係のリスト。プロジェクトが使用するライブラリのリスト。
APIVERSION ビルドする API バージョン。Unity はこれと TARGETSDKVERSION を同じ値 (Android Player SettingsTarget API Level) に設定します。
MINSDKVERSION アプリケーションをサポートする API の最低バージョン。
BUILDTOOLS 使用する SDK ビルドツール。
TARGETSDKVERSION ターゲットとする API バージョン。Unity はこれと APIVERSION を同じ値 (Android Player SettingsTarget API Level) に設定します。
APPLICATIONID Android アプリケーション ID (例えば com.mycompany.myapp)
MINIFY_DEBUG デバッグビルドを小さくするかどうかを示します。
PROGUARD_DEBUG デバッグビルドの小型化のために ProGuard を使用するかどうかを指定します。
MINIFY_RELEASE リリースビルドを小型化するかどうかを示します。
PROGUARD_RELEASE リリースビルドの小型化のために ProGuard を使用するかどうかを指定します。
USER_PROGUARD 小型化に使用するカスタム ProGuard ファイルを指定します。
SIGN このビルドが署名されている場合は、signingConfigs セクションを行ってください。
SIGNCONFIG ビルドが署名されているかどうかを示します。このプロパティが signingConfig.release に設定されている場合、ビルドは署名されています。
DIR_GRADLEPROJECT Unity が Gradle プロジェクトを作成するディレクトリ。
DIR_UNITYPROJECT Unity プロジェクトのディレクトリ。
PLAY_ASSET_PACKS アプリケーションに加える アセットパック を指定します。
BUILTIN_NOCOMPRESS Specifies a default list of files extensions to not compress. The file extensions are: .unity3d, .ress, .resource, .obb, .bundle, .unityexp.

カスタムの settingsTemplate.gradle ファイルには、以下の変数を加えることもできます。

変数 説明 
INCLUDES Gradle プロジェクトに含む Android ライブラリプラグインのリスト。

カスタムの gradleTemplate.properties ファイルには、以下の変数を加えることもできます。

変数 説明 
JVM_HEAP_SIZE Java 仮想マシン (JVM) ヒープ](https://www.ibm.com/docs/en/integration-bus/10.0?topic=development-jvm-heap-sizing) の最大サイズ。
STREAMING_ASSETS Steaming Assets フォルダーにある、Gradle が圧縮すべきでないファイルのリスト。
ADDITIONAL_PROPERTIES Contains additional properties for the application. This includes:
• The Gradle template version.
• The path to the Unity project.
• If the application uses the Android App Bundle publishing format, a flag that indicates to keep native libraries compressed.
• If the application uses the GameActivity application entry point, a flag that indicates to use AndroidX.

その他の参考資料

Modify the Gradle project files for a Unity application
Modify Gradle project files with the Android Project Configuration Manager