Example #1
0
 public static void DispatchResponseEvent(ACPExtensionEvent responseEvent, ACPExtensionEvent requestEvent, AdobeExtensionErrorCallback errorCallback)
 {
     if (responseEvent == null || requestEvent == null)
     {
         Debug.Log("Unable to perform DispatchResponseEvent, responseEvent or requestEvent is null");
         return;
     }
                 #if UNITY_ANDROID && !UNITY_EDITOR
     AndroidJavaObject responseEventObject = ACPHelpers.GetAdobeEventFromACPExtensionEvent(responseEvent);
     AndroidJavaObject requestEventObject  = ACPHelpers.GetAdobeEventFromACPExtensionEvent(requestEvent);
     mobileCore.CallStatic <Boolean>("dispatchResponseEvent", responseEventObject, requestEventObject, new ExtensionErrorCallback(errorCallback));
                 #elif UNITY_IPHONE && !UNITY_EDITOR
     if (responseEvent.eventName == null || responseEvent.eventType == null || responseEvent.eventSource == null || requestEvent.eventName == null || requestEvent.eventType == null || requestEvent.eventSource == null)
     {
         Debug.Log("Unable to perform DispatchResponseEvent, input params are null");
         return;
     }
     string responseJsonDataEvent = ACPHelpers.JsonStringFromDictionary(responseEvent.eventData);
     string requestJsonDataEvent  = ACPHelpers.JsonStringFromDictionary(requestEvent.eventData);
     if (responseJsonDataEvent == null || requestJsonDataEvent == null)
     {
         Debug.Log("Unable to perform DispatchResponseEvent, responseEventData or requestEventData is invalid");
         return;
     }
     acp_DispatchResponseEvent(responseEvent.eventName, responseEvent.eventType, responseEvent.eventSource, responseJsonDataEvent,
                               requestEvent.eventName, requestEvent.eventType, requestEvent.eventSource, requestJsonDataEvent, errorCallback);
                 #endif
 }
Example #2
0
 public static void DispatchEventWithResponseCallback(ACPExtensionEvent acpExtensionEvent, AdobeEventCallback responseCallback, AdobeExtensionErrorCallback errorCallback)
 {
     if (acpExtensionEvent == null)
     {
         Debug.Log("Unable to perform DispatchEventWithResponseCallback, acpExtensionEvent is null");
         return;
     }
                 #if UNITY_ANDROID && !UNITY_EDITOR
     AndroidJavaObject eventObj = ACPHelpers.GetAdobeEventFromACPExtensionEvent(acpExtensionEvent);
     mobileCore.CallStatic <Boolean>("dispatchEventWithResponseCallback", eventObj, new EventCallback(responseCallback), new ExtensionErrorCallback(errorCallback));
                 #elif UNITY_IPHONE && !UNITY_EDITOR
     if (acpExtensionEvent.eventName == null || acpExtensionEvent.eventType == null || acpExtensionEvent.eventSource == null)
     {
         Debug.Log("Unable to perform DispatchEventWithResponseCallback, input params are null");
         return;
     }
     string jsonDataEvent = ACPHelpers.JsonStringFromDictionary(acpExtensionEvent.eventData);
     if (jsonDataEvent == null)
     {
         Debug.Log("Unable to perform DispatchEventWithResponseCallback, invalid event data");
         return;
     }
     acp_DispatchEventWithResponseCallback(acpExtensionEvent.eventName, acpExtensionEvent.eventType, acpExtensionEvent.eventSource, jsonDataEvent, responseCallback, errorCallback);
                 #endif
 }
Example #3
0
        void call(AndroidJavaObject eventObj)
        {
            string                      eventName        = eventObj.Call <string>("getName");
            string                      eventType        = eventObj.Call <string>("getType");
            string                      eventSource      = eventObj.Call <string>("getSource");
            AndroidJavaObject           eventDataHashmap = eventObj.Call <AndroidJavaObject>("getEventData");
            Dictionary <string, object> eventData        = ACPHelpers.GetDictionaryFromHashMap(eventDataHashmap);

            redirectedDelegate(eventName, eventType, eventSource, ACPHelpers.JsonStringFromDictionary(eventData));
        }
Example #4
0
 public static void UpdateConfiguration(Dictionary <string, object> config)
 {
     if (config == null)
     {
         Debug.Log("Unable to perform UpdateConfiguration, invalid config");
         return;
     }
                 #if UNITY_ANDROID && !UNITY_EDITOR
     var map = ACPHelpers.GetHashMapFromDictionary(config);
     mobileCore.CallStatic("updateConfiguration", map);
                 #elif UNITY_IPHONE && !UNITY_EDITOR
     string cData = ACPHelpers.JsonStringFromDictionary(config);
     if (cData == null)
     {
         Debug.Log("Unable to perform UpdateConfiguration, invalid config");
         return;
     }
     acp_UpdateConfiguration(ACPHelpers.JsonStringFromDictionary(config));
                 #endif
 }