- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
To integrate the Tealium-Windows Library:
Tealium AudienceStream account (consult your Tealium Account manager)
a. Open the TealiumUWP folder: TealiumUWP.sln.
b. Build the solution:
a. Add Reference: TealiumUWP.dll:
b. Change Property: Copy Local: to False for the TealiumUWP dll reference and the TealiumUWP dll refere in your app project:
a. In the Project's App.xaml.css file: add import header: using TealiumUWP:
b. Initialize the singleton:
// Sample
Tealium.Initialize("yourAccount", "yourProfile", "dev_qa_or_prod", TealiumLogLevel.DEBUG)
Track any events that occur in the app such as button clicks or lifecycle.
// Basic track call
Tealium.Track("event_name");
// With optional data
Dictionary<string, string> data = new Dictionary<string, string>();
data.Add("someStringKey", "someStringValue_or_stringifiedArrayOfStrings");
Tealium.Track("event_name_with_data", data)
// With callback function pointer
public void someFunctionToCallBack(bool c){
// ... code here
}
Tealium.Track("event_name_with_callback", data, someFunctionToCallBack)
a. Set application to build and deploy:
b. Compile and run:
a. Resolve any certificate requirements:
b. Create App Package:
c. Load onto device:
1.0.0 (current)
Copyright All Rights Reserved © 2008-2023