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.
using UnityEditor.Android;
public class ModifyProjectScript : AndroidProjectFilesModifier
{
public override void OnModifyAndroidProjectFiles(AndroidProjectFiles projectFiles)
{
}
}