Version: 2018.4
public void OnPostGenerateGradleAndroidProject (string path);

パラメーター

pathThe path to the root of the Gradle project. Note: when exporting the project, this parameter holds the path to the folder specified for export.

説明

Implement this function to receive a callback after the Android Gradle project is generated and before building begins. It is not called when doing an Internal build.

using UnityEditor;
using UnityEditor.Android;
using UnityEngine;

class MyCustomBuildProcessor : IPostGenerateGradleAndroidProject { public int callbackOrder { get { return 0; } } public void OnPostGenerateGradleAndroidProject(string path) { Debug.Log("MyCustomBuildProcessor.OnPostGenerateGradleAndroidProject at path " + path); } }