Created
June 28, 2021 17:20
-
-
Save flurrydev/5a45ed7c4331a8b7006a77857a6bd3a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FlurryEvent.Params params = new FlurryEvent.Params() | |
.putDouble (FlurryEvent.Param.TOTAL_AMOUNT, 34.99) | |
.putBoolean(FlurryEvent.Param.SUCCESS, true) | |
.putString (FlurryEvent.Param.ITEM_NAME, "book 1") | |
.putString ("note", "This is an awesome book to purchase !!!"); | |
FlurryAgent.logEvent(FlurryEvent.PURCHASED, params); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment