Skip to content

Commit

Permalink
Upload new version 4.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Carrera committed Jan 12, 2024
1 parent d865731 commit b204fab
Show file tree
Hide file tree
Showing 25 changed files with 240 additions and 52 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 4.12.2 - 12/01/2024

[FIX] Fixed currencyCode other than EUR not being sent in the trackOrder request.

## 4.12.1 - 04/07/2023

[IMPROVE] Added `updatePostbackConversionValue` with lockWindow paramater.
Expand Down
14 changes: 9 additions & 5 deletions EMMA_iOS.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,35 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>EMMA_iOS.framework/EMMA_iOS</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>EMMA_iOS.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>EMMA_iOS.framework/EMMA_iOS</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>EMMA_iOS.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified EMMA_iOS.xcframework/ios-arm64/EMMA_iOS.framework/Assets.car
Binary file not shown.
Binary file modified EMMA_iOS.xcframework/ios-arm64/EMMA_iOS.framework/EMMA_iOS
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef EMMA_IOS_SWIFT_H
#define EMMA_IOS_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -42,12 +42,18 @@
#include <string.h>
#endif
#if defined(__cplusplus)
#if __has_include(<ptrauth.h>)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif

Expand Down Expand Up @@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
Expand Down Expand Up @@ -477,12 +494,14 @@ SWIFT_CLASS("_TtC8EMMA_iOS13EMMAViewUtils")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

#endif
#if defined(__cplusplus)


#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

Expand Down
Binary file modified EMMA_iOS.xcframework/ios-arm64/EMMA_iOS.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8524,6 +8524,34 @@
"mangledName": "$ss28CustomDebugStringConvertibleP"
}
]
},
{
"kind": "Import",
"name": "Foundation",
"printedName": "Foundation",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "UIKit",
"printedName": "UIKit",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "SwiftUI",
"printedName": "SwiftUI",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "DeveloperToolsSupport",
"printedName": "DeveloperToolsSupport",
"declKind": "Import",
"moduleName": "EMMA_iOS"
}
],
"json_format_version": 8
Expand Down Expand Up @@ -8969,6 +8997,13 @@
"offset": 193,
"length": 21,
"value": "\"EMMA_iOS.EMMAStartViewCampaign\""
},
{
"filePath": "\/Users\/acarrera\/Library\/Developer\/Xcode\/DerivedData\/EMMA-gmrfldzkbcjmgpctichlcjxtzjxo\/Build\/Intermediates.noindex\/ArchiveIntermediates\/EMMA_iOS\/IntermediateBuildFilesPath\/EMMA.build\/Release-iphoneos\/EMMA_iOS.build\/DerivedSources\/GeneratedAssetSymbols.swift",
"kind": "StringLiteral",
"offset": 742,
"length": 17,
"value": "\"startview_close\""
}
]
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name EMMA_iOS
// swift-module-flags-ignorable: -enable-bare-slash-regex
import DeveloperToolsSupport
@_exported import EMMA_iOS
import Foundation
import Swift
import SwiftUI
import UIKit
import UserNotifications
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
@objc @_inheritsConvenienceInitializers @objcMembers public class EMMAViewUtils : ObjectiveC.NSObject {
@objc public static func getKeyWindow() -> UIKit.UIWindow?
@objc public static func safeAreaMargins() -> CoreFoundation.CGFloat
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
// swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name EMMA_iOS
// swift-module-flags-ignorable: -enable-bare-slash-regex
import DeveloperToolsSupport
@_exported import EMMA_iOS
import Foundation
import Swift
import SwiftUI
import UIKit
import UserNotifications
import _Concurrency
import _StringProcessing
import _SwiftConcurrencyShims
@objc @_inheritsConvenienceInitializers @objcMembers public class EMMAViewUtils : ObjectiveC.NSObject {
@objc public static func getKeyWindow() -> UIKit.UIWindow?
@objc public static func safeAreaMargins() -> CoreFoundation.CGFloat
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
framework module EMMA_iOS {
umbrella header "EMMA_iOS.h"

export *

module * { export * }
}

Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef EMMA_IOS_SWIFT_H
#define EMMA_IOS_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -42,12 +42,18 @@
#include <string.h>
#endif
#if defined(__cplusplus)
#if __has_include(<ptrauth.h>)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif

Expand Down Expand Up @@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
Expand Down Expand Up @@ -477,17 +494,19 @@ SWIFT_CLASS("_TtC8EMMA_iOS13EMMAViewUtils")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

#endif
#if defined(__cplusplus)


#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

#elif defined(__x86_64__) && __x86_64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef EMMA_IOS_SWIFT_H
#define EMMA_IOS_SWIFT_H
#pragma clang diagnostic push
Expand Down Expand Up @@ -529,12 +548,18 @@ SWIFT_CLASS("_TtC8EMMA_iOS13EMMAViewUtils")
#include <string.h>
#endif
#if defined(__cplusplus)
#if __has_include(<ptrauth.h>)
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#endif

Expand Down Expand Up @@ -733,6 +758,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
Expand Down Expand Up @@ -964,12 +1000,14 @@ SWIFT_CLASS("_TtC8EMMA_iOS13EMMAViewUtils")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end

#endif
#if defined(__cplusplus)


#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8524,6 +8524,34 @@
"mangledName": "$ss28CustomDebugStringConvertibleP"
}
]
},
{
"kind": "Import",
"name": "Foundation",
"printedName": "Foundation",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "UIKit",
"printedName": "UIKit",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "SwiftUI",
"printedName": "SwiftUI",
"declKind": "Import",
"moduleName": "EMMA_iOS"
},
{
"kind": "Import",
"name": "DeveloperToolsSupport",
"printedName": "DeveloperToolsSupport",
"declKind": "Import",
"moduleName": "EMMA_iOS"
}
],
"json_format_version": 8
Expand Down Expand Up @@ -8969,6 +8997,13 @@
"offset": 193,
"length": 21,
"value": "\"EMMA_iOS.EMMAStartViewCampaign\""
},
{
"filePath": "\/Users\/acarrera\/Library\/Developer\/Xcode\/DerivedData\/EMMA-gmrfldzkbcjmgpctichlcjxtzjxo\/Build\/Intermediates.noindex\/ArchiveIntermediates\/EMMA_iOS\/IntermediateBuildFilesPath\/EMMA.build\/Release-iphonesimulator\/EMMA_iOS.build\/DerivedSources\/GeneratedAssetSymbols.swift",
"kind": "StringLiteral",
"offset": 742,
"length": 17,
"value": "\"startview_close\""
}
]
}
Loading

0 comments on commit b204fab

Please sign in to comment.