void OnGUI () { GUIStyle headingLabelStyle = new GUIStyle(); headingLabelStyle.fontStyle = FontStyle.Bold; headingLabelStyle.fontSize = 50; headingLabelStyle.alignment = TextAnchor.MiddleCenter; headingLabelStyle.normal.textColor = Color.white; GUI.Label(new Rect(10, 5, Screen.width - 20, Screen.height/10), "MAT Unity Test App", headingLabelStyle); GUI.skin.button.fontSize = 40; if (GUI.Button (new Rect (10, Screen.height/10, Screen.width - 20, Screen.height/10), "Start MAT")) { print ("Start MAT clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) MATBinding.Init(MAT_ADVERTISER_ID, MAT_CONVERSION_KEY); MATBinding.SetPackageName(MAT_PACKAGE_NAME); MATBinding.SetFacebookEventLogging(true, false); #endif #if (UNITY_ANDROID || UNITY_IPHONE) MATBinding.CheckForDeferredDeeplinkWithTimeout(750); // 750 ms MATBinding.AutomateIapEventMeasurement(true); #endif } else if (GUI.Button (new Rect (10, 2*Screen.height/10, Screen.width - 20, Screen.height/10), "Set Delegate")) { print ("Set Delegate clicked"); #if (UNITY_ANDROID || UNITY_IPHONE) MATBinding.SetDelegate(true); #endif #if UNITY_WP8 MATBinding.SetMATResponse(new SampleWP8MATResponse()); #endif #if UNITY_METRO MATBinding.SetMATResponse(new SampleWinStoreMATResponse()); #endif } else if (GUI.Button (new Rect (10, 3*Screen.height/10, Screen.width - 20, Screen.height/10), "Enable Debug Mode")) { print ("Enable Debug Mode clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) // NOTE: !!! ONLY FOR DEBUG !!! // !!! Make sure you set to false // OR // remove the setDebugMode and setAllowDuplicates calls for Production builds !!! MATBinding.SetDebugMode(true); #endif } else if (GUI.Button (new Rect (10, 4*Screen.height/10, Screen.width - 20, Screen.height/10), "Allow Duplicates")) { print ("Allow Duplicates clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) // NOTE: !!! ONLY FOR DEBUG !!! // !!! Make sure you set to false // OR // remove the setDebugMode and setAllowDuplicates calls for Production builds !!! MATBinding.SetAllowDuplicates(true); #endif } else if (GUI.Button (new Rect (10, 5*Screen.height/10, Screen.width - 20, Screen.height/10), "Measure Session")) { print ("Measure Session clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) MATBinding.MeasureSession(); #endif } else if (GUI.Button (new Rect (10, 6*Screen.height/10, Screen.width - 20, Screen.height/10), "Measure Event")) { print ("Measure Event clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) MATBinding.MeasureEvent("evt11"); #endif } else if (GUI.Button (new Rect (10, 7*Screen.height/10, Screen.width - 20, Screen.height/10), "Measure Event With Event Items")) { print ("Measure Event With Event Items clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) MATItem item1 = new MATItem(); item1.name = "subitem1"; item1.unitPrice = 5; item1.quantity = 5; item1.revenue = 3; item1.attribute2 = "attrValue2"; item1.attribute3 = "attrValue3"; item1.attribute4 = "attrValue4"; item1.attribute5 = "attrValue5"; MATItem item2 = new MATItem(); item2.name = "subitem2"; item2.unitPrice = 1; item2.quantity = 3; item2.revenue = 1.5; item2.attribute1 = "attrValue1"; item2.attribute3 = "attrValue3"; MATItem[] eventItems = { item1, item2 }; MATEvent matEvent = new MATEvent("purchase"); matEvent.revenue = 10; matEvent.currencyCode = "AUD"; matEvent.advertiserRefId = "ref222"; matEvent.attribute1 = "test_attribute1"; matEvent.attribute2 = "test_attribute2"; matEvent.attribute3 = "test_attribute3"; matEvent.attribute4 = "test_attribute4"; matEvent.attribute5 = "test_attribute5"; matEvent.contentType = "test_contentType"; matEvent.contentId = "test_contentId"; matEvent.date1 = DateTime.UtcNow; matEvent.date2 = DateTime.UtcNow.Add(new TimeSpan((new DateTime(2,1,1)).Ticks)); matEvent.level = 3; matEvent.quantity = 2; matEvent.rating = 4.5; matEvent.searchString = "test_searchString"; matEvent.eventItems = eventItems; // transaction state may be set to the value received from the iOS/Android app store. matEvent.transactionState = 1; #if UNITY_IPHONE matEvent.receipt = getSampleiTunesIAPReceipt(); #endif MATBinding.MeasureEvent(matEvent); #endif } else if (GUI.Button (new Rect (10, 8*Screen.height/10, Screen.width - 20, Screen.height/10), "Test Setter Methods")) { print ("Test Setter Methods clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) MATBinding.SetAge(34); MATBinding.SetAllowDuplicates(true); MATBinding.SetAppAdTracking(true); MATBinding.SetDebugMode(true); MATBinding.SetExistingUser(false); MATBinding.SetFacebookUserId("temp_facebook_user_id"); MATBinding.SetGender(0); MATBinding.SetGoogleUserId("temp_google_user_id"); MATBinding.SetLocation(111,222,333); //MATBinding.SetPackageName(MAT_PACKAGE_NAME); MATBinding.SetPayingUser(true); MATBinding.SetPhoneNumber("111-222-3456"); MATBinding.SetTwitterUserId("twitter_user_id"); MATBinding.SetUserId("temp_user_id"); MATBinding.SetUserName("temp_user_name"); MATBinding.SetUserEmail("*****@*****.**"); //iOS-specific Features #if UNITY_IPHONE #if UNITY_5_0 MATBinding.SetAppleAdvertisingIdentifier(UnityEngine.iOS.Device.advertisingIdentifier, UnityEngine.iOS.Device.advertisingTrackingEnabled); #else MATBinding.SetAppleAdvertisingIdentifier(UnityEngine.iPhone.advertisingIdentifier, UnityEngine.iPhone.advertisingTrackingEnabled); #endif MATBinding.SetAppleVendorIdentifier(UnityEngine.iPhone.vendorIdentifier); MATBinding.SetDelegate(true); MATBinding.SetJailbroken(false); MATBinding.SetShouldAutoDetectJailbroken(true); MATBinding.SetShouldAutoGenerateVendorIdentifier(true); MATBinding.SetUseCookieTracking(false); #endif //Android-specific Features #if UNITY_ANDROID MATBinding.SetAndroidId("111111111111"); MATBinding.SetDeviceId("123456789123456"); MATBinding.SetGoogleAdvertisingId("12345678-1234-1234-1234-123456789012", true); MATBinding.SetMacAddress("AA:BB:CC:DD:EE:FF"); #endif //Windows Phone 8 Specific Features #if UNITY_WP8 MATBinding.SetAppName("testWP8_AppName"); MATBinding.SetAppVersion("testWP8_AppVersion"); MATBinding.SetLastOpenLogId("testWP8_LastOpenLogId"); MATBinding.SetOSVersion("testWP8_OS"); #endif //Android and iOS-specific Features #if (UNITY_ANDROID || UNITY_IPHONE) MATBinding.SetCurrencyCode("CAD"); MATBinding.SetTRUSTeId("1234567890"); MATPreloadData pd = new MATPreloadData("1122334455"); pd.advertiserSubAd = "some_adv_sub_ad_id"; pd.publisherSub3 = "some_pub_sub3"; MATBinding.SetPreloadedApp(pd); #endif #endif } else if (GUI.Button (new Rect (10, 9*Screen.height/10, Screen.width - 20, Screen.height/10), "Test Getter Methods")) { print ("Test Getter Methods clicked"); #if (UNITY_ANDROID || UNITY_IPHONE || UNITY_WP8 || UNITY_METRO) print ("isPayingUser = "******"matId = " + MATBinding.GetMATId()); print ("openLogId = " + MATBinding.GetOpenLogId()); #endif } }