-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Update to Kotlin 1.0.0. + Json Remote Command * Correct import for constants * Fixes per PR feedback (#6) * Fixes per PR feedback * Readme copyright date update * remove import Co-authored-by: jameskeith <james.keith@tealium.com> * Formatting items param for FB (#8) * Update to handle items param + format correctly for firebase * Cleanup imports * Refactor for single product item * Add switch default log stmt * Rename items format methods * Remove deprecated FB event/param constants per review feedback * Code review updates Co-authored-by: jameskeith <james.keith@tealium.com> Co-authored-by: jameskeith <james.keith@tealium.com>
- Loading branch information
1 parent
dfc9712
commit 6078722
Showing
19 changed files
with
559 additions
and
430 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"config": { | ||
"firebase_analytics_enabled": "true", | ||
"firebase_session_timeout_seconds": "30", | ||
"firebase_log_level": "max", | ||
"firebase_session_minimum_seconds": "100" | ||
}, | ||
"mappings": { | ||
"achievement_id": "event.param_achievement_id", | ||
"ad_network_click_id": "event.param_ad_network_click_id", | ||
"affiliation": "event.param_affiliation", | ||
"campaign_keywords": "event.param_cp1", | ||
"campaign": "event.param_campaign", | ||
"game_character": "event.param_character", | ||
"checkout_option": "event.param_checkout_option", | ||
"checkout_step": "event.param_checkout_step", | ||
"content": "event.param_content", | ||
"content_type": "event.param_content_type", | ||
"coupon": "event.param_coupon", | ||
"creative_name": "event.param_creative_name", | ||
"creative_slot": "event.param_creative_slot", | ||
"currency_code": "event.param_currency", | ||
"travel_destination": "event.param_destination", | ||
"end_date": "event.param_end_date", | ||
"flight_number": "pevent.param_flight_number", | ||
"group_id": "event.param_group_id", | ||
"current_index": "param_index", | ||
"product_brand": "items.param_item_brand", | ||
"product_category": "items.param_item_category", | ||
"product_id": "items.param_item_id", | ||
"product_list": "items.param_item_list", | ||
"product_location_id": "items.param_item_location_id", | ||
"product_name": "items.param_item_name", | ||
"product_variant": "items.param_item_variant ", | ||
"current_level": "event.param_level", | ||
"most_recent_location": "event.param_location", | ||
"campaign_medium": "event.param_medium", | ||
"number_nights": "event.param_number_nights", | ||
"number_pax": "event.param_number_pax", | ||
"number_rooms": "event.param_number_rooms", | ||
"travel_origin": "event.param_origin", | ||
"product_unit_price": "items.param_price", | ||
"product_quantity": "items.param_quantity", | ||
"score": "event.param_score", | ||
"search_keyword": "event.param_search_term", | ||
"order_shipping_amount": "event.param_shipping", | ||
"signup_method": "event.param_signup_method", | ||
"campaign_source": "event.param_source", | ||
"start_date": "event.param_start_date", | ||
"order_tax_amount": "event.param_tax", | ||
"product_term": "event.param_term", | ||
"order_id": "event.param_transaction_id", | ||
"travel_class": "event.param_travel_class", | ||
"order_total": "event.param_value", | ||
"currency_type": "event.param_virtual_currency_name", | ||
"user_signup_method": "event.param_user_signup_method", | ||
"tealium_event": "firebase_event_name", | ||
"screen_name": "firebase_screen_name", | ||
"screen_class": "firebase_screen_class", | ||
"username": "firebase_property_name, firebase_property_value", | ||
"customer_id": "firebase_user_id" | ||
}, | ||
"commands": { | ||
"launch": "config", | ||
"user_login": "setuserproperty, setuserid", | ||
"share": "logevent", | ||
"show_offers": "logevent", | ||
"join_group": "logevent", | ||
"travel_order": "logevent", | ||
"earn_currency": "logevent", | ||
"spend_currency": "logevent", | ||
"unlock_achievement": "logevent", | ||
"level_up": "logevent", | ||
"start_tutorial": "logevent", | ||
"stop_tutorial": "logevent", | ||
"record_score": "logevent", | ||
"category": "logevent", | ||
"product": "logevent", | ||
"cart_add": "logevent", | ||
"wishlist_add": "logevent", | ||
"checkout": "logevent", | ||
"checkout_progress": "logevent", | ||
"email_signup": "logevent", | ||
"order": "logevent", | ||
"screen_view" : "setscreenname", | ||
"order_basket" : "logevent", | ||
"reset_data" : "resetdata" | ||
} | ||
} |
This file contains 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
This file contains 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
170 changes: 0 additions & 170 deletions
170
app/src/main/java/com/tealium/example/helper/TealiumHelper.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.