Ejemplo n.º 1
0
        /// <summary>
        /// Use this method if you’re integrating your app with push providers
        /// that don’t use the default push notification JSON schema the SDK expects.
        /// See docs for more info.
        /// </summary>
        /// <param name="paths">array of nested json path</param>
        public static void addPushNotificationDeepLinkPath(params string[] paths)
        {
#if UNITY_IOS && !UNITY_EDITOR
            AppsFlyeriOS.addPushNotificationDeepLinkPath(paths);
#elif UNITY_ANDROID && !UNITY_EDITOR
            AppsFlyerAndroid.addPushNotificationDeepLinkPath(paths);
#else
#endif
        }