/// <para>
 /// Sets the MAT response.
 /// Does nothing if not a Windows Phone 8 device.
 /// </para>
 /// <param name="matResponse">MAT response</param>
 public static void SetMATResponse(MATWP8.MATResponse matResponse)
 {
     if(!Application.isEditor)
     {
         #if UNITY_WP8
         MATWP8.MobileAppTracker.Instance.SetMATResponse (matResponse);
         #endif
     }
 }
Example #2
0
 /// <para>
 /// Sets the MAT response.
 /// Does nothing if not a Windows Phone 8 device.
 /// </para>
 /// <param name="matResponse">MAT response</param>
 public static void SetMATResponse(MATWP8.MATResponse matResponse)
 {
     #if UNITY_WP8
     MATWP8.MobileAppTracker.Instance.SetMATResponse (matResponse);
     #endif
 }