<?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 Non-public selectors as consume method in Adobe Experience Cloud Mobile Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/non-public-selectors-as-consume-method/m-p/170736#M360</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am getting warning while uploading an app with Omniture SDK to Appstore and Please &lt;SPAN style="line-height: 20.7999992370605px;"&gt;check&amp;nbsp;&lt;/SPAN&gt;warning as below&lt;/P&gt;&lt;P&gt;Non-public selectors as consume method&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;App references non-public selectors in payload/AppName:consume&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Oct 2015 02:26:56 GMT</pubDate>
    <dc:creator>basavaraj_d</dc:creator>
    <dc:date>2015-10-16T02:26:56Z</dc:date>
    <item>
      <title>Non-public selectors as consume method</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/non-public-selectors-as-consume-method/m-p/170736#M360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am getting warning while uploading an app with Omniture SDK to Appstore and Please &lt;SPAN style="line-height: 20.7999992370605px;"&gt;check&amp;nbsp;&lt;/SPAN&gt;warning as below&lt;/P&gt;&lt;P&gt;Non-public selectors as consume method&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;App references non-public selectors in payload/AppName:consume&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 02:26:56 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/non-public-selectors-as-consume-method/m-p/170736#M360</guid>
      <dc:creator>basavaraj_d</dc:creator>
      <dc:date>2015-10-16T02:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Non-public selectors as consume method</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/non-public-selectors-as-consume-method/m-p/170737#M361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="post-text" itemprop="text"&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Private APIs are used by the Adobe SDK, this warning is caused by a performSelector call inside the Adobe library on a delegate method (consume) from the MboxContentConsumerDelegate protocol. Target needs to be implemented to avoid this warning.&lt;/P&gt;&lt;P&gt;Two workarounds are as follows:&lt;/P&gt;&lt;P&gt;Upgrade to a 4.0+ version of the library. The 3.x versions of the library have this issue , the newer versions don't have this protocol (instead using gcd block callbacks).&lt;/P&gt;&lt;P&gt;Add a definition of the consume method inside your code. The following snippet&amp;nbsp; will convince the Apple preflight process that the referenced selector exists within your application's source code.&lt;/P&gt;&lt;PRE class="prettyprint prettyprinted default" style=""&gt;&lt;CODE&gt;&lt;SPAN class="lit"&gt;@interface&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="typ"&gt;NSObject&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="typ"&gt;Consume&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;-(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;void&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;consume&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://experienceleaguecommunities.adobe.com/html/@8C4884DA41FA1DA5149A00A8F585667D/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;id&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;dummy&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;@end&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;@implementation&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="typ"&gt;NSObject&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="typ"&gt;Consume&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;-(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;void&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;consume&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://experienceleaguecommunities.adobe.com/html/@8C4884DA41FA1DA5149A00A8F585667D/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;id&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;dummy &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;{}&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;@end&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;SPAN class="lit"&gt;Regards&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;SPAN class="lit"&gt;Devinder&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 02:26:56 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-cloud-mobile/non-public-selectors-as-consume-method/m-p/170737#M361</guid>
      <dc:creator>devinderbanga</dc:creator>
      <dc:date>2015-10-16T02:26:56Z</dc:date>
    </item>
  </channel>
</rss>

