The entry point for the Android Project Configuration Manager is the OnModifyAndroidProjectFiles method in the AndroidProjectFilesModifier interface. This means to use the Android Project Configuration Manager, first create a class that implements AndroidProjectFilesModifier
and declares a body for OnModifyAndroidProjectFiles
. The following code example shows how to do this.
Note: You can use Android Project Configuration Manager to modify Android GradleAn Android build system that automates several build processes. This automation means that many common build errors are less likely to occur. More info
See in Glossary project files in custom modules only.
using UnityEditor.Android;
public class ModifyProjectScript : AndroidProjectFilesModifier
{
public override void OnModifyAndroidProjectFiles(AndroidProjectFiles projectFiles)
{
}
}