Version: Unity 6.1 Alpha (6000.1)
Language : English
Modify Gradle project files with Gradle template files
Modify Gradle project files with Android Studio

Modify Gradle project files with the Android Project Configuration Manager

You can use Android Project Configuration Manager to modify the contents of custom 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 your Android project. You cannot modify the contents of the default gradle project files unityLibrary and launcher modules with Android Project Configuration Manager. However, you can create custom modules to set up custom Gradle project files and modify them as required.

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

Additional resources

Modify Gradle project files with Gradle template files
Modify Gradle project files with Android Studio