Version: 2022.3
언어: 한국어

IPostGenerateGradleAndroidProject.OnPostGenerateGradleAndroidProject

매뉴얼로 전환
public void OnPostGenerateGradleAndroidProject (string path);

파라미터

path The path to the root of the Unity library Gradle project. Note: when exporting the project, this parameter holds the path to the Unity library in 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); } }