예제 #1
0
        /// <summary>
        /// Get the AppsFlyer SDK version used in app.
        /// </summary>
        /// <returns>The current SDK version.</returns>
        public static string getSdkVersion()
        {
#if UNITY_IOS && !UNITY_EDITOR
            return(AppsFlyeriOS.getSDKVersion());
#elif UNITY_ANDROID && !UNITY_EDITOR
            return(AppsFlyerAndroid.getSdkVersion());
#else
            return("");
#endif
        }