We hope that this method will help you to configure analytics and advertising plugins.
In any project script, through the static script Boostrap you can subscribe to game events.
It looks like this:
public class SomeManager : MonoBehaviour
{
private void Start()
{
//Subscribe event
Boostrap.Instance.GameEvents.OnLevelStart += OnLevelStart; // or any other event OnLevelRestart, OnLevelComplete..
}
private void OnLevelStart()
{
//Do something
}