<?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: Error when integrating Authorize.Net C# SDK into Unity in Builds in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/77760#M48780</link>
    <description>&lt;P&gt;I did figure out this problem. I had to pull the full sdk code from the github, make a few tweaks and build it on my end but it seems to be working now. In case anyone has this exact issue in the future, the problem fortunately occurred in a function with a built in alternative to the function call that was not implemented. In Environment.cs, the method Environment.GetProperty() there is an attempt to access ConfigurationManager.AppSettings which for some unknown reason is not supported in Unity. Wrapping the if statement that reads AppSettings and assigns to propValue in a try/catch block fixed the issue since this means that if ConfigurationManager.AppSettings is not defined, then the relevant property will be retrieved from&amp;nbsp;System.Environment.GetEnvironmentVariable() instead (already set up).&lt;/P&gt;</description>
    <pubDate>Wed, 04 Aug 2021 13:51:37 GMT</pubDate>
    <dc:creator>H0MMUSVAMP1RE</dc:creator>
    <dc:date>2021-08-04T13:51:37Z</dc:date>
    <item>
      <title>Error when integrating Authorize.Net C# SDK into Unity in Builds</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/77706#M48733</link>
      <description>&lt;P&gt;&lt;SPAN&gt;TLDR: Sample credit card charging code does not work in builds of a mobile app made in Unity due to function call in precompiled dll of Authorize.Net C# SDK. Please help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Description of Situation:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I needed to implement payment processing myself into our mobile application&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;because the various app stores do not allow using the various existing&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;services for in-app purchasing to sell physical goods (which is the primary goal of the app). This led me to&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Authorize.Net which seemed to have a fairly comprehensive set of c# based&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;payment handling services as well as a github with sample code. I created a&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;sandbox account, and plan to switch to the full account before launching&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;our beta. I installed the sdk from here:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/AuthorizeNet/sdk-dotnet" target="_blank" rel="noopener noreferrer"&gt;https://github.com/AuthorizeNet/sdk-dotnet&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and used a modified version of&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;this:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/blob/master/PaymentTransactions/ChargeCreditCard.cs" target="_blank" rel="noopener noreferrer"&gt;https://github.com/AuthorizeNet/sample-code-csharp/blob/master/PaymentTransactions/ChargeCreditCard.cs&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;sample code for testing, which worked when running the app in the Unity Editor just fine. When I&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;build the app to a mobile device (tested on both android and ios) and&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;attempt the same credit card transaction as worked in the editor, I get an&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;error saying that there is an unsupported function call&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to System.Configuration.&lt;/SPAN&gt;&lt;SPAN&gt;ConfigurationManager::get_&lt;/SPAN&gt;&lt;SPAN&gt;AppSettings() within the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Authorize.Net sdk .dll file (full error message below). The installed SDK is in the form of a precompiled .dll file, so I'm not really sure how to look through the code inside to diagnose and fix the problem. My first thought was that this might be some sort of .NET version compatability issue, but as I am working in Unity, I have a very limited ability to affect the .NET version being used by my app. Can anyone please help me with this? I did contact developer support with this and their response was basically "your problem is outside the scope of the support we offer, go ask the forums".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Full Error Message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Autoconnected Player NotSupportedException:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.Configuration.&lt;/SPAN&gt;&lt;SPAN&gt;ConfigurationManager::get_&lt;/SPAN&gt;&lt;SPAN&gt;AppSettings&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at System.Configuration.&lt;/SPAN&gt;&lt;SPAN&gt;ConfigurationManager.get_&lt;/SPAN&gt;&lt;SPAN&gt;AppSettings () [0x00000]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at AuthorizeNet.Environment.&lt;/SPAN&gt;&lt;SPAN&gt;GetProperty (System.String propertyName)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at AuthorizeNet.Environment.&lt;/SPAN&gt;&lt;SPAN&gt;getBooleanProperty (System.String&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;propertyName) [0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at AuthorizeNet.Util.HttpUtility.&lt;/SPAN&gt;&lt;SPAN&gt;.cctor () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at AuthorizeNet.Api.Controllers.&lt;/SPAN&gt;&lt;SPAN&gt;Bases.ApiOperationBase`2[TQ,&lt;/SPAN&gt;&lt;SPAN&gt;TS].Execute&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(AuthorizeNet.Environment environment) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AuthNetFunctions_Credit.&lt;/SPAN&gt;&lt;SPAN&gt;ValidateAndCapture&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(System.Decimal amount, System.String cardNumber, System.String&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cardExpirationDate) [0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AsyncTransaction_Credit.&lt;/SPAN&gt;&lt;SPAN&gt;OnInformationValid ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AsyncTransaction.&lt;/SPAN&gt;&lt;SPAN&gt;OnInformationSubmitted&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;PurchaseInformation information,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;TransactionResultCallback callback) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at PurchaseWindowController.&lt;/SPAN&gt;&lt;SPAN&gt;TrySubmitPaymentInformation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;PurchaseInformation information) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;InformationInput.Submit () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.Events.&lt;/SPAN&gt;&lt;SPAN&gt;InvokableCall.Invoke () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.Events.UnityEvent.&lt;/SPAN&gt;&lt;SPAN&gt;Invoke () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.UI.Button.Press () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.UI.Button.&lt;/SPAN&gt;&lt;SPAN&gt;OnPointerClick&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;PointerEventData eventData) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents.Execute&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;IPointerClickHandler handler,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;BaseEventData eventData) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents.Execute[T]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.GameObject target, UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;BaseEventData&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;eventData, UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents+EventFunction`1[&lt;/SPAN&gt;&lt;SPAN&gt;T1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;functor) [0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchPress&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;PointerEventData pointerEvent, System.Boolean&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pressed, System.Boolean released) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchEvents ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.Process () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;EventSystem.Update () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Rethrow as TypeInitializationException: The type initializer for&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'AuthorizeNet.Util.&lt;/SPAN&gt;&lt;SPAN&gt;HttpUtility' threw an exception.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at AuthorizeNet.Api.Controllers.&lt;/SPAN&gt;&lt;SPAN&gt;Bases.ApiOperationBase`2[TQ,&lt;/SPAN&gt;&lt;SPAN&gt;TS].Execute&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(AuthorizeNet.Environment environment) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AuthNetFunctions_Credit.&lt;/SPAN&gt;&lt;SPAN&gt;ValidateAndCapture&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(System.Decimal amount, System.String cardNumber, System.String&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cardExpirationDate) [0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AsyncTransaction_Credit.&lt;/SPAN&gt;&lt;SPAN&gt;OnInformationValid ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;AsyncTransaction.&lt;/SPAN&gt;&lt;SPAN&gt;OnInformationSubmitted&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;PurchaseInformation information,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;TransactionResultCallback callback) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at PurchaseWindowController.&lt;/SPAN&gt;&lt;SPAN&gt;TrySubmitPaymentInformation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;PurchaseInformation information) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at JPurchasePlugin.&lt;/SPAN&gt;&lt;SPAN&gt;InformationInput.Submit () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.Events.&lt;/SPAN&gt;&lt;SPAN&gt;InvokableCall.Invoke () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.Events.UnityEvent.&lt;/SPAN&gt;&lt;SPAN&gt;Invoke () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.UI.Button.Press () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.UI.Button.&lt;/SPAN&gt;&lt;SPAN&gt;OnPointerClick&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;PointerEventData eventData) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents.Execute&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;IPointerClickHandler handler,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;BaseEventData eventData) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents.Execute[T]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.GameObject target, UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;BaseEventData&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;eventData, UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents+EventFunction`1[&lt;/SPAN&gt;&lt;SPAN&gt;T1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;functor) [0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchPress&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;PointerEventData pointerEvent, System.Boolean&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pressed, System.Boolean released) [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchEvents ()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[0x00000] in &amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule.Process () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; at UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;EventSystem.Update () [0x00000] in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;000000000000000000000000000000&lt;/SPAN&gt;&lt;SPAN&gt;00&amp;gt;:0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.DebugLogHandler:&lt;/SPAN&gt;&lt;SPAN&gt;LogException(Exception, Object)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.Logger:&lt;/SPAN&gt;&lt;SPAN&gt;LogException(Exception, Object)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.Debug:&lt;/SPAN&gt;&lt;SPAN&gt;LogException(Exception)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;ExecuteEvents:Execute(&lt;/SPAN&gt;&lt;SPAN&gt;GameObject, BaseEventData,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;EventFunction`1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule:&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchPress(&lt;/SPAN&gt;&lt;SPAN&gt;PointerEventData,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Boolean, Boolean)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule:&lt;/SPAN&gt;&lt;SPAN&gt;ProcessTouchEvents()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;StandaloneInputModule:Process(&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UnityEngine.EventSystems.&lt;/SPAN&gt;&lt;SPAN&gt;EventSystem:Update()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ref:_00DF07nRI._5004Q2JF9Z3:&lt;/SPAN&gt;&lt;SPAN&gt;ref&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 14:05:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/77706#M48733</guid>
      <dc:creator>H0MMUSVAMP1RE</dc:creator>
      <dc:date>2021-08-02T14:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error when integrating Authorize.Net C# SDK into Unity in Builds</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/77760#M48780</link>
      <description>&lt;P&gt;I did figure out this problem. I had to pull the full sdk code from the github, make a few tweaks and build it on my end but it seems to be working now. In case anyone has this exact issue in the future, the problem fortunately occurred in a function with a built in alternative to the function call that was not implemented. In Environment.cs, the method Environment.GetProperty() there is an attempt to access ConfigurationManager.AppSettings which for some unknown reason is not supported in Unity. Wrapping the if statement that reads AppSettings and assigns to propValue in a try/catch block fixed the issue since this means that if ConfigurationManager.AppSettings is not defined, then the relevant property will be retrieved from&amp;nbsp;System.Environment.GetEnvironmentVariable() instead (already set up).&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 13:51:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/77760#M48780</guid>
      <dc:creator>H0MMUSVAMP1RE</dc:creator>
      <dc:date>2021-08-04T13:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error when integrating Authorize.Net C# SDK into Unity in Builds</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/86114#M54194</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;May I know the files you imported in Unity?&lt;/P&gt;&lt;P&gt;I'm trying to do the same, but I'm getting errors with duplicate packages.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 09:06:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/86114#M54194</guid>
      <dc:creator>glenncodes</dc:creator>
      <dc:date>2023-03-31T09:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error when integrating Authorize.Net C# SDK into Unity in Builds</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/86115#M54195</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to do the same thing. I downloaded the dotnet repo and tried importing it in Unity. May I know the files you imported? Or the files that you did not import?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 09:08:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-when-integrating-Authorize-Net-C-SDK-into-Unity-in-Builds/m-p/86115#M54195</guid>
      <dc:creator>glenncodes</dc:creator>
      <dc:date>2023-03-31T09:08:50Z</dc:date>
    </item>
  </channel>
</rss>

