Version: 2022.3
LanguageEnglish
  • C#

IPostGenerateGradleAndroidProject.OnPostGenerateGradleAndroidProject

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void OnPostGenerateGradleAndroidProject(string path);

Parameters

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.

Description

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); } }