An abstract class that contains methods to modify Android Gradle project files during the build process.
This abstract class contains two callback methods: Setup
and OnModifyAndroidProjectFiles
. Unity calls Setup
before the build begins and this method sets prerequisites for the build system. Unity calls OnModifyAndroidProjectFiles
after it creates the Gradle project, which means all modifications you make in this method are applied directly to that project.
The generated files use Groovy syntax and all string-type properties use double quotes.
If your OnModifyAndroidProjectFiles
callback depends on other files in the project (or on the local machine), or if you want the callback to produce new files, you must give this information to the build system in advance using Setup
. The incremental build pipeline requires this information to know what files this callback produces and which files the callback depends on. This is so the build pipeline can identify when this step needs to run and when it can be skipped. The Setup
method returns AndroidProjectFilesModifierContext. For more information, refer to AndroidProjectFilesModifierContext.
For information on when Unity invokes methods in this class, refer to How Unity builds Android applications.
The following example shows how to set some values to build.gradle
and AndroidManifest.xml
files:
using System.IO; using UnityEditor.Android; using Unity.Android.Gradle;
public class ModifyProjectScript : AndroidProjectFilesModifier { public override void OnModifyAndroidProjectFiles(AndroidProjectFiles projectFiles) { // Set minSdkVersion to 28 projectFiles.UnityLibraryBuildGradle.Android.DefaultConfig.MinSdkVersion.Set(28);
// Set android:enabled attribute to 'true' for all launcher activities var launcherActivities = projectFiles.UnityLibraryManifest.Manifest.GetActivitiesWithLauncherIntent(); foreach (var activity in launcherActivities) { activity.Attributes.Enabled.Set(true); } } }
callbackOrder | Callback order when there are multiple implementations of AndroidProjectFilesModifier. |
OnModifyAndroidProjectFiles | A callback for modifying files in the Android Gradle project after Unity editor creates it. |
Setup | A callback for setting up prerequisites for modifying Android Gradle project files. |