using RocketGM; using UnityEngine.Scripting; namespace RocPush { [Preserve] internal class Bootstrapper : IRocGmBootstrapper { public void Bootstrap(IRocGmExternalDependencyProxy proxy) { PanPushNotificationController.Initialize(); #if UNITY_ANDROID proxy.HookExternalDependencies(new[] { "AndroidReceivedNotificationMainThreadDispatcher" }); #endif } } }