Appverse.Platform.IPhone.IPhoneAppsFlyer.TrackAppLaunch C# (CSharp) Method

TrackAppLaunch() public method

Detects installations, sessions (app openings) and updates. It is automatically called by the platform when launching the app (no need to call it from the app code, at least any field needs to be changed at runtime)
public TrackAppLaunch ( ) : void
return void
		public void TrackAppLaunch ()
		{
			SystemLogger.Log (SystemLogger.Module.PLATFORM, "AppsFlyer TrackAppLaunch");

			try {

				AppsFlyerTracker.SharedTracker.TrackAppLaunch();

			} catch (Exception ex) {
				SystemLogger.Log (SystemLogger.Module.PLATFORM, "AppsFlyer TrackAppLaunch - exception catched: " + ex.Message, ex);
			}
		}