<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multiple Context Data in a single trackState Or trackAction in Adobe Experience Cloud Mobile Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270315#M264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. &lt;BR /&gt;It exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Dec 2017 08:30:27 GMT</pubDate>
    <dc:creator>julienp80647070</dc:creator>
    <dc:date>2017-12-08T08:30:27Z</dc:date>
    <item>
      <title>Multiple Context Data in a single trackState Or trackAction</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270313#M262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking at the different documentation for the iOS and Android SDK and I am not sure if it is possible to send different context variable within the same State or Action.&lt;/P&gt;&lt;P&gt;Documentation State for iOS &amp;amp; Android:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://marketing.adobe.com/resources/help/en_US/mobile/ios/states.html" title="https://marketing.adobe.com/resources/help/en_US/mobile/ios/states.html"&gt;Track App States&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://marketing.adobe.com/resources/help/en_US/mobile/android/states.html" title="https://marketing.adobe.com/resources/help/en_US/mobile/android/states.html"&gt;Track App States&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems incredible that it is not possible, but how would you write that ?&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15125688935434895" data-renderedposition="205.390625_8_1042_208" jivemacro_uid="_15125688935434895" modifiedtitle="true"&gt;&lt;P&gt;@Override&lt;/P&gt;&lt;P&gt;public void onCreate(Bundle savedInstanceState) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; super.onCreate(savedInstanceState);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; setContentView(R.layout.main);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Adobe - track when this state loads &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HashMap&amp;lt;String, Object&amp;gt; exampleContextData1 = new HashMap&amp;lt;String, Object&amp;gt;();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exampleContextData1.put("myapp.login.LoginStatus", "logged in");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HashMap&amp;lt;String, Object&amp;gt; exampleContextData2 = new HashMap&amp;lt;String, Object&amp;gt;();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exampleContextData2.put("myapp.login.Template", "templateB");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Analytics.trackState("Home Screen", exampleContextData1,&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;exampleContextData2&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help, would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2017 14:04:23 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270313#M262</guid>
      <dc:creator>julienp80647070</dc:creator>
      <dc:date>2017-12-06T14:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Context Data in a single trackState Or trackAction</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270314#M263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put each context data value in the same HashMap, and then pass one HashMap to the track call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15125949022714527" data-renderedposition="50_8_1042_96" jivemacro_uid="_15125949022714527"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Adobe - track when this state loads&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HashMap&amp;lt;String, Object&amp;gt; exampleContextData1 = new HashMap&amp;lt;String, Object&amp;gt;();&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exampleContextData1.put("myapp.login.LoginStatus", "logged in");&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exampleContextData1.put("myapp.login.Template", "templateB");&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Analytics.trackState("Home Screen", exampleContextData1);&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="font-family: 'andale mono', times;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Dec 2017 21:14:16 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270314#M263</guid>
      <dc:creator>jacobh35707634</dc:creator>
      <dc:date>2017-12-06T21:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Context Data in a single trackState Or trackAction</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270315#M264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. &lt;BR /&gt;It exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2017 08:30:27 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/multiple-context-data-in-a-single-trackstate-or-trackaction/m-p/270315#M264</guid>
      <dc:creator>julienp80647070</dc:creator>
      <dc:date>2017-12-08T08:30:27Z</dc:date>
    </item>
  </channel>
</rss>

